From dad92d2b87059559128c8dde00a9231d7e32a751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Sat, 25 Sep 2021 02:23:37 +0200 Subject: [PATCH] Initial parser implementation --- .gitignore | 7 +- binding.gyp | 2 +- grammar.js | 916 +- src/grammar.json | 5663 +- src/node-types.json | 3262 +- src/parser.c | 403241 ++++++++++++++- src/scanner.cc | 844 + test/corpus/comment.txt | 8 +- test/corpus/do_end.txt | 224 +- test/corpus/edge_syntax.txt | 78 +- test/corpus/expression/anonymous_function.txt | 36 +- test/corpus/expression/block.txt | 27 + test/corpus/expression/call.txt | 217 +- test/corpus/expression/capture.txt | 17 +- test/corpus/expression/operator.txt | 440 +- test/corpus/expression/sigil.txt | 13 +- .../integration/function_definition.txt | 140 +- test/corpus/integration/kernel.txt | 17 +- test/corpus/integration/spec.txt | 47 +- test/corpus/term/alias.txt | 26 +- test/corpus/term/atom.txt | 4 +- test/corpus/term/bitstring.txt | 17 +- test/corpus/term/charlist.txt | 12 +- test/corpus/term/integer.txt | 1 - test/corpus/term/keyword_list.txt | 102 +- test/corpus/term/list.txt | 10 +- test/corpus/term/map.txt | 71 +- test/corpus/term/string.txt | 12 +- test/corpus/term/struct.txt | 47 +- test/corpus/term/tuple.txt | 4 +- test/corpus/variable.txt | 4 +- 31 files changed, 415172 insertions(+), 337 deletions(-) create mode 100644 src/scanner.cc diff --git a/.gitignore b/.gitignore index a97cd9f..68bcbc4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,8 @@ +# Deps /node_modules/ -/build/ + +# Temporary files /tmp/ + +# Temporary files generated by Tree-sitter +log.html diff --git a/binding.gyp b/binding.gyp index e706382..b3fbb75 100644 --- a/binding.gyp +++ b/binding.gyp @@ -9,7 +9,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - # If your language uses an external scanner, add it here. + "src/scanner.cc" ], "cflags_c": [ "-std=c99", diff --git a/grammar.js b/grammar.js index f7d523a..06312d4 100644 --- a/grammar.js +++ b/grammar.js @@ -1,7 +1,921 @@ +// Operator precedence: +// * https://hexdocs.pm/elixir/master/operators.html +// * https://github.com/elixir-lang/elixir/blob/master/lib/elixir/src/elixir_parser.yrl +const PREC = { + IN_MATCH_OPS: 10, + WHEN_OP: 20, + TYPE_OP: 30, + BAR_OP: 40, + ASSOC_OP: 50, + CAPTURE_OP: 60, + MATCH_OP: 70, + OR_OPS: 80, + AND_OPS: 90, + COMP_OPS: 100, + REL_OPS: 110, + ARROW_OPS: 120, + IN_OPS: 130, + XOR_OP: 140, + TERNARY_OP: 150, + CONCAT_OPS: 160, + ADD_OPS: 170, + MULT_OPS: 180, + POWER_OP: 190, + UNARY_OPS: 200, + ACCESS: 205, + DOT_OP: 210, + AT_OP: 220, + CAPTURE_OPERAND: 235, +}; + +const IN_MATCH_OPS = ["<-", "\\\\"]; +const OR_OPS = ["||", "|||", "or"]; +const AND_OPS = ["&&", "&&&", "and"]; +const COMP_OPS = ["==", "!=", "=~", "===", "!=="]; +const REL_OPS = ["<", ">", "<=", ">="]; +const ARROW_OPS = ["|>", "<<<", ">>>", "<<~", "~>>", "<~", "~>", "<~>", "<|>"]; +const IN_OPS = ["in", "not in"]; +const CONCAT_OPS = ["++", "--", "+++", "---", "..", "<>"]; +const ADD_OPS = ["+", "-"]; +const MULT_OPS = ["*", "/"]; +const UNARY_OPS = ["+", "-", "!", "^", "~~~", "not"]; + +const ALL_OPS = [ + ["->", "when", "::", "|", "=>", "&", "=", "^^^", "//", "**", ".", "@"], + IN_MATCH_OPS, + OR_OPS, + AND_OPS, + COMP_OPS, + REL_OPS, + ARROW_OPS, + IN_OPS, + CONCAT_OPS, + ADD_OPS, + MULT_OPS, + UNARY_OPS, +].flat(); + +// Ignore word literals and "=>" which is not a valid atom +const ATOM_OPERATOR_LITERALS = ALL_OPS.filter( + (operator) => !/[a-z]/.test(operator) && operator !== "=>" +); + +// Note that for keywords we use external scanner (KEYWORD_SPECIAL_LITERAL), +// so it should be kept in sync +const ATOM_SPECIAL_LITERALS = ["...", "%{}", "{}", "%", "<<>>", "..//"]; + +// Word tokens used directly in the grammar +const RESERVED_WORD_TOKENS = [ + // Operators + ["and", "in", "not", "or", "when"], + // Literals + ["true", "false", "nil"], + // Other + ["after", "catch", "do", "else", "end", "fn", "rescue"], +].flat(); + +const SPECIAL_IDENTIFIERS = [ + "__MODULE__", + "__DIR__", + "__ENV__", + "__CALLER__", + "__STACKTRACE__", +]; + +// Numbers + +const DIGITS = /[0-9]+/; +const BIN_DIGITS = /[0-1]+/; +const OCT_DIGITS = /[0-7]+/; +const HEX_DIGITS = /[0-9a-fA-F]+/; + +const numberDec = sep1(DIGITS, "_"); +const numberBin = seq("0b", sep1(BIN_DIGITS, "_")); +const numberOct = seq("0o", sep1(OCT_DIGITS, "_")); +const numberHex = seq("0x", sep1(HEX_DIGITS, "_")); + +const integer = choice(numberDec, numberBin, numberOct, numberHex); + +const floatScientificPart = seq(/[eE]/, optional(choice("-", "+")), integer); +const float = seq(numberDec, ".", numberDec, optional(floatScientificPart)); + +const aliasPart = /[A-Z][_a-zA-Z0-9]*/; + module.exports = grammar({ name: "elixir", + // TODO describe stuff (also in the separate notes doc add clarification + // how we use this verbose tokens to avoid needing scanner state) + externals: ($) => [ + $._quoted_content_i_single, + $._quoted_content_i_double, + $._quoted_content_i_heredoc_single, + $._quoted_content_i_heredoc_double, + $._quoted_content_i_parenthesis, + $._quoted_content_i_curly, + $._quoted_content_i_square, + $._quoted_content_i_angle, + $._quoted_content_i_bar, + $._quoted_content_i_slash, + + $._quoted_content_single, + $._quoted_content_double, + $._quoted_content_heredoc_single, + $._quoted_content_heredoc_double, + $._quoted_content_parenthesis, + $._quoted_content_curly, + $._quoted_content_square, + $._quoted_content_angle, + $._quoted_content_bar, + $._quoted_content_slash, + + $._keyword_special_literal, + $._atom_start, + $._keyword_end, + + $._newline_before_do, + $._newline_before_binary_op, + // TODO explain this, basically we use newline ignored for newline before comment, + // as after the comment there is another newline that we then consider as usual (so + // that comments are skipped when considering newlines) <- this is chaotic need a better one + $._newline_before_comment, + + // TODO explain this, basically we use this to force unary + and - + // if there is no spacing before the operand + $._before_unary_op, + + $._not_in, + ], + + // TODO include in notes about why using extra for newline before binary op is fine + // TODO figure out how "\n" helps with the behaviour in + // [ + // :a, + // ] + // and how it generally works with extras + extras: ($) => [ + $.comment, + /\s|\\\n/, + $._newline_before_binary_op, + $._newline_before_comment, + "\n", + ], + + // TODO check if the parser doesn't compile without each conflict rule, + // otherwise it means we don't really use it (I think) + conflicts: ($) => [ + // [$._newline_before_binary_op], + [$.binary_operator], + [$.keywords], + // [$.identifier, $.atom_literal], + [$._expression, $._local_call_with_arguments], + [ + $._expression, + $._local_call_with_arguments, + $._local_call_without_arguments, + ], + + [$._remote_call, $._parenthesised_remote_call], + + // stab clause `(x` may be either `(x;y) ->` or `(x, y) ->` + // [$.block, $._stab_clause_arguments], + [$.block, $._stab_clause_parentheses_arguments], + [$.block, $._stab_clause_arguments], + + [$.block, $._stab_clause_arguments_expression], + + // when in stab clause + [$.binary_operator, $._stab_clause_arguments_expression], + + [$.tuple, $.map], + [$.tuple, $.map_content], + [$.operator_identifier, $.stab_clause], + [$.unary_operator, $.operator_identifier], + // [$.alias], + [$.body], + // [$.block, $._stab_clause_arguments], + // [$.block, $._stab_clause_parentheses_arguments], + // [$.block, $._stab_clause_parentheses_arguments], + [$.after_block], + [$.rescue_block], + [$.catch_block], + [$.else_block], + ], + rules: { - source: ($) => "TODO", + source: ($) => + seq( + optional($._terminator), + optional( + seq(sep1($._expression, $._terminator), optional($._terminator)) + ) + ), + + _terminator: ($) => + prec.right(choice(seq(repeat("\n"), ";"), repeat1("\n"))), + + _expression: ($) => + choice( + $.block, + $._identifier, + $.alias, + $.integer, + $.float, + $.atom, + $.string, + $.charlist, + $.sigil, + $.list, + $.tuple, + $.bitstring, + $.map, + $.char, + $.boolean, + $.nil, + $.unary_operator, + $.binary_operator, + $.dot, + $.call, + $.access_call, + $.anonymous_function + ), + + block: ($) => + prec( + PREC.WHEN_OP, + seq( + "(", + seq( + optional($._terminator), + optional( + seq( + sep1(choice($._expression, $.stab_clause), $._terminator), + optional($._terminator) + ) + ) + ), + ")" + ) + ), + + _identifier: ($) => + choice($.identifier, $.unused_identifier, $.special_identifier), + + // Note: Elixir does not allow uppercase and titlecase letters + // as a variable starting character, but this regex would match + // those. This implies we would happily parse those cases, but + // since they are not valid Elixir it's unlikely to stumble upon + // them. TODO reword + // Ref: https://hexdocs.pm/elixir/master/unicode-syntax.html#variables + // TODO see if we need this in custom scanner in the end, if we do, + // then we may use the generation script from the original repo instead + // and make this an external (though I'd check if these custom unicode + // functions are efficient, does compiler optimise such checks?) + // identifier: ($) => choice(/[\p{ID_Start}][\p{ID_Continue}]*[?!]?/u, "..."), + // identifier: ($) => choice(/[\p{Ll}\p{Lm}\p{Lo}\p{Nl}\p{Other_ID_Start}][\p{ID_Continue}]*[?!]?/u, "..."), + // identifier: ($) => choice(/[\p{Ll}\p{Lm}\p{Lo}\p{Nl}][\p{ID_Continue}]*[?!]?/u, "..."), + // + // TODO elaborate, but basically + // + // we remove uppercase/titlecase letters from ID_Start as elixir does + // we remove the subtractions (we cannot express group subtraction in regex), + // but it's fine becaues at the time of writing these groups only really subtract + // a single character + // Unicode.Set.to_utf8_char "[[[:L:][:Nl:][:Other_ID_Start:]] & [[:Pattern_Syntax:][:Pattern_White_Space:]]]" + // we use hardcoded codepoints for \p{Other_ID_Start} since treesitter/js regexp doesn't + // recognise this group + // + // Other_ID_Start \u1885\u1886\u2118\u212E\u309B\u309C + // (this the list at the time of writing, it's for backward compatibility, see https://unicode.org/reports/tr31/#Backward_Compatibility) + identifier: ($) => + choice( + /[\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), + + // We have a separate rule for single-part alias, so that we + // can use it in the keywords rule + alias: ($) => choice($._alias_single, $._alias_multi), + + _alias_single: ($) => aliasPart, + + _alias_multi: ($) => token(sep1(aliasPart, /\s*\.\s*/)), + + integer: ($) => token(integer), + + float: ($) => token(float), + + atom: ($) => + seq( + $._atom_start, + choice( + alias($._atom_word_literal, $.atom_literal), + alias($._atom_operator_literal, $.atom_literal), + alias($._atom_special_literal, $.atom_literal), + $._quoted_i_double, + $._quoted_i_single + ) + ), + + // TODO comment on the unicode groups here + _atom_word_literal: ($) => /[\p{ID_Start}_][\p{ID_Continue}@]*[?!]?/u, + + _atom_operator_literal: ($) => choice(...ATOM_OPERATOR_LITERALS), + + _atom_special_literal: ($) => choice(...ATOM_SPECIAL_LITERALS), + + // Defines $._quoted_content_i_{name} and $._quoted_content_{name} rules, + // content with and without interpolation respectively + ...defineQuoted(`"`, `"`, "double"), + ...defineQuoted(`'`, `'`, "single"), + ...defineQuoted(`'''`, `'''`, "heredoc_single"), + ...defineQuoted(`"""`, `"""`, "heredoc_double"), + ...defineQuoted(`(`, `)`, "parenthesis"), + ...defineQuoted(`{`, `}`, "curly"), + ...defineQuoted(`[`, `]`, "square"), + ...defineQuoted(`<`, `>`, "angle"), + ...defineQuoted(`|`, `|`, "bar"), + ...defineQuoted(`/`, `/`, "slash"), + + string: ($) => choice($._quoted_i_double, $._quoted_i_heredoc_double), + + charlist: ($) => choice($._quoted_i_single, $._quoted_i_heredoc_single), + + interpolation: ($) => seq("#{", $._expression, "}"), + + escape_sequence: ($) => + token( + seq( + "\\", + choice( + // Single escaped character + /[^ux]/, + // Hex byte + /x[0-9a-fA-F]{1,2}/, + /x{[0-9a-fA-F]+}/, + // Unicode code point + /u{[0-9a-fA-F]+}/, + /u[0-9a-fA-F]{4}/ + ) + ) + ), + + sigil: ($) => + seq( + "~", + choice( + seq( + alias(token.immediate(/[a-z]/), $.sigil_name), + choice( + $._quoted_i_double, + $._quoted_i_single, + $._quoted_i_heredoc_single, + $._quoted_i_heredoc_double, + $._quoted_i_parenthesis, + $._quoted_i_curly, + $._quoted_i_square, + $._quoted_i_angle, + $._quoted_i_bar, + $._quoted_i_slash + ) + ), + seq( + alias(token.immediate(/[A-Z]/), $.sigil_name), + choice( + $._quoted_double, + $._quoted_single, + $._quoted_heredoc_single, + $._quoted_heredoc_double, + $._quoted_parenthesis, + $._quoted_curly, + $._quoted_square, + $._quoted_angle, + $._quoted_bar, + $._quoted_slash + ) + ) + ), + optional(alias(token.immediate(/[a-zA-Z]+/), $.sigil_modifiers)) + ), + + unary_operator: ($) => + choice( + unaryOp($, prec, PREC.CAPTURE_OP, "&", $._capture_expression), + unaryOp($, prec, PREC.UNARY_OPS, choice(...UNARY_OPS)), + unaryOp($, prec, PREC.AT_OP, "@"), + // Capture operand like &1 is a special case with higher precedence + unaryOp($, prec, PREC.CAPTURE_OPERAND, "&", $.integer) + ), + + _capture_expression: ($) => + choice( + // TODO sholud parenthesised expression be generally used (?) + // Precedence over block expression + prec(PREC.WHEN_OP + 1, seq("(", $._expression, ")")), + $._expression + ), + + binary_operator: ($) => + choice( + binaryOp($, prec.left, PREC.IN_MATCH_OPS, choice(...IN_MATCH_OPS)), + binaryOp( + $, + prec.right, + PREC.WHEN_OP, + "when", + $._expression, + choice($._expression, $.keywords) + ), + binaryOp($, prec.right, PREC.TYPE_OP, "::"), + binaryOp( + $, + prec.right, + PREC.BAR_OP, + "|", + $._expression, + choice($._expression, $.keywords) + ), + binaryOp($, prec.right, PREC.ASSOC_OP, "=>"), + binaryOp($, prec.right, PREC.MATCH_OP, "="), + binaryOp($, prec.left, PREC.OR_OPS, choice(...OR_OPS)), + binaryOp($, prec.left, PREC.AND_OPS, choice(...AND_OPS)), + binaryOp($, prec.left, PREC.COMP_OPS, choice(...COMP_OPS)), + binaryOp($, prec.left, PREC.REL_OPS, choice(...REL_OPS)), + binaryOp($, prec.left, PREC.ARROW_OPS, choice(...ARROW_OPS)), + binaryOp($, prec.left, PREC.IN_OPS, choice("in", $._not_in)), + binaryOp($, prec.left, PREC.XOR_OP, "^^^"), + binaryOp($, prec.right, PREC.TERNARY_OP, "//"), + binaryOp($, prec.right, PREC.CONCAT_OPS, choice(...CONCAT_OPS)), + binaryOp($, prec.left, PREC.ADD_OPS, choice(...ADD_OPS)), + binaryOp($, prec.left, PREC.MULT_OPS, choice(...MULT_OPS)), + binaryOp($, prec.left, PREC.POWER_OP, "**"), + // Operator with arity + binaryOp( + $, + prec.left, + PREC.MULT_OPS, + "/", + $.operator_identifier, + $.integer + ) + ), + + operator_identifier: ($) => + // Operators with the following changes: + // * exclude "=>" since it's not a valid atom/operator identifier anyway (valid only in map) + // * we exclude // since it's only valid after .. + // * we remove "-" and "+" since they are both unary and binary + + // We use the same precedence as unary operators, so that a sequence + // like `& /` is a conflict and is resolved via $.conflicts + // (could be be either `& / 2` or `& / / 2`) + choice( + // Unary operators + prec(PREC.CAPTURE_OP, "&"), + prec(PREC.UNARY_OPS, choice(...UNARY_OPS)), + prec(PREC.AT_OP, "@"), + // Binary operators + ...IN_MATCH_OPS, + "when", + "::", + "|", + "=", + ...OR_OPS, + ...AND_OPS, + ...COMP_OPS, + ...REL_OPS, + ...ARROW_OPS, + "in", + $._not_in, + "^^", + ...CONCAT_OPS, + ...MULT_OPS, + "**", + "->", + "." + ), + + dot: ($) => + prec( + PREC.DOT_OP, + seq(choice($._expression), ".", choice($.alias, $.tuple)) + ), + + keywords: ($) => sep1($.pair, ","), + + pair: ($) => seq($.keyword, $._expression), + + keyword: ($) => + seq( + // Tree-sitter doesn't consider ambiguities within individual + // tokens (in this case regexps). So both in [a] and [a: 1] it + // would always parse "a" as the same node (based on whether + // $.identifier or $.atom_literal) is listed first in the rules. + // However, since identifiers and alias parts are valid atom + // literals, we can list them here, in which case the parser will + // consider all paths and pick the valid one. + // Also see https://github.com/tree-sitter/tree-sitter/issues/518 + choice( + alias($._atom_word_literal, $.atom_literal), + alias($._atom_operator_literal, $.atom_literal), + alias($._keyword_special_literal, $.atom_literal), + alias($.identifier, $.atom_literal), + alias($.unused_identifier, $.atom_literal), + alias($.special_identifier, $.atom_literal), + alias($._alias_single, $.atom_literal), + alias(choice(...RESERVED_WORD_TOKENS), $.atom_literal), + $._quoted_i_double, + $._quoted_i_single + ), + $._keyword_end + ), + + list: ($) => seq("[", optional($._items_with_trailing_separator), "]"), + + tuple: ($) => seq("{", optional($._items_with_trailing_separator), "}"), + + bitstring: ($) => + seq("<<", optional($._items_with_trailing_separator), ">>"), + + map: ($) => seq("%", optional($.struct), "{", optional($.map_content), "}"), + + struct: ($) => + prec.left( + choice( + $.alias, + $.atom, + $._identifier, + $.unary_operator, + $.dot, + alias($._parenthesised_call, $.call) + ) + ), + + map_content: ($) => $._items_with_trailing_separator, + + _items_with_trailing_separator: ($) => + seq( + choice( + seq(sep1($._expression, ","), optional(seq(",", $.keywords))), + $.keywords + ), + optional(",") + ), + + char: ($) => /\?(.|\\.)/, + + boolean: ($) => choice("true", "false"), + + nil: ($) => "nil", + + call: ($) => + choice( + $._local_call_with_arguments, + $._parenthesised_local_call_with_arguments, + $._local_call_without_arguments, + $._remote_call, + $._parenthesised_remote_call, + $._anonymous_call, + $._call_on_call + ), + + _parenthesised_call: ($) => + choice( + $._parenthesised_local_call_with_arguments, + $._parenthesised_remote_call, + $._anonymous_call, + $._call_on_call + ), + + _call_on_call: ($) => + prec.left( + seq( + alias( + choice( + $._parenthesised_local_call_with_arguments, + $._parenthesised_remote_call, + $._anonymous_call + ), + $.call + ), + // arguments in parentheses + // alias($._local_or_remote_arguments, $.arguments), + // TODO just make nonimmediate/immediate in the name + alias($._anonymous_arguments, $.arguments), + optional(seq(optional($._newline_before_do), $.do_block)) + ) + ), + + _local_call_with_arguments: ($) => + // Given `x + y` it can be interpreted either as a binary operator + // or a call with unary operator. This is an actual ambiguity, so + // we use dynamic precedence to penalize call + // prec.dynamic( + // TODO ideally we would penalize whitespace after unary op, + // so that x + y is binary op and x +y is unary op, to reflect + // Elixir ast + // -1, + prec.left( + seq( + $._identifier, + alias($._call_arguments, $.arguments), + // TODO include this in notes: + // We use external scanner for _newline_before_do because + // this way we can lookahead through any whitespace + // (especially newlines). We cannot simply use repeat("\n") + // and conflict with expression end, because this function + // rule has left precedence (so that do-end sticks to the outermost + // call), and thus expression end would always be preferred + optional(seq(optional($._newline_before_do), $.do_block)) + // optional($.do_block) + ) + // ) + ), + + _parenthesised_local_call_with_arguments: ($) => + // Given `x + y` it can be interpreted either as a binary operator + // or a call with unary operator. This is an actual ambiguity, so + // we use dynamic precedence to penalize call + // prec.dynamic( + // TODO ideally we would penalize whitespace after unary op, + // so that x + y is binary op and x +y is unary op, to reflect + // Elixir ast + // -1, + prec.left( + seq( + $._identifier, + alias($._parenthesised_call_arguments, $.arguments), + // TODO include this in notes: + // We use external scanner for _newline_before_do because + // this way we can lookahead through any whitespace + // (especially newlines). We cannot simply use repeat("\n") + // and conflict with expression end, because this function + // rule has left precedence (so that do-end sticks to the outermost + // call), and thus expression end would always be preferred + optional(seq(optional($._newline_before_do), $.do_block)) + // optional($.do_block) + ) + // ) + ), + + _local_call_without_arguments: ($) => + // We use lower precedence, so given `fun arg do end` + // we don't tokenize `arg` as a call + + // we actually need a conflict because of `foo bar do end` vs `foo bar do: 1` + // prec(-1, + prec.dynamic(-1, seq($._identifier, $.do_block)), + // ) + _remote_call: ($) => + prec.left( + seq( + alias($._remote_dot, $.dot), + optional(alias($._call_arguments, $.arguments)), + optional(seq(optional($._newline_before_do), $.do_block)) + // optional($.do_block) + ) + ), + + _parenthesised_remote_call: ($) => + prec.left( + seq( + alias($._remote_dot, $.dot), + alias($._parenthesised_call_arguments, $.arguments), + optional(seq(optional($._newline_before_do), $.do_block)) + // optional($.do_block) + ) + ), + + _remote_dot: ($) => + prec( + PREC.DOT_OP, + seq( + $._expression, + ".", + // TODO can also be string, anything else? + // compare with the other parser + // TODO we don't want to support heredoc though + choice( + $._identifier, + alias(choice(...RESERVED_WORD_TOKENS), $.identifier), + $.operator_identifier, + alias($._quoted_i_double, $.string), + alias($._quoted_i_single, $.charlist) + ) + ) + ), + + _parenthesised_call_arguments: ($) => + seq(token.immediate("("), optional($._call_arguments), ")"), + + _anonymous_call: ($) => + seq( + alias($._anonymous_dot, $.dot), + alias($._anonymous_arguments, $.arguments) + ), + + _anonymous_dot: ($) => prec(PREC.DOT_OP, seq($._expression, ".")), + + _anonymous_arguments: ($) => seq("(", optional($._call_arguments), ")"), + + _call_arguments: ($) => + // Right precedence ensures that `fun1 fun2 x, y` is treated + // as `fun1(fun2(x, y))` and not `fun1(fun2(x), y) + prec.right( + seq( + choice( + seq( + sep1($._expression, ","), + optional(seq(",", $.keywords, optional(","))) + ), + seq($.keywords, optional(",")) + ) + ) + ), + + access_call: ($) => + prec( + PREC.ACCESS, + seq($._expression, token.immediate("["), $._expression, "]") + ), + + do_block: ($) => + seq( + sugarBlock($, "do"), + repeat( + choice($.after_block, $.rescue_block, $.catch_block, $.else_block) + ), + "end" + ), + + after_block: ($) => sugarBlock($, "after"), + + rescue_block: ($) => sugarBlock($, "rescue"), + + catch_block: ($) => sugarBlock($, "catch"), + + else_block: ($) => sugarBlock($, "else"), + + // Specify right precedence, so that we consume as much as we can + stab_clause: ($) => + prec.right(seq(optional($._stab_clause_left), "->", optional($.body))), + + _stab_clause_left: ($) => + choice( + // Note the first option has higher precedence, TODO clarify + alias($._stab_clause_parentheses_arguments, $.arguments), + // TODO naming/cleanup + alias( + $._stab_clause_parentheses_arguments_with_guard, + $.binary_operator + ), + alias($._stab_clause_arguments, $.arguments), + alias($._stab_clause_arguments_with_guard, $.binary_operator) + ), + + _stab_clause_parentheses_arguments: ($) => + // `(1) ->` may be interpreted either as block argument + // or argument in parentheses and we use dynamic precedence + // to favour the latter + prec( + PREC.WHEN_OP, + prec.dynamic(1, seq("(", optional($._stab_clause_arguments), ")")) + ), + _stab_clause_parentheses_arguments_with_guard: ($) => + seq( + alias($._stab_clause_parentheses_arguments, $.arguments), + "when", + $._expression + ), + + _stab_clause_arguments_with_guard: ($) => + // `a when b ->` may be interpted either such that `a when b` is an argument + // or a guard binary operator with argument `a` and right operand `b`, + // we use dynamic precedence to favour the latter + prec.dynamic( + 1, + seq(alias($._stab_clause_arguments, $.arguments), "when", $._expression) + ), + _stab_clause_arguments: ($) => + // TODO this is a variant of _items_with_trailing_separator, cleanup + choice( + seq( + sep1($._stab_clause_arguments_expression, ","), + optional(seq(",", $.keywords)) + ), + $.keywords + ), + + _stab_clause_arguments_expression: ($) => + // Note here we use the same precedence as when operator, + // so we get a conflict and resolve it dynamically + prec(PREC.WHEN_OP, $._expression), + body: ($) => + seq( + choice( + seq($._terminator, sep($._expression, $._terminator)), + sep1($._expression, $._terminator) + ), + optional($._terminator) + ), + + anonymous_function: ($) => + seq( + "fn", + optional($._terminator), + sep1($.stab_clause, $._terminator), + "end" + ), + + // A comment may be anywhere, we give it a lower precedence, + // so it doesn't intercept sequences such as interpolation + comment: ($) => token(prec(-1, seq("#", /.*/))), }, }); + +function sep1(rule, separator) { + return seq(rule, repeat(seq(separator, rule))); +} + +function sep(rule, separator) { + return optional(sep1(rule, separator)); +} + +function unaryOp($, assoc, precedence, operator, right = null) { + return assoc( + precedence, + // TODO clarify, we use lower precedence, so given `x + y`, + // which can be interpreted as either `x + y` or `x(+y)` + // we favour the former. The only exception is when + // _before_unary_op matches which forces the latter interpretation + // in case like `x +y` + prec.dynamic( + -1, + seq( + optional($._before_unary_op), + field("operator", operator), + right || $._expression + ) + ) + ); +} + +function binaryOp($, assoc, precedence, operator, left = null, right = null) { + return assoc( + precedence, + seq( + field("left", left || $._expression), + field("operator", operator), + field("right", right || $._expression) + ) + ); +} + +function sugarBlock($, start) { + return seq( + start, + optional($._terminator), + optional( + choice( + sep1(choice($.stab_clause), $._terminator), + seq(sep1(choice($._expression), $._terminator), optional($._terminator)) + ) + ) + ); +} + +function defineQuoted(start, end, name) { + return { + [`_quoted_i_${name}`]: ($) => + seq( + start, + repeat( + choice( + // TODO rename the extenrals to _content + alias($[`_quoted_content_i_${name}`], $.string_content), + $.interpolation, + $.escape_sequence + ) + ), + end + ), + + [`_quoted_${name}`]: ($) => + seq( + start, + repeat( + choice( + // TODO rename the extenrals to _content + alias($[`_quoted_content_${name}`], $.string_content), + // It's always possible to escape the end delimiter + $.escape_sequence + ) + ), + end + ), + }; +} diff --git a/src/grammar.json b/src/grammar.json index 3b292c9..fcd520e 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2,19 +2,5674 @@ "name": "elixir", "rules": { "source": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_terminator": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": "\n" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "\n" + } + } + ] + } + }, + "_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "SYMBOL", + "name": "alias" + }, + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + }, + { + "type": "SYMBOL", + "name": "atom" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "charlist" + }, + { + "type": "SYMBOL", + "name": "sigil" + }, + { + "type": "SYMBOL", + "name": "list" + }, + { + "type": "SYMBOL", + "name": "tuple" + }, + { + "type": "SYMBOL", + "name": "bitstring" + }, + { + "type": "SYMBOL", + "name": "map" + }, + { + "type": "SYMBOL", + "name": "char" + }, + { + "type": "SYMBOL", + "name": "boolean" + }, + { + "type": "SYMBOL", + "name": "nil" + }, + { + "type": "SYMBOL", + "name": "unary_operator" + }, + { + "type": "SYMBOL", + "name": "binary_operator" + }, + { + "type": "SYMBOL", + "name": "dot" + }, + { + "type": "SYMBOL", + "name": "call" + }, + { + "type": "SYMBOL", + "name": "access_call" + }, + { + "type": "SYMBOL", + "name": "anonymous_function" + } + ] + }, + "block": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "_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}]*[?!]?" + }, + { + "type": "STRING", + "value": "..." + } + ] + }, + "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_alias_single" + }, + { + "type": "SYMBOL", + "name": "_alias_multi" + } + ] + }, + "_alias_single": { + "type": "PATTERN", + "value": "[A-Z][_a-zA-Z0-9]*" + }, + "_alias_multi": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[A-Z][_a-zA-Z0-9]*" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "\\s*\\.\\s*" + }, + { + "type": "PATTERN", + "value": "[A-Z][_a-zA-Z0-9]*" + } + ] + } + } + ] + } + }, + "integer": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-1]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-1]+" + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-7]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-7]+" + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + } + ] + } + } + ] + } + ] + } + ] + } + }, + "float": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE]" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-9]+" + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-1]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-1]+" + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-7]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-7]+" + } + ] + } + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "_" + }, + { + "type": "PATTERN", + "value": "[0-9a-fA-F]+" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "atom": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_atom_start" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atom_word_literal" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atom_operator_literal" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atom_special_literal" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_single" + } + ] + } + ] + }, + "_atom_word_literal": { + "type": "PATTERN", + "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?" + }, + "_atom_operator_literal": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "&" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "^^^" + }, + { + "type": "STRING", + "value": "//" + }, + { + "type": "STRING", + "value": "**" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "@" + }, + { + "type": "STRING", + "value": "<-" + }, + { + "type": "STRING", + "value": "\\\\" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "|||" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "&&&" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "STRING", + "value": "===" + }, + { + "type": "STRING", + "value": "!==" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "|>" + }, + { + "type": "STRING", + "value": "<<<" + }, + { + "type": "STRING", + "value": ">>>" + }, + { + "type": "STRING", + "value": "<<~" + }, + { + "type": "STRING", + "value": "~>>" + }, + { + "type": "STRING", + "value": "<~" + }, + { + "type": "STRING", + "value": "~>" + }, + { + "type": "STRING", + "value": "<~>" + }, + { + "type": "STRING", + "value": "<|>" + }, + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "+++" + }, + { + "type": "STRING", + "value": "---" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "~~~" + } + ] + }, + "_atom_special_literal": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "%{}" + }, + { + "type": "STRING", + "value": "{}" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "<<>>" + }, + { + "type": "STRING", + "value": "..//" + } + ] + }, + "_quoted_i_double": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_double" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "_quoted_double": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_double" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + "_quoted_i_single": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_single" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "_quoted_single": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_single" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + }, + "_quoted_i_heredoc_single": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'''" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_heredoc_single" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'''" + } + ] + }, + "_quoted_heredoc_single": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'''" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_heredoc_single" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "'''" + } + ] + }, + "_quoted_i_heredoc_double": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"\"\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_heredoc_double" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"\"\"" + } + ] + }, + "_quoted_heredoc_double": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"\"\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_heredoc_double" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "\"\"\"" + } + ] + }, + "_quoted_i_parenthesis": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_parenthesis" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_quoted_parenthesis": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_parenthesis" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_quoted_i_curly": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_curly" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_quoted_curly": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_curly" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_quoted_i_square": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_square" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_quoted_square": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_square" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "_quoted_i_angle": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_angle" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "_quoted_angle": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_angle" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": ">" + } + ] + }, + "_quoted_i_bar": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_bar" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + "_quoted_bar": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_bar" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + "_quoted_i_slash": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_i_slash" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "/" + } + ] + }, + "_quoted_slash": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_content_slash" + }, + "named": true, + "value": "string_content" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + } + ] + } + }, + { + "type": "STRING", + "value": "/" + } + ] + }, + "string": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_quoted_i_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_heredoc_double" + } + ] + }, + "charlist": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_quoted_i_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_heredoc_single" + } + ] + }, + "interpolation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#{" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "escape_sequence": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[^ux]" + }, + { + "type": "PATTERN", + "value": "x[0-9a-fA-F]{1,2}" + }, + { + "type": "PATTERN", + "value": "x{[0-9a-fA-F]+}" + }, + { + "type": "PATTERN", + "value": "u{[0-9a-fA-F]+}" + }, + { + "type": "PATTERN", + "value": "u[0-9a-fA-F]{4}" + } + ] + } + ] + } + }, + "sigil": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "~" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[a-z]" + } + }, + "named": true, + "value": "sigil_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_quoted_i_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_heredoc_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_heredoc_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_curly" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_square" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_angle" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_bar" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_slash" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[A-Z]" + } + }, + "named": true, + "value": "sigil_name" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_quoted_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_heredoc_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_heredoc_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_quoted_curly" + }, + { + "type": "SYMBOL", + "name": "_quoted_square" + }, + { + "type": "SYMBOL", + "name": "_quoted_angle" + }, + { + "type": "SYMBOL", + "name": "_quoted_bar" + }, + { + "type": "SYMBOL", + "name": "_quoted_slash" + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": "[a-zA-Z]+" + } + }, + "named": true, + "value": "sigil_modifiers" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "unary_operator": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 60, + "content": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_before_unary_op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "SYMBOL", + "name": "_capture_expression" + } + ] + } + } + }, + { + "type": "PREC", + "value": 200, + "content": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_before_unary_op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "~~~" + }, + { + "type": "STRING", + "value": "not" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + }, + { + "type": "PREC", + "value": 220, + "content": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_before_unary_op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + }, + { + "type": "PREC", + "value": 235, + "content": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_before_unary_op" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "SYMBOL", + "name": "integer" + } + ] + } + } + } + ] + }, + "_capture_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 21, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "binary_operator": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<-" + }, + { + "type": "STRING", + "value": "\\\\" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "when" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 30, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "::" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 40, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 50, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 70, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 80, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "|||" + }, + { + "type": "STRING", + "value": "or" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 90, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "&&&" + }, + { + "type": "STRING", + "value": "and" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 100, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "STRING", + "value": "===" + }, + { + "type": "STRING", + "value": "!==" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 110, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 120, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "|>" + }, + { + "type": "STRING", + "value": "<<<" + }, + { + "type": "STRING", + "value": ">>>" + }, + { + "type": "STRING", + "value": "<<~" + }, + { + "type": "STRING", + "value": "~>>" + }, + { + "type": "STRING", + "value": "<~" + }, + { + "type": "STRING", + "value": "~>" + }, + { + "type": "STRING", + "value": "<~>" + }, + { + "type": "STRING", + "value": "<|>" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 130, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "_not_in" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 140, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^^^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 150, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "//" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 160, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "+++" + }, + { + "type": "STRING", + "value": "---" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "<>" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 170, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 180, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 190, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "**" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 180, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "operator_identifier" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "integer" + } + } + ] + } + } + ] + }, + "operator_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 60, + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "PREC", + "value": 200, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "^" + }, + { + "type": "STRING", + "value": "~~~" + }, + { + "type": "STRING", + "value": "not" + } + ] + } + }, + { + "type": "PREC", + "value": 220, + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "STRING", + "value": "<-" + }, + { + "type": "STRING", + "value": "\\\\" + }, + { + "type": "STRING", + "value": "when" + }, + { + "type": "STRING", + "value": "::" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "STRING", + "value": "|||" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "&&" + }, + { + "type": "STRING", + "value": "&&&" + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": "=~" + }, + { + "type": "STRING", + "value": "===" + }, + { + "type": "STRING", + "value": "!==" + }, + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": "|>" + }, + { + "type": "STRING", + "value": "<<<" + }, + { + "type": "STRING", + "value": ">>>" + }, + { + "type": "STRING", + "value": "<<~" + }, + { + "type": "STRING", + "value": "~>>" + }, + { + "type": "STRING", + "value": "<~" + }, + { + "type": "STRING", + "value": "~>" + }, + { + "type": "STRING", + "value": "<~>" + }, + { + "type": "STRING", + "value": "<|>" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "_not_in" + }, + { + "type": "STRING", + "value": "^^" + }, + { + "type": "STRING", + "value": "++" + }, + { + "type": "STRING", + "value": "--" + }, + { + "type": "STRING", + "value": "+++" + }, + { + "type": "STRING", + "value": "---" + }, + { + "type": "STRING", + "value": ".." + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "/" + }, + { + "type": "STRING", + "value": "**" + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "STRING", + "value": "." + } + ] + }, + "dot": { + "type": "PREC", + "value": 210, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "alias" + }, + { + "type": "SYMBOL", + "name": "tuple" + } + ] + } + ] + } + }, + "keywords": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pair" + } + ] + } + } + ] + }, + "pair": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "keyword" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "keyword": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atom_word_literal" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_atom_operator_literal" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_keyword_special_literal" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unused_identifier" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "special_identifier" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_alias_single" + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "when" + }, + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + }, + { + "type": "STRING", + "value": "nil" + }, + { + "type": "STRING", + "value": "after" + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "end" + }, + { + "type": "STRING", + "value": "fn" + }, + { + "type": "STRING", + "value": "rescue" + } + ] + }, + "named": true, + "value": "atom_literal" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_single" + } + ] + }, + { + "type": "SYMBOL", + "name": "_keyword_end" + } + ] + }, + "list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_items_with_trailing_separator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "tuple": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_items_with_trailing_separator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "bitstring": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "<<" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_items_with_trailing_separator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ">>" + } + ] + }, + "map": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "%" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "map_content" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "struct": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "alias" + }, + { + "type": "SYMBOL", + "name": "atom" + }, + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "SYMBOL", + "name": "unary_operator" + }, + { + "type": "SYMBOL", + "name": "dot" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_parenthesised_call" + }, + "named": true, + "value": "call" + } + ] + } + }, + "map_content": { + "type": "SYMBOL", + "name": "_items_with_trailing_separator" + }, + "_items_with_trailing_separator": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "char": { + "type": "PATTERN", + "value": "\\?(.|\\\\.)" + }, + "boolean": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + } + ] + }, + "nil": { "type": "STRING", - "value": "TODO" + "value": "nil" + }, + "call": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_local_call_with_arguments" + }, + { + "type": "SYMBOL", + "name": "_parenthesised_local_call_with_arguments" + }, + { + "type": "SYMBOL", + "name": "_local_call_without_arguments" + }, + { + "type": "SYMBOL", + "name": "_remote_call" + }, + { + "type": "SYMBOL", + "name": "_parenthesised_remote_call" + }, + { + "type": "SYMBOL", + "name": "_anonymous_call" + }, + { + "type": "SYMBOL", + "name": "_call_on_call" + } + ] + }, + "_parenthesised_call": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parenthesised_local_call_with_arguments" + }, + { + "type": "SYMBOL", + "name": "_parenthesised_remote_call" + }, + { + "type": "SYMBOL", + "name": "_anonymous_call" + }, + { + "type": "SYMBOL", + "name": "_call_on_call" + } + ] + }, + "_call_on_call": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parenthesised_local_call_with_arguments" + }, + { + "type": "SYMBOL", + "name": "_parenthesised_remote_call" + }, + { + "type": "SYMBOL", + "name": "_anonymous_call" + } + ] + }, + "named": true, + "value": "call" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_anonymous_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_before_do" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "do_block" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_local_call_with_arguments": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_call_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_before_do" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "do_block" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_parenthesised_local_call_with_arguments": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_parenthesised_call_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_before_do" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "do_block" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_local_call_without_arguments": { + "type": "PREC_DYNAMIC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "SYMBOL", + "name": "do_block" + } + ] + } + }, + "_remote_call": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_remote_dot" + }, + "named": true, + "value": "dot" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_call_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_before_do" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "do_block" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_parenthesised_remote_call": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_remote_dot" + }, + "named": true, + "value": "dot" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_parenthesised_call_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_newline_before_do" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "do_block" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_remote_dot": { + "type": "PREC", + "value": 210, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "or" + }, + { + "type": "STRING", + "value": "when" + }, + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + }, + { + "type": "STRING", + "value": "nil" + }, + { + "type": "STRING", + "value": "after" + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "end" + }, + { + "type": "STRING", + "value": "fn" + }, + { + "type": "STRING", + "value": "rescue" + } + ] + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "operator_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_i_double" + }, + "named": true, + "value": "string" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_quoted_i_single" + }, + "named": true, + "value": "charlist" + } + ] + } + ] + } + }, + "_parenthesised_call_arguments": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_call_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_anonymous_call": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_anonymous_dot" + }, + "named": true, + "value": "dot" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_anonymous_arguments" + }, + "named": true, + "value": "arguments" + } + ] + }, + "_anonymous_dot": { + "type": "PREC", + "value": 210, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + "_anonymous_arguments": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_call_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_call_arguments": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "keywords" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "keywords" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + }, + "access_call": { + "type": "PREC", + "value": 205, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "[" + } + }, + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "do_block": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "after_block" + }, + { + "type": "SYMBOL", + "name": "rescue_block" + }, + { + "type": "SYMBOL", + "name": "catch_block" + }, + { + "type": "SYMBOL", + "name": "else_block" + } + ] + } + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "after_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "after" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "rescue_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "rescue" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "catch_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "catch" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "else_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + ] + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "stab_clause": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_stab_clause_left" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "->" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "body" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "_stab_clause_left": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stab_clause_parentheses_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stab_clause_parentheses_arguments_with_guard" + }, + "named": true, + "value": "binary_operator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stab_clause_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stab_clause_arguments_with_guard" + }, + "named": true, + "value": "binary_operator" + } + ] + }, + "_stab_clause_parentheses_arguments": { + "type": "PREC", + "value": 20, + "content": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_stab_clause_arguments" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + } + }, + "_stab_clause_parentheses_arguments_with_guard": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stab_clause_parentheses_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "STRING", + "value": "when" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "_stab_clause_arguments_with_guard": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_stab_clause_arguments" + }, + "named": true, + "value": "arguments" + }, + { + "type": "STRING", + "value": "when" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, + "_stab_clause_arguments": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_stab_clause_arguments_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_stab_clause_arguments_expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + }, + "_stab_clause_arguments_expression": { + "type": "PREC", + "value": 20, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + "body": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "anonymous_function": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "fn" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "end" + } + ] + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + } + } } }, "extras": [ + { + "type": "SYMBOL", + "name": "comment" + }, { "type": "PATTERN", - "value": "\\s" + "value": "\\s|\\\\\\n" + }, + { + "type": "SYMBOL", + "name": "_newline_before_binary_op" + }, + { + "type": "SYMBOL", + "name": "_newline_before_comment" + }, + { + "type": "STRING", + "value": "\n" } ], - "conflicts": [], + "conflicts": [ + [ + "binary_operator" + ], + [ + "keywords" + ], + [ + "_expression", + "_local_call_with_arguments" + ], + [ + "_expression", + "_local_call_with_arguments", + "_local_call_without_arguments" + ], + [ + "_remote_call", + "_parenthesised_remote_call" + ], + [ + "block", + "_stab_clause_parentheses_arguments" + ], + [ + "block", + "_stab_clause_arguments" + ], + [ + "block", + "_stab_clause_arguments_expression" + ], + [ + "binary_operator", + "_stab_clause_arguments_expression" + ], + [ + "tuple", + "map" + ], + [ + "tuple", + "map_content" + ], + [ + "operator_identifier", + "stab_clause" + ], + [ + "unary_operator", + "operator_identifier" + ], + [ + "body" + ], + [ + "after_block" + ], + [ + "rescue_block" + ], + [ + "catch_block" + ], + [ + "else_block" + ] + ], "precedences": [], - "externals": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_quoted_content_i_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_heredoc_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_heredoc_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_curly" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_square" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_angle" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_bar" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_i_slash" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_heredoc_single" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_heredoc_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_parenthesis" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_curly" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_square" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_angle" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_bar" + }, + { + "type": "SYMBOL", + "name": "_quoted_content_slash" + }, + { + "type": "SYMBOL", + "name": "_keyword_special_literal" + }, + { + "type": "SYMBOL", + "name": "_atom_start" + }, + { + "type": "SYMBOL", + "name": "_keyword_end" + }, + { + "type": "SYMBOL", + "name": "_newline_before_do" + }, + { + "type": "SYMBOL", + "name": "_newline_before_binary_op" + }, + { + "type": "SYMBOL", + "name": "_newline_before_comment" + }, + { + "type": "SYMBOL", + "name": "_before_unary_op" + }, + { + "type": "SYMBOL", + "name": "_not_in" + } + ], "inline": [], "supertypes": [] } diff --git a/src/node-types.json b/src/node-types.json index 6481d70..7ba69d5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1,11 +1,3269 @@ [ { - "type": "source", + "type": "access_call", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "after_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "stab_clause", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "alias", "named": true, "fields": {} }, { - "type": "TODO", + "type": "anonymous_function", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "stab_clause", + "named": true + } + ] + } + }, + { + "type": "arguments", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keywords", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "atom", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atom_literal", + "named": true + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "atom_literal", + "named": true, + "fields": {} + }, + { + "type": "binary_operator", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "operator_identifier", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": false, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&&&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+++", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "---", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "//", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<-", + "named": false + }, + { + "type": "<<<", + "named": false + }, + { + "type": "<<~", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "<|>", + "named": false + }, + { + "type": "<~", + "named": false + }, + { + "type": "<~>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": "=~", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>>", + "named": false + }, + { + "type": "\\\\", + "named": false + }, + { + "type": "^^^", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "when", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|>", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "|||", + "named": false + }, + { + "type": "~>", + "named": false + }, + { + "type": "~>>", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keywords", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "arguments", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "bitstring", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keywords", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "stab_clause", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "boolean", + "named": true, + "fields": {} + }, + { + "type": "call", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "do_block", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "catch_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "stab_clause", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "charlist", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "do_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "after_block", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "catch_block", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "else_block", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "rescue_block", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "stab_clause", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "dot", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "operator_identifier", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "else_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "stab_clause", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "identifier", + "named": true, + "fields": {} + }, + { + "type": "interpolation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "keyword", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "atom_literal", + "named": true + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "keywords", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "pair", + "named": true + } + ] + } + }, + { + "type": "list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keywords", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "map", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "map_content", + "named": true + }, + { + "type": "struct", + "named": true + } + ] + } + }, + { + "type": "map_content", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keywords", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "nil", + "named": true, + "fields": {} + }, + { + "type": "operator_identifier", + "named": true, + "fields": {} + }, + { + "type": "pair", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keyword", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "rescue_block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "stab_clause", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "sigil", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "sigil_modifiers", + "named": true + }, + { + "type": "sigil_name", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "source", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "special_identifier", + "named": true, + "fields": {} + }, + { + "type": "stab_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "body", + "named": true + } + ] + } + }, + { + "type": "string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "string_content", + "named": true + } + ] + } + }, + { + "type": "struct", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "alias", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "tuple", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "keywords", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "unary_operator", + "named": true, + "fields": { + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "!", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "~~~", + "named": false + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "access_call", + "named": true + }, + { + "type": "alias", + "named": true + }, + { + "type": "anonymous_function", + "named": true + }, + { + "type": "atom", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "bitstring", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "boolean", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "char", + "named": true + }, + { + "type": "charlist", + "named": true + }, + { + "type": "dot", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "nil", + "named": true + }, + { + "type": "sigil", + "named": true + }, + { + "type": "special_identifier", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + }, + { + "type": "unused_identifier", + "named": true + } + ] + } + }, + { + "type": "\n", + "named": false + }, + { + "type": "!", + "named": false + }, + { + "type": "!=", + "named": false + }, + { + "type": "!==", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "\"\"\"", + "named": false + }, + { + "type": "#{", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%{}", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&&", + "named": false + }, + { + "type": "&&&", + "named": false + }, + { + "type": "'", + "named": false + }, + { + "type": "'''", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "++", + "named": false + }, + { + "type": "+++", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "--", + "named": false + }, + { + "type": "---", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "..", + "named": false + }, + { + "type": "...", + "named": false + }, + { + "type": "..//", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "//", + "named": false + }, + { + "type": "::", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<-", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<<", + "named": false + }, + { + "type": "<<>>", + "named": false + }, + { + "type": "<<~", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "<|>", + "named": false + }, + { + "type": "<~", + "named": false + }, + { + "type": "<~>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": "===", + "named": false + }, + { + "type": "=>", + "named": false + }, + { + "type": "=~", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>>", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "\\\\", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^^", + "named": false + }, + { + "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 + }, + { + "type": "and", + "named": false + }, + { + "type": "catch", + "named": false + }, + { + "type": "char", + "named": true + }, + { + "type": "comment", + "named": true + }, + { + "type": "do", + "named": false + }, + { + "type": "else", + "named": false + }, + { + "type": "end", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "false", + "named": false + }, + { + "type": "float", + "named": true + }, + { + "type": "fn", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "integer", + "named": true + }, + { + "type": "nil", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "rescue", + "named": false + }, + { + "type": "sigil_modifiers", + "named": true + }, + { + "type": "sigil_name", + "named": true + }, + { + "type": "string_content", + "named": true + }, + { + "type": "true", + "named": false + }, + { + "type": "unused_identifier", + "named": true + }, + { + "type": "when", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "{}", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|>", + "named": false + }, + { + "type": "||", + "named": false + }, + { + "type": "|||", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "~", + "named": false + }, + { + "type": "~>", + "named": false + }, + { + "type": "~>>", + "named": false + }, + { + "type": "~~~", "named": false } ] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c index 4a22a39..d828a7d 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,32 +5,772 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + #define LANGUAGE_VERSION 13 -#define STATE_COUNT 4 -#define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 3 +#define STATE_COUNT 5460 +#define LARGE_STATE_COUNT 1393 +#define SYMBOL_COUNT 247 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 2 -#define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 0 -#define MAX_ALIAS_SEQUENCE_LENGTH 1 -#define PRODUCTION_ID_COUNT 1 +#define TOKEN_COUNT 136 +#define EXTERNAL_TOKEN_COUNT 28 +#define FIELD_COUNT 3 +#define MAX_ALIAS_SEQUENCE_LENGTH 7 +#define PRODUCTION_ID_COUNT 11 enum { - anon_sym_TODO = 1, - sym_source = 2, + anon_sym_LF = 1, + anon_sym_SEMI = 2, + anon_sym_LPAREN = 3, + 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_single = 13, + sym__alias_multi = 14, + sym_integer = 15, + sym_float = 16, + sym__atom_word_literal = 17, + anon_sym_DASH_GT = 18, + anon_sym_COLON_COLON = 19, + anon_sym_PIPE = 20, + anon_sym_AMP = 21, + anon_sym_EQ = 22, + anon_sym_CARET_CARET_CARET = 23, + anon_sym_SLASH_SLASH = 24, + anon_sym_STAR_STAR = 25, + anon_sym_DOT = 26, + anon_sym_AT = 27, + anon_sym_LT_DASH = 28, + anon_sym_BSLASH_BSLASH = 29, + anon_sym_PIPE_PIPE = 30, + anon_sym_PIPE_PIPE_PIPE = 31, + anon_sym_AMP_AMP = 32, + anon_sym_AMP_AMP_AMP = 33, + anon_sym_EQ_EQ = 34, + anon_sym_BANG_EQ = 35, + anon_sym_EQ_TILDE = 36, + anon_sym_EQ_EQ_EQ = 37, + anon_sym_BANG_EQ_EQ = 38, + anon_sym_LT = 39, + anon_sym_GT = 40, + anon_sym_LT_EQ = 41, + anon_sym_GT_EQ = 42, + anon_sym_PIPE_GT = 43, + anon_sym_LT_LT_LT = 44, + anon_sym_GT_GT_GT = 45, + anon_sym_LT_LT_TILDE = 46, + anon_sym_TILDE_GT_GT = 47, + anon_sym_LT_TILDE = 48, + anon_sym_TILDE_GT = 49, + anon_sym_LT_TILDE_GT = 50, + anon_sym_LT_PIPE_GT = 51, + anon_sym_PLUS_PLUS = 52, + anon_sym_DASH_DASH = 53, + anon_sym_PLUS_PLUS_PLUS = 54, + anon_sym_DASH_DASH_DASH = 55, + anon_sym_DOT_DOT = 56, + anon_sym_LT_GT = 57, + anon_sym_PLUS = 58, + anon_sym_DASH = 59, + anon_sym_STAR = 60, + anon_sym_SLASH = 61, + anon_sym_BANG = 62, + anon_sym_CARET = 63, + anon_sym_TILDE_TILDE_TILDE = 64, + anon_sym_PERCENT_LBRACE_RBRACE = 65, + anon_sym_LBRACE_RBRACE = 66, + anon_sym_PERCENT = 67, + anon_sym_LT_LT_GT_GT = 68, + anon_sym_DOT_DOT_SLASH_SLASH = 69, + anon_sym_DQUOTE = 70, + anon_sym_SQUOTE = 71, + anon_sym_SQUOTE_SQUOTE_SQUOTE = 72, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 73, + anon_sym_LBRACE = 74, + anon_sym_RBRACE = 75, + anon_sym_LBRACK = 76, + anon_sym_RBRACK = 77, + anon_sym_POUND_LBRACE = 78, + sym_escape_sequence = 79, + anon_sym_TILDE = 80, + aux_sym_sigil_token1 = 81, + aux_sym_sigil_token2 = 82, + aux_sym_sigil_token3 = 83, + anon_sym_not = 84, + anon_sym_when = 85, + anon_sym_EQ_GT = 86, + anon_sym_or = 87, + anon_sym_and = 88, + anon_sym_in = 89, + anon_sym_CARET_CARET = 90, + anon_sym_COMMA = 91, + anon_sym_true = 92, + anon_sym_false = 93, + anon_sym_nil = 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_LT_LT = 102, + anon_sym_GT_GT = 103, + sym_char = 104, + anon_sym_LPAREN2 = 105, + anon_sym_LBRACK2 = 106, + sym_comment = 107, + sym__quoted_content_i_single = 108, + sym__quoted_content_i_double = 109, + sym__quoted_content_i_heredoc_single = 110, + sym__quoted_content_i_heredoc_double = 111, + sym__quoted_content_i_parenthesis = 112, + sym__quoted_content_i_curly = 113, + sym__quoted_content_i_square = 114, + sym__quoted_content_i_angle = 115, + sym__quoted_content_i_bar = 116, + sym__quoted_content_i_slash = 117, + sym__quoted_content_single = 118, + sym__quoted_content_double = 119, + sym__quoted_content_heredoc_single = 120, + sym__quoted_content_heredoc_double = 121, + sym__quoted_content_parenthesis = 122, + sym__quoted_content_curly = 123, + sym__quoted_content_square = 124, + sym__quoted_content_angle = 125, + sym__quoted_content_bar = 126, + sym__quoted_content_slash = 127, + sym__keyword_special_literal = 128, + sym__atom_start = 129, + sym__keyword_end = 130, + sym__newline_before_do = 131, + sym__newline_before_binary_op = 132, + sym__newline_before_comment = 133, + sym__before_unary_op = 134, + sym__not_in = 135, + sym_source = 136, + sym__terminator = 137, + sym__expression = 138, + sym_block = 139, + sym__identifier = 140, + sym_identifier = 141, + sym_special_identifier = 142, + sym_alias = 143, + sym_atom = 144, + sym__atom_operator_literal = 145, + sym__atom_special_literal = 146, + sym__quoted_i_double = 147, + sym__quoted_double = 148, + sym__quoted_i_single = 149, + sym__quoted_single = 150, + sym__quoted_i_heredoc_single = 151, + sym__quoted_heredoc_single = 152, + sym__quoted_i_heredoc_double = 153, + sym__quoted_heredoc_double = 154, + sym__quoted_i_parenthesis = 155, + sym__quoted_parenthesis = 156, + sym__quoted_i_curly = 157, + sym__quoted_curly = 158, + sym__quoted_i_square = 159, + sym__quoted_square = 160, + sym__quoted_i_angle = 161, + sym__quoted_angle = 162, + sym__quoted_i_bar = 163, + sym__quoted_bar = 164, + sym__quoted_i_slash = 165, + sym__quoted_slash = 166, + sym_string = 167, + sym_charlist = 168, + sym_interpolation = 169, + sym_sigil = 170, + sym_unary_operator = 171, + sym__capture_expression = 172, + sym_binary_operator = 173, + sym_operator_identifier = 174, + sym_dot = 175, + sym_keywords = 176, + sym_pair = 177, + sym_keyword = 178, + sym_list = 179, + sym_tuple = 180, + sym_bitstring = 181, + sym_map = 182, + sym_struct = 183, + sym_map_content = 184, + sym__items_with_trailing_separator = 185, + sym_boolean = 186, + sym_nil = 187, + sym_call = 188, + sym__parenthesised_call = 189, + sym__call_on_call = 190, + sym__local_call_with_arguments = 191, + sym__parenthesised_local_call_with_arguments = 192, + sym__local_call_without_arguments = 193, + sym__remote_call = 194, + sym__parenthesised_remote_call = 195, + sym__remote_dot = 196, + sym__parenthesised_call_arguments = 197, + sym__anonymous_call = 198, + sym__anonymous_dot = 199, + sym__anonymous_arguments = 200, + sym__call_arguments = 201, + sym_access_call = 202, + sym_do_block = 203, + sym_after_block = 204, + sym_rescue_block = 205, + sym_catch_block = 206, + sym_else_block = 207, + sym_stab_clause = 208, + sym__stab_clause_left = 209, + sym__stab_clause_parentheses_arguments = 210, + sym__stab_clause_parentheses_arguments_with_guard = 211, + sym__stab_clause_arguments_with_guard = 212, + sym__stab_clause_arguments = 213, + sym__stab_clause_arguments_expression = 214, + sym_body = 215, + sym_anonymous_function = 216, + aux_sym_source_repeat1 = 217, + aux_sym__terminator_repeat1 = 218, + aux_sym_block_repeat1 = 219, + aux_sym__quoted_i_double_repeat1 = 220, + aux_sym__quoted_double_repeat1 = 221, + aux_sym__quoted_i_single_repeat1 = 222, + aux_sym__quoted_single_repeat1 = 223, + aux_sym__quoted_i_heredoc_single_repeat1 = 224, + aux_sym__quoted_heredoc_single_repeat1 = 225, + aux_sym__quoted_i_heredoc_double_repeat1 = 226, + aux_sym__quoted_heredoc_double_repeat1 = 227, + aux_sym__quoted_i_parenthesis_repeat1 = 228, + aux_sym__quoted_parenthesis_repeat1 = 229, + aux_sym__quoted_i_curly_repeat1 = 230, + aux_sym__quoted_curly_repeat1 = 231, + aux_sym__quoted_i_square_repeat1 = 232, + aux_sym__quoted_square_repeat1 = 233, + aux_sym__quoted_i_angle_repeat1 = 234, + aux_sym__quoted_angle_repeat1 = 235, + aux_sym__quoted_i_bar_repeat1 = 236, + aux_sym__quoted_bar_repeat1 = 237, + aux_sym__quoted_i_slash_repeat1 = 238, + aux_sym__quoted_slash_repeat1 = 239, + aux_sym_keywords_repeat1 = 240, + aux_sym__items_with_trailing_separator_repeat1 = 241, + aux_sym_do_block_repeat1 = 242, + aux_sym_do_block_repeat2 = 243, + aux_sym_do_block_repeat3 = 244, + aux_sym__stab_clause_arguments_repeat1 = 245, + aux_sym_anonymous_function_repeat1 = 246, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_TODO] = "TODO", + [anon_sym_LF] = "\n", + [anon_sym_SEMI] = ";", + [anon_sym_LPAREN] = "(", + [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_single] = "_alias_single", + [sym__alias_multi] = "_alias_multi", + [sym_integer] = "integer", + [sym_float] = "float", + [sym__atom_word_literal] = "atom_literal", + [anon_sym_DASH_GT] = "->", + [anon_sym_COLON_COLON] = "::", + [anon_sym_PIPE] = "|", + [anon_sym_AMP] = "&", + [anon_sym_EQ] = "=", + [anon_sym_CARET_CARET_CARET] = "^^^", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_STAR_STAR] = "**", + [anon_sym_DOT] = ".", + [anon_sym_AT] = "@", + [anon_sym_LT_DASH] = "<-", + [anon_sym_BSLASH_BSLASH] = "\\\\", + [anon_sym_PIPE_PIPE] = "||", + [anon_sym_PIPE_PIPE_PIPE] = "|||", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_AMP_AMP_AMP] = "&&&", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_EQ_TILDE] = "=~", + [anon_sym_EQ_EQ_EQ] = "===", + [anon_sym_BANG_EQ_EQ] = "!==", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_PIPE_GT] = "|>", + [anon_sym_LT_LT_LT] = "<<<", + [anon_sym_GT_GT_GT] = ">>>", + [anon_sym_LT_LT_TILDE] = "<<~", + [anon_sym_TILDE_GT_GT] = "~>>", + [anon_sym_LT_TILDE] = "<~", + [anon_sym_TILDE_GT] = "~>", + [anon_sym_LT_TILDE_GT] = "<~>", + [anon_sym_LT_PIPE_GT] = "<|>", + [anon_sym_PLUS_PLUS] = "++", + [anon_sym_DASH_DASH] = "--", + [anon_sym_PLUS_PLUS_PLUS] = "+++", + [anon_sym_DASH_DASH_DASH] = "---", + [anon_sym_DOT_DOT] = "..", + [anon_sym_LT_GT] = "<>", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_STAR] = "*", + [anon_sym_SLASH] = "/", + [anon_sym_BANG] = "!", + [anon_sym_CARET] = "^", + [anon_sym_TILDE_TILDE_TILDE] = "~~~", + [anon_sym_PERCENT_LBRACE_RBRACE] = "%{}", + [anon_sym_LBRACE_RBRACE] = "{}", + [anon_sym_PERCENT] = "%", + [anon_sym_LT_LT_GT_GT] = "<<>>", + [anon_sym_DOT_DOT_SLASH_SLASH] = "..//", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = "'''", + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = "\"\"\"", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_POUND_LBRACE] = "#{", + [sym_escape_sequence] = "escape_sequence", + [anon_sym_TILDE] = "~", + [aux_sym_sigil_token1] = "sigil_name", + [aux_sym_sigil_token2] = "sigil_name", + [aux_sym_sigil_token3] = "sigil_modifiers", + [anon_sym_not] = "not", + [anon_sym_when] = "when", + [anon_sym_EQ_GT] = "=>", + [anon_sym_or] = "or", + [anon_sym_and] = "and", + [anon_sym_in] = "in", + [anon_sym_CARET_CARET] = "^^", + [anon_sym_COMMA] = ",", + [anon_sym_true] = "true", + [anon_sym_false] = "false", + [anon_sym_nil] = "nil", + [anon_sym_after] = "after", + [anon_sym_catch] = "catch", + [anon_sym_do] = "do", + [anon_sym_else] = "else", + [anon_sym_end] = "end", + [anon_sym_fn] = "fn", + [anon_sym_rescue] = "rescue", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [sym_char] = "char", + [anon_sym_LPAREN2] = "(", + [anon_sym_LBRACK2] = "[", + [sym_comment] = "comment", + [sym__quoted_content_i_single] = "string_content", + [sym__quoted_content_i_double] = "string_content", + [sym__quoted_content_i_heredoc_single] = "string_content", + [sym__quoted_content_i_heredoc_double] = "string_content", + [sym__quoted_content_i_parenthesis] = "string_content", + [sym__quoted_content_i_curly] = "string_content", + [sym__quoted_content_i_square] = "string_content", + [sym__quoted_content_i_angle] = "string_content", + [sym__quoted_content_i_bar] = "string_content", + [sym__quoted_content_i_slash] = "string_content", + [sym__quoted_content_single] = "string_content", + [sym__quoted_content_double] = "string_content", + [sym__quoted_content_heredoc_single] = "string_content", + [sym__quoted_content_heredoc_double] = "string_content", + [sym__quoted_content_parenthesis] = "string_content", + [sym__quoted_content_curly] = "string_content", + [sym__quoted_content_square] = "string_content", + [sym__quoted_content_angle] = "string_content", + [sym__quoted_content_bar] = "string_content", + [sym__quoted_content_slash] = "string_content", + [sym__keyword_special_literal] = "atom_literal", + [sym__atom_start] = "_atom_start", + [sym__keyword_end] = "_keyword_end", + [sym__newline_before_do] = "_newline_before_do", + [sym__newline_before_binary_op] = "_newline_before_binary_op", + [sym__newline_before_comment] = "_newline_before_comment", + [sym__before_unary_op] = "_before_unary_op", + [sym__not_in] = "_not_in", [sym_source] = "source", + [sym__terminator] = "_terminator", + [sym__expression] = "_expression", + [sym_block] = "block", + [sym__identifier] = "_identifier", + [sym_identifier] = "identifier", + [sym_special_identifier] = "special_identifier", + [sym_alias] = "alias", + [sym_atom] = "atom", + [sym__atom_operator_literal] = "atom_literal", + [sym__atom_special_literal] = "atom_literal", + [sym__quoted_i_double] = "_quoted_i_double", + [sym__quoted_double] = "_quoted_double", + [sym__quoted_i_single] = "_quoted_i_single", + [sym__quoted_single] = "_quoted_single", + [sym__quoted_i_heredoc_single] = "_quoted_i_heredoc_single", + [sym__quoted_heredoc_single] = "_quoted_heredoc_single", + [sym__quoted_i_heredoc_double] = "_quoted_i_heredoc_double", + [sym__quoted_heredoc_double] = "_quoted_heredoc_double", + [sym__quoted_i_parenthesis] = "_quoted_i_parenthesis", + [sym__quoted_parenthesis] = "_quoted_parenthesis", + [sym__quoted_i_curly] = "_quoted_i_curly", + [sym__quoted_curly] = "_quoted_curly", + [sym__quoted_i_square] = "_quoted_i_square", + [sym__quoted_square] = "_quoted_square", + [sym__quoted_i_angle] = "_quoted_i_angle", + [sym__quoted_angle] = "_quoted_angle", + [sym__quoted_i_bar] = "_quoted_i_bar", + [sym__quoted_bar] = "_quoted_bar", + [sym__quoted_i_slash] = "_quoted_i_slash", + [sym__quoted_slash] = "_quoted_slash", + [sym_string] = "string", + [sym_charlist] = "charlist", + [sym_interpolation] = "interpolation", + [sym_sigil] = "sigil", + [sym_unary_operator] = "unary_operator", + [sym__capture_expression] = "_capture_expression", + [sym_binary_operator] = "binary_operator", + [sym_operator_identifier] = "operator_identifier", + [sym_dot] = "dot", + [sym_keywords] = "keywords", + [sym_pair] = "pair", + [sym_keyword] = "keyword", + [sym_list] = "list", + [sym_tuple] = "tuple", + [sym_bitstring] = "bitstring", + [sym_map] = "map", + [sym_struct] = "struct", + [sym_map_content] = "map_content", + [sym__items_with_trailing_separator] = "_items_with_trailing_separator", + [sym_boolean] = "boolean", + [sym_nil] = "nil", + [sym_call] = "call", + [sym__parenthesised_call] = "call", + [sym__call_on_call] = "_call_on_call", + [sym__local_call_with_arguments] = "_local_call_with_arguments", + [sym__parenthesised_local_call_with_arguments] = "_parenthesised_local_call_with_arguments", + [sym__local_call_without_arguments] = "_local_call_without_arguments", + [sym__remote_call] = "_remote_call", + [sym__parenthesised_remote_call] = "_parenthesised_remote_call", + [sym__remote_dot] = "dot", + [sym__parenthesised_call_arguments] = "arguments", + [sym__anonymous_call] = "_anonymous_call", + [sym__anonymous_dot] = "dot", + [sym__anonymous_arguments] = "arguments", + [sym__call_arguments] = "_call_arguments", + [sym_access_call] = "access_call", + [sym_do_block] = "do_block", + [sym_after_block] = "after_block", + [sym_rescue_block] = "rescue_block", + [sym_catch_block] = "catch_block", + [sym_else_block] = "else_block", + [sym_stab_clause] = "stab_clause", + [sym__stab_clause_left] = "_stab_clause_left", + [sym__stab_clause_parentheses_arguments] = "arguments", + [sym__stab_clause_parentheses_arguments_with_guard] = "binary_operator", + [sym__stab_clause_arguments_with_guard] = "binary_operator", + [sym__stab_clause_arguments] = "_stab_clause_arguments", + [sym__stab_clause_arguments_expression] = "_stab_clause_arguments_expression", + [sym_body] = "body", + [sym_anonymous_function] = "anonymous_function", + [aux_sym_source_repeat1] = "source_repeat1", + [aux_sym__terminator_repeat1] = "_terminator_repeat1", + [aux_sym_block_repeat1] = "block_repeat1", + [aux_sym__quoted_i_double_repeat1] = "_quoted_i_double_repeat1", + [aux_sym__quoted_double_repeat1] = "_quoted_double_repeat1", + [aux_sym__quoted_i_single_repeat1] = "_quoted_i_single_repeat1", + [aux_sym__quoted_single_repeat1] = "_quoted_single_repeat1", + [aux_sym__quoted_i_heredoc_single_repeat1] = "_quoted_i_heredoc_single_repeat1", + [aux_sym__quoted_heredoc_single_repeat1] = "_quoted_heredoc_single_repeat1", + [aux_sym__quoted_i_heredoc_double_repeat1] = "_quoted_i_heredoc_double_repeat1", + [aux_sym__quoted_heredoc_double_repeat1] = "_quoted_heredoc_double_repeat1", + [aux_sym__quoted_i_parenthesis_repeat1] = "_quoted_i_parenthesis_repeat1", + [aux_sym__quoted_parenthesis_repeat1] = "_quoted_parenthesis_repeat1", + [aux_sym__quoted_i_curly_repeat1] = "_quoted_i_curly_repeat1", + [aux_sym__quoted_curly_repeat1] = "_quoted_curly_repeat1", + [aux_sym__quoted_i_square_repeat1] = "_quoted_i_square_repeat1", + [aux_sym__quoted_square_repeat1] = "_quoted_square_repeat1", + [aux_sym__quoted_i_angle_repeat1] = "_quoted_i_angle_repeat1", + [aux_sym__quoted_angle_repeat1] = "_quoted_angle_repeat1", + [aux_sym__quoted_i_bar_repeat1] = "_quoted_i_bar_repeat1", + [aux_sym__quoted_bar_repeat1] = "_quoted_bar_repeat1", + [aux_sym__quoted_i_slash_repeat1] = "_quoted_i_slash_repeat1", + [aux_sym__quoted_slash_repeat1] = "_quoted_slash_repeat1", + [aux_sym_keywords_repeat1] = "keywords_repeat1", + [aux_sym__items_with_trailing_separator_repeat1] = "_items_with_trailing_separator_repeat1", + [aux_sym_do_block_repeat1] = "do_block_repeat1", + [aux_sym_do_block_repeat2] = "do_block_repeat2", + [aux_sym_do_block_repeat3] = "do_block_repeat3", + [aux_sym__stab_clause_arguments_repeat1] = "_stab_clause_arguments_repeat1", + [aux_sym_anonymous_function_repeat1] = "anonymous_function_repeat1", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_TODO] = anon_sym_TODO, + [anon_sym_LF] = anon_sym_LF, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [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_single] = sym__alias_single, + [sym__alias_multi] = sym__alias_multi, + [sym_integer] = sym_integer, + [sym_float] = sym_float, + [sym__atom_word_literal] = sym__keyword_special_literal, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_CARET_CARET_CARET] = anon_sym_CARET_CARET_CARET, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_LT_DASH] = anon_sym_LT_DASH, + [anon_sym_BSLASH_BSLASH] = anon_sym_BSLASH_BSLASH, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_PIPE_PIPE_PIPE] = anon_sym_PIPE_PIPE_PIPE, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_AMP_AMP_AMP] = anon_sym_AMP_AMP_AMP, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_EQ_TILDE] = anon_sym_EQ_TILDE, + [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, + [anon_sym_BANG_EQ_EQ] = anon_sym_BANG_EQ_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_PIPE_GT] = anon_sym_PIPE_GT, + [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, + [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, + [anon_sym_LT_LT_TILDE] = anon_sym_LT_LT_TILDE, + [anon_sym_TILDE_GT_GT] = anon_sym_TILDE_GT_GT, + [anon_sym_LT_TILDE] = anon_sym_LT_TILDE, + [anon_sym_TILDE_GT] = anon_sym_TILDE_GT, + [anon_sym_LT_TILDE_GT] = anon_sym_LT_TILDE_GT, + [anon_sym_LT_PIPE_GT] = anon_sym_LT_PIPE_GT, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_PLUS_PLUS_PLUS] = anon_sym_PLUS_PLUS_PLUS, + [anon_sym_DASH_DASH_DASH] = anon_sym_DASH_DASH_DASH, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_TILDE_TILDE_TILDE] = anon_sym_TILDE_TILDE_TILDE, + [anon_sym_PERCENT_LBRACE_RBRACE] = anon_sym_PERCENT_LBRACE_RBRACE, + [anon_sym_LBRACE_RBRACE] = anon_sym_LBRACE_RBRACE, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_LT_LT_GT_GT] = anon_sym_LT_LT_GT_GT, + [anon_sym_DOT_DOT_SLASH_SLASH] = anon_sym_DOT_DOT_SLASH_SLASH, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = anon_sym_SQUOTE_SQUOTE_SQUOTE, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = anon_sym_DQUOTE_DQUOTE_DQUOTE, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_POUND_LBRACE] = anon_sym_POUND_LBRACE, + [sym_escape_sequence] = sym_escape_sequence, + [anon_sym_TILDE] = anon_sym_TILDE, + [aux_sym_sigil_token1] = aux_sym_sigil_token1, + [aux_sym_sigil_token2] = aux_sym_sigil_token1, + [aux_sym_sigil_token3] = aux_sym_sigil_token3, + [anon_sym_not] = anon_sym_not, + [anon_sym_when] = anon_sym_when, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_or] = anon_sym_or, + [anon_sym_and] = anon_sym_and, + [anon_sym_in] = anon_sym_in, + [anon_sym_CARET_CARET] = anon_sym_CARET_CARET, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, + [anon_sym_nil] = anon_sym_nil, + [anon_sym_after] = anon_sym_after, + [anon_sym_catch] = anon_sym_catch, + [anon_sym_do] = anon_sym_do, + [anon_sym_else] = anon_sym_else, + [anon_sym_end] = anon_sym_end, + [anon_sym_fn] = anon_sym_fn, + [anon_sym_rescue] = anon_sym_rescue, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [sym_char] = sym_char, + [anon_sym_LPAREN2] = anon_sym_LPAREN, + [anon_sym_LBRACK2] = anon_sym_LBRACK, + [sym_comment] = sym_comment, + [sym__quoted_content_i_single] = sym__quoted_content_i_single, + [sym__quoted_content_i_double] = sym__quoted_content_i_single, + [sym__quoted_content_i_heredoc_single] = sym__quoted_content_i_single, + [sym__quoted_content_i_heredoc_double] = sym__quoted_content_i_single, + [sym__quoted_content_i_parenthesis] = sym__quoted_content_i_single, + [sym__quoted_content_i_curly] = sym__quoted_content_i_single, + [sym__quoted_content_i_square] = sym__quoted_content_i_single, + [sym__quoted_content_i_angle] = sym__quoted_content_i_single, + [sym__quoted_content_i_bar] = sym__quoted_content_i_single, + [sym__quoted_content_i_slash] = sym__quoted_content_i_single, + [sym__quoted_content_single] = sym__quoted_content_i_single, + [sym__quoted_content_double] = sym__quoted_content_i_single, + [sym__quoted_content_heredoc_single] = sym__quoted_content_i_single, + [sym__quoted_content_heredoc_double] = sym__quoted_content_i_single, + [sym__quoted_content_parenthesis] = sym__quoted_content_i_single, + [sym__quoted_content_curly] = sym__quoted_content_i_single, + [sym__quoted_content_square] = sym__quoted_content_i_single, + [sym__quoted_content_angle] = sym__quoted_content_i_single, + [sym__quoted_content_bar] = sym__quoted_content_i_single, + [sym__quoted_content_slash] = sym__quoted_content_i_single, + [sym__keyword_special_literal] = sym__keyword_special_literal, + [sym__atom_start] = sym__atom_start, + [sym__keyword_end] = sym__keyword_end, + [sym__newline_before_do] = sym__newline_before_do, + [sym__newline_before_binary_op] = sym__newline_before_binary_op, + [sym__newline_before_comment] = sym__newline_before_comment, + [sym__before_unary_op] = sym__before_unary_op, + [sym__not_in] = sym__not_in, [sym_source] = sym_source, + [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_alias] = sym_alias, + [sym_atom] = sym_atom, + [sym__atom_operator_literal] = sym__keyword_special_literal, + [sym__atom_special_literal] = sym__keyword_special_literal, + [sym__quoted_i_double] = sym__quoted_i_double, + [sym__quoted_double] = sym__quoted_double, + [sym__quoted_i_single] = sym__quoted_i_single, + [sym__quoted_single] = sym__quoted_single, + [sym__quoted_i_heredoc_single] = sym__quoted_i_heredoc_single, + [sym__quoted_heredoc_single] = sym__quoted_heredoc_single, + [sym__quoted_i_heredoc_double] = sym__quoted_i_heredoc_double, + [sym__quoted_heredoc_double] = sym__quoted_heredoc_double, + [sym__quoted_i_parenthesis] = sym__quoted_i_parenthesis, + [sym__quoted_parenthesis] = sym__quoted_parenthesis, + [sym__quoted_i_curly] = sym__quoted_i_curly, + [sym__quoted_curly] = sym__quoted_curly, + [sym__quoted_i_square] = sym__quoted_i_square, + [sym__quoted_square] = sym__quoted_square, + [sym__quoted_i_angle] = sym__quoted_i_angle, + [sym__quoted_angle] = sym__quoted_angle, + [sym__quoted_i_bar] = sym__quoted_i_bar, + [sym__quoted_bar] = sym__quoted_bar, + [sym__quoted_i_slash] = sym__quoted_i_slash, + [sym__quoted_slash] = sym__quoted_slash, + [sym_string] = sym_string, + [sym_charlist] = sym_charlist, + [sym_interpolation] = sym_interpolation, + [sym_sigil] = sym_sigil, + [sym_unary_operator] = sym_unary_operator, + [sym__capture_expression] = sym__capture_expression, + [sym_binary_operator] = sym_binary_operator, + [sym_operator_identifier] = sym_operator_identifier, + [sym_dot] = sym_dot, + [sym_keywords] = sym_keywords, + [sym_pair] = sym_pair, + [sym_keyword] = sym_keyword, + [sym_list] = sym_list, + [sym_tuple] = sym_tuple, + [sym_bitstring] = sym_bitstring, + [sym_map] = sym_map, + [sym_struct] = sym_struct, + [sym_map_content] = sym_map_content, + [sym__items_with_trailing_separator] = sym__items_with_trailing_separator, + [sym_boolean] = sym_boolean, + [sym_nil] = sym_nil, + [sym_call] = sym_call, + [sym__parenthesised_call] = sym_call, + [sym__call_on_call] = sym__call_on_call, + [sym__local_call_with_arguments] = sym__local_call_with_arguments, + [sym__parenthesised_local_call_with_arguments] = sym__parenthesised_local_call_with_arguments, + [sym__local_call_without_arguments] = sym__local_call_without_arguments, + [sym__remote_call] = sym__remote_call, + [sym__parenthesised_remote_call] = sym__parenthesised_remote_call, + [sym__remote_dot] = sym_dot, + [sym__parenthesised_call_arguments] = sym__parenthesised_call_arguments, + [sym__anonymous_call] = sym__anonymous_call, + [sym__anonymous_dot] = sym_dot, + [sym__anonymous_arguments] = sym__parenthesised_call_arguments, + [sym__call_arguments] = sym__call_arguments, + [sym_access_call] = sym_access_call, + [sym_do_block] = sym_do_block, + [sym_after_block] = sym_after_block, + [sym_rescue_block] = sym_rescue_block, + [sym_catch_block] = sym_catch_block, + [sym_else_block] = sym_else_block, + [sym_stab_clause] = sym_stab_clause, + [sym__stab_clause_left] = sym__stab_clause_left, + [sym__stab_clause_parentheses_arguments] = sym__parenthesised_call_arguments, + [sym__stab_clause_parentheses_arguments_with_guard] = sym_binary_operator, + [sym__stab_clause_arguments_with_guard] = sym_binary_operator, + [sym__stab_clause_arguments] = sym__stab_clause_arguments, + [sym__stab_clause_arguments_expression] = sym__stab_clause_arguments_expression, + [sym_body] = sym_body, + [sym_anonymous_function] = sym_anonymous_function, + [aux_sym_source_repeat1] = aux_sym_source_repeat1, + [aux_sym__terminator_repeat1] = aux_sym__terminator_repeat1, + [aux_sym_block_repeat1] = aux_sym_block_repeat1, + [aux_sym__quoted_i_double_repeat1] = aux_sym__quoted_i_double_repeat1, + [aux_sym__quoted_double_repeat1] = aux_sym__quoted_double_repeat1, + [aux_sym__quoted_i_single_repeat1] = aux_sym__quoted_i_single_repeat1, + [aux_sym__quoted_single_repeat1] = aux_sym__quoted_single_repeat1, + [aux_sym__quoted_i_heredoc_single_repeat1] = aux_sym__quoted_i_heredoc_single_repeat1, + [aux_sym__quoted_heredoc_single_repeat1] = aux_sym__quoted_heredoc_single_repeat1, + [aux_sym__quoted_i_heredoc_double_repeat1] = aux_sym__quoted_i_heredoc_double_repeat1, + [aux_sym__quoted_heredoc_double_repeat1] = aux_sym__quoted_heredoc_double_repeat1, + [aux_sym__quoted_i_parenthesis_repeat1] = aux_sym__quoted_i_parenthesis_repeat1, + [aux_sym__quoted_parenthesis_repeat1] = aux_sym__quoted_parenthesis_repeat1, + [aux_sym__quoted_i_curly_repeat1] = aux_sym__quoted_i_curly_repeat1, + [aux_sym__quoted_curly_repeat1] = aux_sym__quoted_curly_repeat1, + [aux_sym__quoted_i_square_repeat1] = aux_sym__quoted_i_square_repeat1, + [aux_sym__quoted_square_repeat1] = aux_sym__quoted_square_repeat1, + [aux_sym__quoted_i_angle_repeat1] = aux_sym__quoted_i_angle_repeat1, + [aux_sym__quoted_angle_repeat1] = aux_sym__quoted_angle_repeat1, + [aux_sym__quoted_i_bar_repeat1] = aux_sym__quoted_i_bar_repeat1, + [aux_sym__quoted_bar_repeat1] = aux_sym__quoted_bar_repeat1, + [aux_sym__quoted_i_slash_repeat1] = aux_sym__quoted_i_slash_repeat1, + [aux_sym__quoted_slash_repeat1] = aux_sym__quoted_slash_repeat1, + [aux_sym_keywords_repeat1] = aux_sym_keywords_repeat1, + [aux_sym__items_with_trailing_separator_repeat1] = aux_sym__items_with_trailing_separator_repeat1, + [aux_sym_do_block_repeat1] = aux_sym_do_block_repeat1, + [aux_sym_do_block_repeat2] = aux_sym_do_block_repeat2, + [aux_sym_do_block_repeat3] = aux_sym_do_block_repeat3, + [aux_sym__stab_clause_arguments_repeat1] = aux_sym__stab_clause_arguments_repeat1, + [aux_sym_anonymous_function_repeat1] = aux_sym_anonymous_function_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -38,50 +778,15648 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_TODO] = { + [anon_sym_LF] = { .visible = true, .named = false, }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [aux_sym_identifier_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_DOT_DOT_DOT] = { + .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_single] = { + .visible = false, + .named = true, + }, + [sym__alias_multi] = { + .visible = false, + .named = true, + }, + [sym_integer] = { + .visible = true, + .named = true, + }, + [sym_float] = { + .visible = true, + .named = true, + }, + [sym__atom_word_literal] = { + .visible = true, + .named = true, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_CARET_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASH_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_TILDE_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_PIPE_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_PLUS_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_DASH_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE_TILDE_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_LBRACE_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT_DOT_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_POUND_LBRACE] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [aux_sym_sigil_token1] = { + .visible = true, + .named = true, + }, + [aux_sym_sigil_token2] = { + .visible = true, + .named = true, + }, + [aux_sym_sigil_token3] = { + .visible = true, + .named = true, + }, + [anon_sym_not] = { + .visible = true, + .named = false, + }, + [anon_sym_when] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_true] = { + .visible = true, + .named = false, + }, + [anon_sym_false] = { + .visible = true, + .named = false, + }, + [anon_sym_nil] = { + .visible = true, + .named = false, + }, + [anon_sym_after] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_end] = { + .visible = true, + .named = false, + }, + [anon_sym_fn] = { + .visible = true, + .named = false, + }, + [anon_sym_rescue] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [sym_char] = { + .visible = true, + .named = true, + }, + [anon_sym_LPAREN2] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK2] = { + .visible = true, + .named = false, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_single] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_double] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_heredoc_single] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_heredoc_double] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_parenthesis] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_curly] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_square] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_angle] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_bar] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_i_slash] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_single] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_double] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_heredoc_single] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_heredoc_double] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_parenthesis] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_curly] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_square] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_angle] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_bar] = { + .visible = true, + .named = true, + }, + [sym__quoted_content_slash] = { + .visible = true, + .named = true, + }, + [sym__keyword_special_literal] = { + .visible = true, + .named = true, + }, + [sym__atom_start] = { + .visible = false, + .named = true, + }, + [sym__keyword_end] = { + .visible = false, + .named = true, + }, + [sym__newline_before_do] = { + .visible = false, + .named = true, + }, + [sym__newline_before_binary_op] = { + .visible = false, + .named = true, + }, + [sym__newline_before_comment] = { + .visible = false, + .named = true, + }, + [sym__before_unary_op] = { + .visible = false, + .named = true, + }, + [sym__not_in] = { + .visible = false, + .named = true, + }, [sym_source] = { .visible = true, .named = true, }, + [sym__terminator] = { + .visible = false, + .named = true, + }, + [sym__expression] = { + .visible = false, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym__identifier] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym_special_identifier] = { + .visible = true, + .named = true, + }, + [sym_alias] = { + .visible = true, + .named = true, + }, + [sym_atom] = { + .visible = true, + .named = true, + }, + [sym__atom_operator_literal] = { + .visible = true, + .named = true, + }, + [sym__atom_special_literal] = { + .visible = true, + .named = true, + }, + [sym__quoted_i_double] = { + .visible = false, + .named = true, + }, + [sym__quoted_double] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_single] = { + .visible = false, + .named = true, + }, + [sym__quoted_single] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_heredoc_single] = { + .visible = false, + .named = true, + }, + [sym__quoted_heredoc_single] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_heredoc_double] = { + .visible = false, + .named = true, + }, + [sym__quoted_heredoc_double] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_parenthesis] = { + .visible = false, + .named = true, + }, + [sym__quoted_parenthesis] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_curly] = { + .visible = false, + .named = true, + }, + [sym__quoted_curly] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_square] = { + .visible = false, + .named = true, + }, + [sym__quoted_square] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_angle] = { + .visible = false, + .named = true, + }, + [sym__quoted_angle] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_bar] = { + .visible = false, + .named = true, + }, + [sym__quoted_bar] = { + .visible = false, + .named = true, + }, + [sym__quoted_i_slash] = { + .visible = false, + .named = true, + }, + [sym__quoted_slash] = { + .visible = false, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_charlist] = { + .visible = true, + .named = true, + }, + [sym_interpolation] = { + .visible = true, + .named = true, + }, + [sym_sigil] = { + .visible = true, + .named = true, + }, + [sym_unary_operator] = { + .visible = true, + .named = true, + }, + [sym__capture_expression] = { + .visible = false, + .named = true, + }, + [sym_binary_operator] = { + .visible = true, + .named = true, + }, + [sym_operator_identifier] = { + .visible = true, + .named = true, + }, + [sym_dot] = { + .visible = true, + .named = true, + }, + [sym_keywords] = { + .visible = true, + .named = true, + }, + [sym_pair] = { + .visible = true, + .named = true, + }, + [sym_keyword] = { + .visible = true, + .named = true, + }, + [sym_list] = { + .visible = true, + .named = true, + }, + [sym_tuple] = { + .visible = true, + .named = true, + }, + [sym_bitstring] = { + .visible = true, + .named = true, + }, + [sym_map] = { + .visible = true, + .named = true, + }, + [sym_struct] = { + .visible = true, + .named = true, + }, + [sym_map_content] = { + .visible = true, + .named = true, + }, + [sym__items_with_trailing_separator] = { + .visible = false, + .named = true, + }, + [sym_boolean] = { + .visible = true, + .named = true, + }, + [sym_nil] = { + .visible = true, + .named = true, + }, + [sym_call] = { + .visible = true, + .named = true, + }, + [sym__parenthesised_call] = { + .visible = true, + .named = true, + }, + [sym__call_on_call] = { + .visible = false, + .named = true, + }, + [sym__local_call_with_arguments] = { + .visible = false, + .named = true, + }, + [sym__parenthesised_local_call_with_arguments] = { + .visible = false, + .named = true, + }, + [sym__local_call_without_arguments] = { + .visible = false, + .named = true, + }, + [sym__remote_call] = { + .visible = false, + .named = true, + }, + [sym__parenthesised_remote_call] = { + .visible = false, + .named = true, + }, + [sym__remote_dot] = { + .visible = true, + .named = true, + }, + [sym__parenthesised_call_arguments] = { + .visible = true, + .named = true, + }, + [sym__anonymous_call] = { + .visible = false, + .named = true, + }, + [sym__anonymous_dot] = { + .visible = true, + .named = true, + }, + [sym__anonymous_arguments] = { + .visible = true, + .named = true, + }, + [sym__call_arguments] = { + .visible = false, + .named = true, + }, + [sym_access_call] = { + .visible = true, + .named = true, + }, + [sym_do_block] = { + .visible = true, + .named = true, + }, + [sym_after_block] = { + .visible = true, + .named = true, + }, + [sym_rescue_block] = { + .visible = true, + .named = true, + }, + [sym_catch_block] = { + .visible = true, + .named = true, + }, + [sym_else_block] = { + .visible = true, + .named = true, + }, + [sym_stab_clause] = { + .visible = true, + .named = true, + }, + [sym__stab_clause_left] = { + .visible = false, + .named = true, + }, + [sym__stab_clause_parentheses_arguments] = { + .visible = true, + .named = true, + }, + [sym__stab_clause_parentheses_arguments_with_guard] = { + .visible = true, + .named = true, + }, + [sym__stab_clause_arguments_with_guard] = { + .visible = true, + .named = true, + }, + [sym__stab_clause_arguments] = { + .visible = false, + .named = true, + }, + [sym__stab_clause_arguments_expression] = { + .visible = false, + .named = true, + }, + [sym_body] = { + .visible = true, + .named = true, + }, + [sym_anonymous_function] = { + .visible = true, + .named = true, + }, + [aux_sym_source_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__terminator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_double_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_double_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_single_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_single_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_heredoc_single_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_heredoc_single_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_heredoc_double_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_heredoc_double_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_parenthesis_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_parenthesis_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_curly_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_curly_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_square_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_square_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_angle_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_angle_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_bar_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_bar_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_i_slash_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__quoted_slash_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_keywords_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__items_with_trailing_separator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_do_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_do_block_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_do_block_repeat3] = { + .visible = false, + .named = false, + }, + [aux_sym__stab_clause_arguments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_anonymous_function_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum { + field_left = 1, + field_operator = 2, + field_right = 3, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_left] = "left", + [field_operator] = "operator", + [field_right] = "right", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [2] = {.index = 0, .length = 1}, + [5] = {.index = 1, .length = 1}, + [7] = {.index = 2, .length = 3}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_operator, 0}, + [1] = + {field_operator, 1}, + [2] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, + [1] = { + [0] = sym__parenthesised_call_arguments, + }, + [3] = { + [1] = sym__parenthesised_call_arguments, + }, + [4] = { + [0] = sym_call, + }, + [6] = { + [0] = sym__keyword_special_literal, + }, + [8] = { + [2] = sym_identifier, + }, + [9] = { + [2] = sym_string, + }, + [10] = { + [2] = sym_charlist, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { + sym_identifier, 2, + sym_identifier, + sym__keyword_special_literal, + sym_special_identifier, 2, + sym_special_identifier, + sym__keyword_special_literal, + sym__quoted_i_double, 2, + sym__quoted_i_double, + sym_string, + sym__quoted_i_single, 2, + sym__quoted_i_single, + sym_charlist, + sym__parenthesised_local_call_with_arguments, 2, + sym__parenthesised_local_call_with_arguments, + sym_call, + sym__parenthesised_remote_call, 2, + sym__parenthesised_remote_call, + sym_call, + sym__anonymous_call, 2, + sym__anonymous_call, + sym_call, + sym__call_arguments, 2, + sym__call_arguments, + sym__parenthesised_call_arguments, + sym__stab_clause_arguments, 2, + sym__stab_clause_arguments, + sym__parenthesised_call_arguments, 0, }; +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 <= 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 + ? (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 <= 7915 || (c < 7923 + ? (c < 7919 + ? c == 7917 + : (c <= 7919 || c == 7921)) + : (c <= 7923 || (c < 7927 + ? c == 7925 + : c <= 7927))))))))))) + : (c <= 7929 || (c < 11419 + ? (c < 8472 + ? (c < 8118 + ? (c < 8016 + ? (c < 7952 + ? (c < 7933 + ? c == 7931 + : (c <= 7933 || (c >= 7935 && c <= 7943))) + : (c <= 7957 || (c < 7984 + ? (c >= 7968 && c <= 7975) + : (c <= 7991 || (c >= 8000 && c <= 8005))))) + : (c <= 8023 || (c < 8080 + ? (c < 8048 + ? (c >= 8032 && c <= 8039) + : (c <= 8061 || (c >= 8064 && c <= 8071))) + : (c <= 8087 || (c < 8112 + ? (c >= 8096 && c <= 8103) + : c <= 8116))))) + : (c <= 8119 || (c < 8182 + ? (c < 8144 + ? (c < 8130 + ? c == 8126 + : (c <= 8132 || (c >= 8134 && c <= 8135))) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8151) + : (c <= 8167 || (c >= 8178 && c <= 8180))))) + : (c <= 8183 || (c < 8458 + ? (c < 8319 + ? c == 8305 + : (c <= 8319 || (c >= 8336 && c <= 8348))) + : (c <= 8458 || (c < 8467 + ? (c >= 8462 && c <= 8463) + : c <= 8467))))))) + : (c <= 8472 || (c < 11379 + ? (c < 11312 + ? (c < 8518 + ? (c < 8500 + ? (c >= 8494 && c <= 8495) + : (c <= 8505 || (c >= 8508 && c <= 8509))) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : (c <= 8578 || (c >= 8580 && c <= 8584))))) + : (c <= 11358 || (c < 11370 + ? (c < 11365 + ? c == 11361 + : (c <= 11366 || c == 11368)) + : (c <= 11370 || (c < 11377 + ? c == 11372 + : c <= 11377))))) + : (c <= 11380 || (c < 11405 + ? (c < 11397 + ? (c < 11393 + ? (c >= 11382 && c <= 11389) + : (c <= 11393 || c == 11395)) + : (c <= 11397 || (c < 11401 + ? c == 11399 + : (c <= 11401 || c == 11403)))) + : (c <= 11405 || (c < 11413 + ? (c < 11409 + ? c == 11407 + : (c <= 11409 || c == 11411)) + : (c <= 11413 || (c < 11417 + ? c == 11415 + : c <= 11417))))))))) + : (c <= 11419 || (c < 11479 + ? (c < 11449 + ? (c < 11435 + ? (c < 11427 + ? (c < 11423 + ? c == 11421 + : (c <= 11423 || c == 11425)) + : (c <= 11427 || (c < 11431 + ? c == 11429 + : (c <= 11431 || c == 11433)))) + : (c <= 11435 || (c < 11443 + ? (c < 11439 + ? c == 11437 + : (c <= 11439 || c == 11441)) + : (c <= 11443 || (c < 11447 + ? c == 11445 + : c <= 11447))))) + : (c <= 11449 || (c < 11465 + ? (c < 11457 + ? (c < 11453 + ? c == 11451 + : (c <= 11453 || c == 11455)) + : (c <= 11457 || (c < 11461 + ? c == 11459 + : (c <= 11461 || c == 11463)))) + : (c <= 11465 || (c < 11473 + ? (c < 11469 + ? c == 11467 + : (c <= 11469 || c == 11471)) + : (c <= 11473 || (c < 11477 + ? c == 11475 + : c <= 11477))))))) + : (c <= 11479 || (c < 11648 + ? (c < 11502 + ? (c < 11487 + ? (c < 11483 + ? c == 11481 + : (c <= 11483 || c == 11485)) + : (c <= 11487 || (c < 11491 + ? c == 11489 + : (c <= 11492 || c == 11500)))) + : (c <= 11502 || (c < 11565 + ? (c < 11520 + ? c == 11507 + : (c <= 11557 || c == 11559)) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))))) + : (c <= 11670 || (c < 11728 + ? (c < 11704 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726))) + : (c <= 11734 || (c < 12337 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438))))))))))))) + : (c <= 12447 || (c < 42939 + ? (c < 42795 + ? (c < 42589 + ? (c < 42538 + ? (c < 19903 + ? (c < 12593 + ? (c < 12540 + ? (c >= 12449 && c <= 12538) + : (c <= 12543 || (c >= 12549 && c <= 12591))) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : (c <= 12799 || c == 13312)))) + : (c <= 19903 || (c < 42192 + ? (c < 40956 + ? c == 19968 + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527))))) + : (c <= 42539 || (c < 42575 + ? (c < 42567 + ? (c < 42563 + ? c == 42561 + : (c <= 42563 || c == 42565)) + : (c <= 42567 || (c < 42571 + ? c == 42569 + : (c <= 42571 || c == 42573)))) + : (c <= 42575 || (c < 42583 + ? (c < 42579 + ? c == 42577 + : (c <= 42579 || c == 42581)) + : (c <= 42583 || (c < 42587 + ? c == 42585 + : c <= 42587))))))) + : (c <= 42589 || (c < 42635 + ? (c < 42605 + ? (c < 42597 + ? (c < 42593 + ? c == 42591 + : (c <= 42593 || c == 42595)) + : (c <= 42597 || (c < 42601 + ? c == 42599 + : (c <= 42601 || c == 42603)))) + : (c <= 42606 || (c < 42629 + ? (c < 42625 + ? c == 42623 + : (c <= 42625 || c == 42627)) + : (c <= 42629 || (c < 42633 + ? c == 42631 + : c <= 42633))))) + : (c <= 42635 || (c < 42651 + ? (c < 42643 + ? (c < 42639 + ? c == 42637 + : (c <= 42639 || c == 42641)) + : (c <= 42643 || (c < 42647 + ? c == 42645 + : (c <= 42647 || c == 42649)))) + : (c <= 42653 || (c < 42789 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : (c <= 42783 || c == 42787)) + : (c <= 42789 || (c < 42793 + ? c == 42791 + : c <= 42793))))))))) + : (c <= 42795 || (c < 42857 + ? (c < 42827 + ? (c < 42813 + ? (c < 42805 + ? (c < 42799 + ? c == 42797 + : (c <= 42801 || c == 42803)) + : (c <= 42805 || (c < 42809 + ? c == 42807 + : (c <= 42809 || c == 42811)))) + : (c <= 42813 || (c < 42821 + ? (c < 42817 + ? c == 42815 + : (c <= 42817 || c == 42819)) + : (c <= 42821 || (c < 42825 + ? c == 42823 + : c <= 42825))))) + : (c <= 42827 || (c < 42843 + ? (c < 42835 + ? (c < 42831 + ? c == 42829 + : (c <= 42831 || c == 42833)) + : (c <= 42835 || (c < 42839 + ? c == 42837 + : (c <= 42839 || c == 42841)))) + : (c <= 42843 || (c < 42851 + ? (c < 42847 + ? c == 42845 + : (c <= 42847 || c == 42849)) + : (c <= 42851 || (c < 42855 + ? c == 42853 + : c <= 42855))))))) + : (c <= 42857 || (c < 42903 + ? (c < 42883 + ? (c < 42874 + ? (c < 42861 + ? c == 42859 + : (c <= 42861 || (c >= 42863 && c <= 42872))) + : (c <= 42874 || (c < 42879 + ? c == 42876 + : (c <= 42879 || c == 42881)))) + : (c <= 42883 || (c < 42894 + ? (c < 42887 + ? c == 42885 + : (c <= 42888 || c == 42892)) + : (c <= 42895 || (c < 42899 + ? c == 42897 + : c <= 42901))))) + : (c <= 42903 || (c < 42917 + ? (c < 42911 + ? (c < 42907 + ? c == 42905 + : (c <= 42907 || c == 42909)) + : (c <= 42911 || (c < 42915 + ? c == 42913 + : c <= 42915))) + : (c <= 42917 || (c < 42933 + ? (c < 42921 + ? c == 42919 + : (c <= 42921 || c == 42927)) + : (c <= 42933 || (c < 42937 + ? c == 42935 + : c <= 42937))))))))))) + : (c <= 42939 || (c < 64326 + ? (c < 43701 + ? (c < 43274 + ? (c < 43015 + ? (c < 42952 + ? (c < 42943 + ? c == 42941 + : (c <= 42943 || c == 42947)) + : (c <= 42952 || (c < 42998 + ? c == 42954 + : (c <= 43009 || (c >= 43011 && c <= 43013))))) + : (c <= 43018 || (c < 43250 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43262))))) + : (c <= 43301 || (c < 43520 + ? (c < 43471 + ? (c < 43360 + ? (c >= 43312 && c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))) + : (c <= 43471 || (c < 43494 + ? (c >= 43488 && c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))))) + : (c <= 43560 || (c < 43642 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))) + : (c <= 43642 || (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697))))))) + : (c <= 43702 || (c < 44032 + ? (c < 43785 + ? (c < 43739 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43762 + ? (c >= 43744 && c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44002))))) + : (c <= 44032 || (c < 64285 + ? (c < 63744 + ? (c < 55216 + ? c == 55203 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : (c <= 64262 || (c >= 64275 && c <= 64279))))) + : (c <= 64285 || (c < 64318 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : (c <= 64310 || (c >= 64312 && c <= 64316))) + : (c <= 64318 || (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324))))))))) + : (c <= 64433 || (c < 66600 + ? (c < 65576 + ? (c < 65382 + ? (c < 65008 + ? (c < 64848 + ? (c >= 64467 && c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65019 || (c < 65142 + ? (c >= 65136 && c <= 65140) + : (c <= 65276 || (c >= 65345 && c <= 65370))))) + : (c <= 65470 || (c < 65498 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574))))) + : (c <= 65594 || (c < 66304 + ? (c < 65664 + ? (c < 65599 + ? (c >= 65596 && c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66176 + ? (c >= 65856 && c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))) + : (c <= 66335 || (c < 66464 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))))))) + : (c <= 66717 || (c < 67808 + ? (c < 67592 + ? (c < 67072 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : (c <= 67431 || (c >= 67584 && c <= 67589))))) + : (c <= 67592 || (c < 67647 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : (c <= 67640 || c == 67644)) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68112 + ? (c < 67968 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096))) + : (c <= 68115 || (c < 68224 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68309))))))))))))))))); +} + +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 + ? (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 <= 7915 || (c < 7923 + ? (c < 7919 + ? c == 7917 + : (c <= 7919 || c == 7921)) + : (c <= 7923 || (c < 7927 + ? c == 7925 + : c <= 7927))))))))))) + : (c <= 7929 || (c < 11419 + ? (c < 8472 + ? (c < 8118 + ? (c < 8016 + ? (c < 7952 + ? (c < 7933 + ? c == 7931 + : (c <= 7933 || (c >= 7935 && c <= 7943))) + : (c <= 7957 || (c < 7984 + ? (c >= 7968 && c <= 7975) + : (c <= 7991 || (c >= 8000 && c <= 8005))))) + : (c <= 8023 || (c < 8080 + ? (c < 8048 + ? (c >= 8032 && c <= 8039) + : (c <= 8061 || (c >= 8064 && c <= 8071))) + : (c <= 8087 || (c < 8112 + ? (c >= 8096 && c <= 8103) + : c <= 8116))))) + : (c <= 8119 || (c < 8182 + ? (c < 8144 + ? (c < 8130 + ? c == 8126 + : (c <= 8132 || (c >= 8134 && c <= 8135))) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8151) + : (c <= 8167 || (c >= 8178 && c <= 8180))))) + : (c <= 8183 || (c < 8458 + ? (c < 8319 + ? c == 8305 + : (c <= 8319 || (c >= 8336 && c <= 8348))) + : (c <= 8458 || (c < 8467 + ? (c >= 8462 && c <= 8463) + : c <= 8467))))))) + : (c <= 8472 || (c < 11379 + ? (c < 11312 + ? (c < 8518 + ? (c < 8500 + ? (c >= 8494 && c <= 8495) + : (c <= 8505 || (c >= 8508 && c <= 8509))) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : (c <= 8578 || (c >= 8580 && c <= 8584))))) + : (c <= 11358 || (c < 11370 + ? (c < 11365 + ? c == 11361 + : (c <= 11366 || c == 11368)) + : (c <= 11370 || (c < 11377 + ? c == 11372 + : c <= 11377))))) + : (c <= 11380 || (c < 11405 + ? (c < 11397 + ? (c < 11393 + ? (c >= 11382 && c <= 11389) + : (c <= 11393 || c == 11395)) + : (c <= 11397 || (c < 11401 + ? c == 11399 + : (c <= 11401 || c == 11403)))) + : (c <= 11405 || (c < 11413 + ? (c < 11409 + ? c == 11407 + : (c <= 11409 || c == 11411)) + : (c <= 11413 || (c < 11417 + ? c == 11415 + : c <= 11417))))))))) + : (c <= 11419 || (c < 11479 + ? (c < 11449 + ? (c < 11435 + ? (c < 11427 + ? (c < 11423 + ? c == 11421 + : (c <= 11423 || c == 11425)) + : (c <= 11427 || (c < 11431 + ? c == 11429 + : (c <= 11431 || c == 11433)))) + : (c <= 11435 || (c < 11443 + ? (c < 11439 + ? c == 11437 + : (c <= 11439 || c == 11441)) + : (c <= 11443 || (c < 11447 + ? c == 11445 + : c <= 11447))))) + : (c <= 11449 || (c < 11465 + ? (c < 11457 + ? (c < 11453 + ? c == 11451 + : (c <= 11453 || c == 11455)) + : (c <= 11457 || (c < 11461 + ? c == 11459 + : (c <= 11461 || c == 11463)))) + : (c <= 11465 || (c < 11473 + ? (c < 11469 + ? c == 11467 + : (c <= 11469 || c == 11471)) + : (c <= 11473 || (c < 11477 + ? c == 11475 + : c <= 11477))))))) + : (c <= 11479 || (c < 11648 + ? (c < 11502 + ? (c < 11487 + ? (c < 11483 + ? c == 11481 + : (c <= 11483 || c == 11485)) + : (c <= 11487 || (c < 11491 + ? c == 11489 + : (c <= 11492 || c == 11500)))) + : (c <= 11502 || (c < 11565 + ? (c < 11520 + ? c == 11507 + : (c <= 11557 || c == 11559)) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))))) + : (c <= 11670 || (c < 11728 + ? (c < 11704 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : (c <= 11694 || (c >= 11696 && c <= 11702))) + : (c <= 11710 || (c < 11720 + ? (c >= 11712 && c <= 11718) + : c <= 11726))) + : (c <= 11734 || (c < 12337 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438))))))))))))) + : (c <= 12447 || (c < 42939 + ? (c < 42795 + ? (c < 42589 + ? (c < 42538 + ? (c < 19903 + ? (c < 12593 + ? (c < 12540 + ? (c >= 12449 && c <= 12538) + : (c <= 12543 || (c >= 12549 && c <= 12591))) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : (c <= 12799 || c == 13312)))) + : (c <= 19903 || (c < 42192 + ? (c < 40956 + ? c == 19968 + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527))))) + : (c <= 42539 || (c < 42575 + ? (c < 42567 + ? (c < 42563 + ? c == 42561 + : (c <= 42563 || c == 42565)) + : (c <= 42567 || (c < 42571 + ? c == 42569 + : (c <= 42571 || c == 42573)))) + : (c <= 42575 || (c < 42583 + ? (c < 42579 + ? c == 42577 + : (c <= 42579 || c == 42581)) + : (c <= 42583 || (c < 42587 + ? c == 42585 + : c <= 42587))))))) + : (c <= 42589 || (c < 42635 + ? (c < 42605 + ? (c < 42597 + ? (c < 42593 + ? c == 42591 + : (c <= 42593 || c == 42595)) + : (c <= 42597 || (c < 42601 + ? c == 42599 + : (c <= 42601 || c == 42603)))) + : (c <= 42606 || (c < 42629 + ? (c < 42625 + ? c == 42623 + : (c <= 42625 || c == 42627)) + : (c <= 42629 || (c < 42633 + ? c == 42631 + : c <= 42633))))) + : (c <= 42635 || (c < 42651 + ? (c < 42643 + ? (c < 42639 + ? c == 42637 + : (c <= 42639 || c == 42641)) + : (c <= 42643 || (c < 42647 + ? c == 42645 + : (c <= 42647 || c == 42649)))) + : (c <= 42653 || (c < 42789 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : (c <= 42783 || c == 42787)) + : (c <= 42789 || (c < 42793 + ? c == 42791 + : c <= 42793))))))))) + : (c <= 42795 || (c < 42857 + ? (c < 42827 + ? (c < 42813 + ? (c < 42805 + ? (c < 42799 + ? c == 42797 + : (c <= 42801 || c == 42803)) + : (c <= 42805 || (c < 42809 + ? c == 42807 + : (c <= 42809 || c == 42811)))) + : (c <= 42813 || (c < 42821 + ? (c < 42817 + ? c == 42815 + : (c <= 42817 || c == 42819)) + : (c <= 42821 || (c < 42825 + ? c == 42823 + : c <= 42825))))) + : (c <= 42827 || (c < 42843 + ? (c < 42835 + ? (c < 42831 + ? c == 42829 + : (c <= 42831 || c == 42833)) + : (c <= 42835 || (c < 42839 + ? c == 42837 + : (c <= 42839 || c == 42841)))) + : (c <= 42843 || (c < 42851 + ? (c < 42847 + ? c == 42845 + : (c <= 42847 || c == 42849)) + : (c <= 42851 || (c < 42855 + ? c == 42853 + : c <= 42855))))))) + : (c <= 42857 || (c < 42903 + ? (c < 42883 + ? (c < 42874 + ? (c < 42861 + ? c == 42859 + : (c <= 42861 || (c >= 42863 && c <= 42872))) + : (c <= 42874 || (c < 42879 + ? c == 42876 + : (c <= 42879 || c == 42881)))) + : (c <= 42883 || (c < 42894 + ? (c < 42887 + ? c == 42885 + : (c <= 42888 || c == 42892)) + : (c <= 42895 || (c < 42899 + ? c == 42897 + : c <= 42901))))) + : (c <= 42903 || (c < 42917 + ? (c < 42911 + ? (c < 42907 + ? c == 42905 + : (c <= 42907 || c == 42909)) + : (c <= 42911 || (c < 42915 + ? c == 42913 + : c <= 42915))) + : (c <= 42917 || (c < 42933 + ? (c < 42921 + ? c == 42919 + : (c <= 42921 || c == 42927)) + : (c <= 42933 || (c < 42937 + ? c == 42935 + : c <= 42937))))))))))) + : (c <= 42939 || (c < 64326 + ? (c < 43701 + ? (c < 43274 + ? (c < 43015 + ? (c < 42952 + ? (c < 42943 + ? c == 42941 + : (c <= 42943 || c == 42947)) + : (c <= 42952 || (c < 42998 + ? c == 42954 + : (c <= 43009 || (c >= 43011 && c <= 43013))))) + : (c <= 43018 || (c < 43250 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43262))))) + : (c <= 43301 || (c < 43520 + ? (c < 43471 + ? (c < 43360 + ? (c >= 43312 && c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))) + : (c <= 43471 || (c < 43494 + ? (c >= 43488 && c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))))) + : (c <= 43560 || (c < 43642 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))) + : (c <= 43642 || (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697))))))) + : (c <= 43702 || (c < 44032 + ? (c < 43785 + ? (c < 43739 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43762 + ? (c >= 43744 && c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44002))))) + : (c <= 44032 || (c < 64285 + ? (c < 63744 + ? (c < 55216 + ? c == 55203 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : (c <= 64262 || (c >= 64275 && c <= 64279))))) + : (c <= 64285 || (c < 64318 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : (c <= 64310 || (c >= 64312 && c <= 64316))) + : (c <= 64318 || (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324))))))))) + : (c <= 64433 || (c < 66600 + ? (c < 65576 + ? (c < 65382 + ? (c < 65008 + ? (c < 64848 + ? (c >= 64467 && c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65019 || (c < 65142 + ? (c >= 65136 && c <= 65140) + : (c <= 65276 || (c >= 65345 && c <= 65370))))) + : (c <= 65470 || (c < 65498 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574))))) + : (c <= 65594 || (c < 66304 + ? (c < 65664 + ? (c < 65599 + ? (c >= 65596 && c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66176 + ? (c >= 65856 && c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))) + : (c <= 66335 || (c < 66464 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))))))) + : (c <= 66717 || (c < 67808 + ? (c < 67592 + ? (c < 67072 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : (c <= 67431 || (c >= 67584 && c <= 67589))))) + : (c <= 67592 || (c < 67647 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : (c <= 67640 || c == 67644)) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68112 + ? (c < 67968 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096))) + : (c <= 68115 || (c < 68224 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68309))))))))))))))))); +} + +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 <= 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 + ? (c < 7931 + ? (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 < 7917 + ? (c < 7909 + ? (c < 7905 + ? c == 7903 + : (c <= 7905 || c == 7907)) + : (c <= 7909 || (c < 7913 + ? c == 7911 + : (c <= 7913 || c == 7915)))) + : (c <= 7917 || (c < 7925 + ? (c < 7921 + ? c == 7919 + : (c <= 7921 || c == 7923)) + : (c <= 7925 || (c < 7929 + ? c == 7927 + : c <= 7929))))))))))) + : (c <= 7931 || (c < 11421 + ? (c < 8494 + ? (c < 8126 + ? (c < 8032 + ? (c < 7968 + ? (c < 7935 + ? c == 7933 + : (c <= 7943 || (c >= 7952 && c <= 7957))) + : (c <= 7975 || (c < 8000 + ? (c >= 7984 && c <= 7991) + : (c <= 8005 || (c >= 8016 && c <= 8023))))) + : (c <= 8039 || (c < 8096 + ? (c < 8064 + ? (c >= 8048 && c <= 8061) + : (c <= 8071 || (c >= 8080 && c <= 8087))) + : (c <= 8103 || (c < 8118 + ? (c >= 8112 && c <= 8116) + : c <= 8119))))) + : (c <= 8126 || (c < 8305 + ? (c < 8150 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : (c <= 8135 || (c >= 8144 && c <= 8147))) + : (c <= 8151 || (c < 8178 + ? (c >= 8160 && c <= 8167) + : (c <= 8180 || (c >= 8182 && c <= 8183))))) + : (c <= 8305 || (c < 8462 + ? (c < 8336 + ? c == 8319 + : (c <= 8348 || c == 8458)) + : (c <= 8463 || (c < 8472 + ? c == 8467 + : c <= 8472))))))) + : (c <= 8495 || (c < 11382 + ? (c < 11361 + ? (c < 8526 + ? (c < 8508 + ? (c >= 8500 && c <= 8505) + : (c <= 8509 || (c >= 8518 && c <= 8521))) + : (c <= 8526 || (c < 8580 + ? (c >= 8544 && c <= 8578) + : (c <= 8584 || (c >= 11312 && c <= 11358))))) + : (c <= 11361 || (c < 11372 + ? (c < 11368 + ? (c >= 11365 && c <= 11366) + : (c <= 11368 || c == 11370)) + : (c <= 11372 || (c < 11379 + ? c == 11377 + : c <= 11380))))) + : (c <= 11389 || (c < 11407 + ? (c < 11399 + ? (c < 11395 + ? c == 11393 + : (c <= 11395 || c == 11397)) + : (c <= 11399 || (c < 11403 + ? c == 11401 + : (c <= 11403 || c == 11405)))) + : (c <= 11407 || (c < 11415 + ? (c < 11411 + ? c == 11409 + : (c <= 11411 || c == 11413)) + : (c <= 11415 || (c < 11419 + ? c == 11417 + : c <= 11419))))))))) + : (c <= 11421 || (c < 11481 + ? (c < 11451 + ? (c < 11437 + ? (c < 11429 + ? (c < 11425 + ? c == 11423 + : (c <= 11425 || c == 11427)) + : (c <= 11429 || (c < 11433 + ? c == 11431 + : (c <= 11433 || c == 11435)))) + : (c <= 11437 || (c < 11445 + ? (c < 11441 + ? c == 11439 + : (c <= 11441 || c == 11443)) + : (c <= 11445 || (c < 11449 + ? c == 11447 + : c <= 11449))))) + : (c <= 11451 || (c < 11467 + ? (c < 11459 + ? (c < 11455 + ? c == 11453 + : (c <= 11455 || c == 11457)) + : (c <= 11459 || (c < 11463 + ? c == 11461 + : (c <= 11463 || c == 11465)))) + : (c <= 11467 || (c < 11475 + ? (c < 11471 + ? c == 11469 + : (c <= 11471 || c == 11473)) + : (c <= 11475 || (c < 11479 + ? c == 11477 + : c <= 11479))))))) + : (c <= 11481 || (c < 11680 + ? (c < 11507 + ? (c < 11489 + ? (c < 11485 + ? c == 11483 + : (c <= 11485 || c == 11487)) + : (c <= 11489 || (c < 11500 + ? (c >= 11491 && c <= 11492) + : (c <= 11500 || c == 11502)))) + : (c <= 11507 || (c < 11568 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : (c <= 11559 || c == 11565)) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))))) + : (c <= 11686 || (c < 11736 + ? (c < 11712 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : (c <= 11702 || (c >= 11704 && c <= 11710))) + : (c <= 11718 || (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734))) + : (c <= 11742 || (c < 12337 + ? (c < 12293 + ? c == 11823 + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438))))))))))))) + : (c <= 12447 || (c < 42939 + ? (c < 42795 + ? (c < 42589 + ? (c < 42538 + ? (c < 19903 + ? (c < 12593 + ? (c < 12540 + ? (c >= 12449 && c <= 12538) + : (c <= 12543 || (c >= 12549 && c <= 12591))) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : (c <= 12799 || c == 13312)))) + : (c <= 19903 || (c < 42192 + ? (c < 40956 + ? c == 19968 + : (c <= 40956 || (c >= 40960 && c <= 42124))) + : (c <= 42237 || (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527))))) + : (c <= 42539 || (c < 42575 + ? (c < 42567 + ? (c < 42563 + ? c == 42561 + : (c <= 42563 || c == 42565)) + : (c <= 42567 || (c < 42571 + ? c == 42569 + : (c <= 42571 || c == 42573)))) + : (c <= 42575 || (c < 42583 + ? (c < 42579 + ? c == 42577 + : (c <= 42579 || c == 42581)) + : (c <= 42583 || (c < 42587 + ? c == 42585 + : c <= 42587))))))) + : (c <= 42589 || (c < 42635 + ? (c < 42605 + ? (c < 42597 + ? (c < 42593 + ? c == 42591 + : (c <= 42593 || c == 42595)) + : (c <= 42597 || (c < 42601 + ? c == 42599 + : (c <= 42601 || c == 42603)))) + : (c <= 42606 || (c < 42629 + ? (c < 42625 + ? c == 42623 + : (c <= 42625 || c == 42627)) + : (c <= 42629 || (c < 42633 + ? c == 42631 + : c <= 42633))))) + : (c <= 42635 || (c < 42651 + ? (c < 42643 + ? (c < 42639 + ? c == 42637 + : (c <= 42639 || c == 42641)) + : (c <= 42643 || (c < 42647 + ? c == 42645 + : (c <= 42647 || c == 42649)))) + : (c <= 42653 || (c < 42789 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : (c <= 42783 || c == 42787)) + : (c <= 42789 || (c < 42793 + ? c == 42791 + : c <= 42793))))))))) + : (c <= 42795 || (c < 42857 + ? (c < 42827 + ? (c < 42813 + ? (c < 42805 + ? (c < 42799 + ? c == 42797 + : (c <= 42801 || c == 42803)) + : (c <= 42805 || (c < 42809 + ? c == 42807 + : (c <= 42809 || c == 42811)))) + : (c <= 42813 || (c < 42821 + ? (c < 42817 + ? c == 42815 + : (c <= 42817 || c == 42819)) + : (c <= 42821 || (c < 42825 + ? c == 42823 + : c <= 42825))))) + : (c <= 42827 || (c < 42843 + ? (c < 42835 + ? (c < 42831 + ? c == 42829 + : (c <= 42831 || c == 42833)) + : (c <= 42835 || (c < 42839 + ? c == 42837 + : (c <= 42839 || c == 42841)))) + : (c <= 42843 || (c < 42851 + ? (c < 42847 + ? c == 42845 + : (c <= 42847 || c == 42849)) + : (c <= 42851 || (c < 42855 + ? c == 42853 + : c <= 42855))))))) + : (c <= 42857 || (c < 42903 + ? (c < 42883 + ? (c < 42874 + ? (c < 42861 + ? c == 42859 + : (c <= 42861 || (c >= 42863 && c <= 42872))) + : (c <= 42874 || (c < 42879 + ? c == 42876 + : (c <= 42879 || c == 42881)))) + : (c <= 42883 || (c < 42894 + ? (c < 42887 + ? c == 42885 + : (c <= 42888 || c == 42892)) + : (c <= 42895 || (c < 42899 + ? c == 42897 + : c <= 42901))))) + : (c <= 42903 || (c < 42917 + ? (c < 42911 + ? (c < 42907 + ? c == 42905 + : (c <= 42907 || c == 42909)) + : (c <= 42911 || (c < 42915 + ? c == 42913 + : c <= 42915))) + : (c <= 42917 || (c < 42933 + ? (c < 42921 + ? c == 42919 + : (c <= 42921 || c == 42927)) + : (c <= 42933 || (c < 42937 + ? c == 42935 + : c <= 42937))))))))))) + : (c <= 42939 || (c < 64326 + ? (c < 43701 + ? (c < 43274 + ? (c < 43015 + ? (c < 42952 + ? (c < 42943 + ? c == 42941 + : (c <= 42943 || c == 42947)) + : (c <= 42952 || (c < 42998 + ? c == 42954 + : (c <= 43009 || (c >= 43011 && c <= 43013))))) + : (c <= 43018 || (c < 43250 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43261 + ? c == 43259 + : c <= 43262))))) + : (c <= 43301 || (c < 43520 + ? (c < 43471 + ? (c < 43360 + ? (c >= 43312 && c <= 43334) + : (c <= 43388 || (c >= 43396 && c <= 43442))) + : (c <= 43471 || (c < 43494 + ? (c >= 43488 && c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))))) + : (c <= 43560 || (c < 43642 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))) + : (c <= 43642 || (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697))))))) + : (c <= 43702 || (c < 44032 + ? (c < 43785 + ? (c < 43739 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : (c <= 43712 || c == 43714)) + : (c <= 43741 || (c < 43762 + ? (c >= 43744 && c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44002))))) + : (c <= 44032 || (c < 64285 + ? (c < 63744 + ? (c < 55216 + ? c == 55203 + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64256 + ? (c >= 64112 && c <= 64217) + : (c <= 64262 || (c >= 64275 && c <= 64279))))) + : (c <= 64285 || (c < 64318 + ? (c < 64298 + ? (c >= 64287 && c <= 64296) + : (c <= 64310 || (c >= 64312 && c <= 64316))) + : (c <= 64318 || (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324))))))))) + : (c <= 64433 || (c < 66600 + ? (c < 65576 + ? (c < 65382 + ? (c < 65008 + ? (c < 64848 + ? (c >= 64467 && c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65019 || (c < 65142 + ? (c >= 65136 && c <= 65140) + : (c <= 65276 || (c >= 65345 && c <= 65370))))) + : (c <= 65470 || (c < 65498 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574))))) + : (c <= 65594 || (c < 66304 + ? (c < 65664 + ? (c < 65599 + ? (c >= 65596 && c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66176 + ? (c >= 65856 && c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))) + : (c <= 66335 || (c < 66464 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))))))) + : (c <= 66717 || (c < 67808 + ? (c < 67592 + ? (c < 67072 + ? (c < 66816 + ? (c >= 66776 && c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : (c <= 67431 || (c >= 67584 && c <= 67589))))) + : (c <= 67592 || (c < 67647 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : (c <= 67640 || c == 67644)) + : (c <= 67669 || (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742))))) + : (c <= 67826 || (c < 68112 + ? (c < 67968 + ? (c < 67840 + ? (c >= 67828 && c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096))) + : (c <= 68115 || (c < 68224 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68309))))))))))))))))); +} + +static inline bool aux_sym_identifier_token1_character_set_4(int32_t c) { + return (c < 42946 + ? (c < 3713 + ? (c < 2707 + ? (c < 1984 + ? (c < 931 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c < 170 + ? (c >= 'b' && 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 aux_sym_identifier_token1_character_set_5(int32_t c) { + return (c < 42946 + ? (c < 3713 + ? (c < 2707 + ? (c < 1984 + ? (c < 931 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (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_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__atom_word_literal_character_set_1(int32_t c) { + return (c < 72106 + ? (c < 68448 + ? (c < 8168 + ? (c < 4301 + ? (c < 908 + ? (c < 886 + ? (c < 256 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 222) + : (c <= 590 || (c >= 880 && c <= 882))) + : (c <= 886 || (c < 902 + ? c == 895 + : (c <= 902 || (c >= 904 && c <= 906))))) + : (c <= 908 || (c < 1162 + ? (c < 931 + ? (c >= 910 && c <= 929) + : (c <= 1012 || (c >= 1015 && c <= 1152))) + : (c <= 1326 || (c < 4256 + ? (c >= 1329 && c <= 1366) + : (c <= 4293 || c == 4295)))))) + : (c <= 4301 || (c < 8025 + ? (c < 7680 + ? (c < 7312 + ? (c >= 5024 && c <= 5109) + : (c <= 7354 || (c >= 7357 && c <= 7359))) + : (c <= 7951 || (c < 7976 + ? (c >= 7960 && c <= 7965) + : (c <= 7999 || (c >= 8008 && c <= 8013))))) + : (c <= 8025 || (c < 8072 + ? (c < 8029 + ? c == 8027 + : (c <= 8029 || (c >= 8031 && c <= 8047))) + : (c <= 8111 || (c < 8136 + ? (c >= 8120 && c <= 8124) + : (c <= 8140 || (c >= 8152 && c <= 8155))))))))) + : (c <= 8172 || (c < 11506 + ? (c < 8488 + ? (c < 8469 + ? (c < 8455 + ? (c < 8450 + ? (c >= 8184 && c <= 8188) + : c <= 8450) + : (c <= 8455 || (c >= 8459 && c <= 8466))) + : (c <= 8469 || (c < 8484 + ? (c >= 8473 && c <= 8477) + : (c <= 8484 || c == 8486)))) + : (c <= 8488 || (c < 8579 + ? (c < 8510 + ? (c >= 8490 && c <= 8499) + : (c <= 8511 || c == 8517)) + : (c <= 8579 || (c < 11360 + ? (c >= 11264 && c <= 11310) + : (c <= 11490 || (c >= 11499 && c <= 11501))))))) + : (c <= 11506 || (c < 42997 + ? (c < 42624 + ? (c < 19969 + ? (c >= 13313 && c <= 19902) + : (c <= 40955 || (c >= 42560 && c <= 42604))) + : (c <= 42650 || (c < 42891 + ? (c >= 42786 && c <= 42886) + : (c <= 42942 || (c >= 42946 && c <= 42953))))) + : (c <= 42997 || (c < 66736 + ? (c < 65313 + ? (c >= 44033 && c <= 55202) + : (c <= 65338 || (c >= 66560 && c <= 66599))) + : (c <= 66771 || (c < 68352 + ? (c >= 68310 && c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))))))))))) + : (c <= 68466 || (c < 70405 + ? (c < 69956 + ? (c < 69415 + ? (c < 68864 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))) + : (c <= 68899 || (c < 69296 + ? (c >= 69248 && c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))))) + : (c <= 69415 || (c < 69635 + ? (c < 69552 + ? (c >= 69424 && c <= 69445) + : (c <= 69572 || (c >= 69600 && c <= 69622))) + : (c <= 69687 || (c < 69840 + ? (c >= 69763 && c <= 69807) + : (c <= 69864 || (c >= 69891 && c <= 69926))))))) + : (c <= 69956 || (c < 70144 + ? (c < 70019 + ? (c < 69968 + ? c == 69959 + : (c <= 70002 || c == 70006)) + : (c <= 70066 || (c < 70106 + ? (c >= 70081 && c <= 70084) + : (c <= 70106 || c == 70108)))) + : (c <= 70161 || (c < 70282 + ? (c < 70272 + ? (c >= 70163 && c <= 70187) + : (c <= 70278 || c == 70280)) + : (c <= 70285 || (c < 70303 + ? (c >= 70287 && c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))))))) + : (c <= 70412 || (c < 71128 + ? (c < 70493 + ? (c < 70450 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : (c <= 70440 || (c >= 70442 && c <= 70448))) + : (c <= 70451 || (c < 70461 + ? (c >= 70453 && c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70784 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 70855 + ? (c >= 70852 && c <= 70853) + : (c <= 70855 || (c >= 71040 && c <= 71086))))))) + : (c <= 71131 || (c < 71935 + ? (c < 71352 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : (c <= 71236 || (c >= 71296 && c <= 71338))) + : (c <= 71352 || (c < 71680 + ? (c >= 71424 && c <= 71450) + : (c <= 71723 || (c >= 71840 && c <= 71903))))) + : (c <= 71942 || (c < 71960 + ? (c < 71948 + ? c == 71945 + : (c <= 71955 || (c >= 71957 && c <= 71958))) + : (c <= 71983 || (c < 72001 + ? c == 71999 + : (c <= 72001 || (c >= 72096 && c <= 72103))))))))))))) + : (c <= 72144 || (c < 120086 + ? (c < 92992 + ? (c < 73030 + ? (c < 72384 + ? (c < 72250 + ? (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))) + : (c <= 72250 || (c < 72284 + ? c == 72272 + : (c <= 72329 || c == 72349)))) + : (c <= 72440 || (c < 72818 + ? (c < 72714 + ? (c >= 72704 && c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72968 + ? (c >= 72960 && c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))))) + : (c <= 73030 || (c < 74752 + ? (c < 73112 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : (c <= 73648 || (c >= 73728 && c <= 74649))))) + : (c <= 74862 || (c < 92160 + ? (c < 77824 + ? (c >= 74880 && c <= 75075) + : (c <= 78894 || (c >= 82944 && c <= 83526))) + : (c <= 92728 || (c < 92880 + ? (c >= 92736 && c <= 92766) + : (c <= 92909 || (c >= 92928 && c <= 92975))))))))) + : (c <= 92995 || (c < 113664 + ? (c < 94179 + ? (c < 93952 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94099 + ? c == 94032 + : (c <= 94111 || (c >= 94176 && c <= 94177))))) + : (c <= 94179 || (c < 110592 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : (c <= 101589 || (c >= 101632 && c <= 101640))) + : (c <= 110878 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))))))) + : (c <= 113770 || (c < 119973 + ? (c < 119808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : (c <= 113800 || (c >= 113808 && c <= 113817))) + : (c <= 119892 || (c < 119966 + ? (c >= 119894 && c <= 119964) + : (c <= 119967 || c == 119970)))) + : (c <= 119974 || (c < 119997 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : (c <= 119993 || c == 119995)) + : (c <= 120003 || (c < 120071 + ? (c >= 120005 && c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))))))))) + : (c <= 120092 || (c < 126523 + ? (c < 120772 + ? (c < 120540 + ? (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : (c <= 120512 || (c >= 120514 && c <= 120538))))) + : (c <= 120570 || (c < 120656 + ? (c < 120598 + ? (c >= 120572 && c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))))) + : (c <= 120779 || (c < 126464 + ? (c < 123584 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : (c <= 123197 || c == 123214)) + : (c <= 123627 || (c < 125184 + ? (c >= 124928 && c <= 125124) + : (c <= 125251 || c == 125259)))) + : (c <= 126467 || (c < 126503 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : (c <= 126498 || c == 126500)) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : (c <= 126519 || c == 126521)))))))) + : (c <= 126523 || (c < 126572 + ? (c < 126551 + ? (c < 126539 + ? (c < 126535 + ? c == 126530 + : (c <= 126535 || c == 126537)) + : (c <= 126539 || (c < 126545 + ? (c >= 126541 && c <= 126543) + : (c <= 126546 || c == 126548)))) + : (c <= 126551 || (c < 126559 + ? (c < 126555 + ? c == 126553 + : (c <= 126555 || c == 126557)) + : (c <= 126559 || (c < 126564 + ? (c >= 126561 && c <= 126562) + : (c <= 126564 || (c >= 126567 && c <= 126570))))))) + : (c <= 126578 || (c < 126635 + ? (c < 126592 + ? (c < 126585 + ? (c >= 126580 && c <= 126583) + : (c <= 126588 || c == 126590)) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : (c <= 126627 || (c >= 126629 && c <= 126633))))) + : (c <= 126651 || (c < 178208 + ? (c < 173824 + ? (c >= 131072 && c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))); +} + +static inline bool sym__atom_word_literal_character_set_2(int32_t c) { + return (c < 42946 + ? (c < 3904 + ? (c < 2654 + ? (c < 1810 + ? (c < 908 + ? (c < 710 + ? (c < 181 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c >= 248 && c <= 705))))) + : (c <= 721 || (c < 886 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c >= 880 && c <= 884))) + : (c <= 887 || (c < 902 + ? (c < 895 + ? (c >= 890 && c <= 893) + : c <= 895) + : (c <= 902 || (c >= 904 && c <= 906))))))) + : (c <= 908 || (c < 1568 + ? (c < 1329 + ? (c < 1015 + ? (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013) + : (c <= 1153 || (c >= 1162 && c <= 1327))) + : (c <= 1366 || (c < 1488 + ? (c < 1376 + ? c == 1369 + : c <= 1416) + : (c <= 1514 || (c >= 1519 && c <= 1522))))) + : (c <= 1610 || (c < 1774 + ? (c < 1749 + ? (c < 1649 + ? (c >= 1646 && c <= 1647) + : c <= 1747) + : (c <= 1749 || (c >= 1765 && c <= 1766))) + : (c <= 1775 || (c < 1791 + ? (c >= 1786 && c <= 1788) + : (c <= 1791 || c == 1808)))))))) + : (c <= 1839 || (c < 2447 + ? (c < 2112 + ? (c < 2042 + ? (c < 1994 + ? (c < 1969 + ? (c >= 1869 && c <= 1957) + : c <= 1969) + : (c <= 2026 || (c >= 2036 && c <= 2037))) + : (c <= 2042 || (c < 2084 + ? (c < 2074 + ? (c >= 2048 && c <= 2069) + : c <= 2074) + : (c <= 2084 || c == 2088)))) + : (c <= 2136 || (c < 2365 + ? (c < 2230 + ? (c < 2208 + ? (c >= 2144 && c <= 2154) + : c <= 2228) + : (c <= 2247 || (c >= 2308 && c <= 2361))) + : (c <= 2365 || (c < 2417 + ? (c < 2392 + ? c == 2384 + : c <= 2401) + : (c <= 2432 || (c >= 2437 && c <= 2444))))))) + : (c <= 2448 || (c < 2556 + ? (c < 2493 + ? (c < 2482 + ? (c < 2474 + ? (c >= 2451 && c <= 2472) + : c <= 2480) + : (c <= 2482 || (c >= 2486 && c <= 2489))) + : (c <= 2493 || (c < 2527 + ? (c < 2524 + ? c == 2510 + : c <= 2525) + : (c <= 2529 || (c >= 2544 && c <= 2545))))) + : (c <= 2556 || (c < 2610 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c >= 2602 && c <= 2608))) + : (c <= 2611 || (c < 2616 + ? (c >= 2613 && c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))))))))))) + : (c <= 2654 || (c < 3168 + ? (c < 2911 + ? (c < 2784 + ? (c < 2730 + ? (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))) + : (c <= 2736 || (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || c == 2768)))) + : (c <= 2785 || (c < 2858 + ? (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))) + : (c <= 2864 || (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))))))) + : (c <= 2913 || (c < 2984 + ? (c < 2962 + ? (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))) + : (c <= 2965 || (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))))) + : (c <= 2986 || (c < 3090 + ? (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : 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 < 3482 + ? (c < 3313 + ? (c < 3242 + ? (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))) + : (c <= 3251 || (c < 3294 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c >= 3296 && c <= 3297))))) + : (c <= 3314 || (c < 3406 + ? (c < 3346 + ? (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344) + : (c <= 3386 || c == 3389)) + : (c <= 3406 || (c < 3450 + ? (c < 3423 + ? (c >= 3412 && c <= 3414) + : c <= 3425) + : (c <= 3455 || (c >= 3461 && c <= 3478))))))) + : (c <= 3505 || (c < 3724 + ? (c < 3634 + ? (c < 3520 + ? (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517) + : (c <= 3526 || (c >= 3585 && c <= 3632))) + : (c <= 3635 || (c < 3716 + ? (c < 3713 + ? (c >= 3648 && c <= 3654) + : c <= 3714) + : (c <= 3716 || (c >= 3718 && c <= 3722))))) + : (c <= 3747 || (c < 3776 + ? (c < 3762 + ? (c < 3751 + ? c == 3749 + : c <= 3760) + : (c <= 3763 || c == 3773)) + : (c <= 3780 || (c < 3804 + ? c == 3782 + : (c <= 3807 || c == 3840)))))))))))) + : (c <= 3911 || (c < 7960 + ? (c < 5870 + ? (c < 4698 + ? (c < 4213 + ? (c < 4176 + ? (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)) + : (c <= 4181 || (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c >= 4206 && c <= 4208))))) + : (c <= 4225 || (c < 4304 + ? (c < 4295 + ? (c < 4256 + ? c == 4238 + : c <= 4293) + : (c <= 4295 || c == 4301)) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))))) + : (c <= 4701 || (c < 4882 + ? (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))) + : (c <= 4885 || (c < 5121 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c >= 5112 && c <= 5117))) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : (c <= 5786 || (c >= 5792 && c <= 5866))))))))) + : (c <= 5880 || (c < 6688 + ? (c < 6176 + ? (c < 5984 + ? (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))) + : (c <= 6264 || (c < 6480 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c >= 6400 && c <= 6430))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c >= 6656 && c <= 6678))))))) + : (c <= 6740 || (c < 7296 + ? (c < 7086 + ? (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6987 || (c >= 7043 && c <= 7072))) + : (c <= 7087 || (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))))) + : (c <= 7304 || (c < 7413 + ? (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c >= 7406 && c <= 7411))) + : (c <= 7414 || (c < 7424 + ? c == 7418 + : (c <= 7615 || (c >= 7680 && c <= 7957))))))))))) + : (c <= 7965 || (c < 11520 + ? (c < 8336 + ? (c < 8126 + ? (c < 8027 + ? (c < 8016 + ? (c < 8008 + ? (c >= 7968 && c <= 8005) + : c <= 8013) + : (c <= 8023 || c == 8025)) + : (c <= 8027 || (c < 8064 + ? (c < 8031 + ? c == 8029 + : c <= 8061) + : (c <= 8116 || (c >= 8118 && c <= 8124))))) + : (c <= 8126 || (c < 8160 + ? (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c >= 8150 && c <= 8155))) + : (c <= 8172 || (c < 8305 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8305 || c == 8319)))))) + : (c <= 8348 || (c < 8508 + ? (c < 8472 + ? (c < 8458 + ? (c < 8455 + ? c == 8450 + : c <= 8455) + : (c <= 8467 || c == 8469)) + : (c <= 8477 || (c < 8488 + ? (c < 8486 + ? c == 8484 + : c <= 8486) + : (c <= 8488 || (c >= 8490 && c <= 8505))))) + : (c <= 8511 || (c < 11312 + ? (c < 8544 + ? (c < 8526 + ? (c >= 8517 && c <= 8521) + : c <= 8526) + : (c <= 8584 || (c >= 11264 && c <= 11310))) + : (c <= 11358 || (c < 11499 + ? (c >= 11360 && c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))))) + : (c <= 11557 || (c < 12449 + ? (c < 11712 + ? (c < 11648 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || c == 11631)) + : (c <= 11670 || (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c >= 11704 && c <= 11710))))) + : (c <= 11718 || (c < 12321 + ? (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c >= 12293 && c <= 12295))) + : (c <= 12329 || (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c >= 12443 && c <= 12447))))))) + : (c <= 12538 || (c < 42240 + ? (c < 12784 + ? (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c >= 12704 && c <= 12735))) + : (c <= 12799 || (c < 40960 + ? (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 40956) + : (c <= 42124 || (c >= 42192 && c <= 42237))))) + : (c <= 42508 || (c < 42656 + ? (c < 42560 + ? (c < 42538 + ? (c >= 42512 && c <= 42527) + : c <= 42539) + : (c <= 42606 || (c >= 42623 && c <= 42653))) + : (c <= 42735 || (c < 42786 + ? (c >= 42775 && c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42943))))))))))))))) + : (c <= 42954 || (c < 70461 + ? (c < 66304 + ? (c < 43888 + ? (c < 43588 + ? (c < 43274 + ? (c < 43072 + ? (c < 43015 + ? (c < 43011 + ? (c >= 42997 && c <= 43009) + : c <= 43013) + : (c <= 43018 || (c >= 43020 && c <= 43042))) + : (c <= 43123 || (c < 43259 + ? (c < 43250 + ? (c >= 43138 && c <= 43187) + : c <= 43255) + : (c <= 43259 || (c >= 43261 && c <= 43262))))) + : (c <= 43301 || (c < 43488 + ? (c < 43396 + ? (c < 43360 + ? (c >= 43312 && c <= 43334) + : c <= 43388) + : (c <= 43442 || c == 43471)) + : (c <= 43492 || (c < 43520 + ? (c < 43514 + ? (c >= 43494 && c <= 43503) + : c <= 43518) + : (c <= 43560 || (c >= 43584 && c <= 43586))))))) + : (c <= 43595 || (c < 43744 + ? (c < 43701 + ? (c < 43646 + ? (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642) + : (c <= 43695 || c == 43697)) + : (c <= 43702 || (c < 43714 + ? (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712) + : (c <= 43714 || (c >= 43739 && c <= 43741))))) + : (c <= 43754 || (c < 43808 + ? (c < 43785 + ? (c < 43777 + ? (c >= 43762 && c <= 43764) + : c <= 43782) + : (c <= 43790 || (c >= 43793 && c <= 43798))) + : (c <= 43814 || (c < 43824 + ? (c >= 43816 && c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))))))))) + : (c <= 44002 || (c < 65136 + ? (c < 64298 + ? (c < 64112 + ? (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))) + : (c <= 64217 || (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))))) + : (c <= 64310 || (c < 64326 + ? (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))) + : (c <= 64433 || (c < 64914 + ? (c < 64848 + ? (c >= 64467 && c <= 64829) + : c <= 64911) + : (c <= 64967 || (c >= 65008 && c <= 65019))))))) + : (c <= 65140 || (c < 65549 + ? (c < 65474 + ? (c < 65345 + ? (c < 65313 + ? (c >= 65142 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c >= 65382 && c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))) + : (c <= 65574 || (c < 65664 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66176 + ? (c >= 65856 && c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))))))) + : (c <= 66335 || (c < 68448 + ? (c < 67647 + ? (c < 66816 + ? (c < 66504 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c >= 66464 && c <= 66499))) + : (c <= 66511 || (c < 66736 + ? (c < 66560 + ? (c >= 66513 && c <= 66517) + : c <= 66717) + : (c <= 66771 || (c >= 66776 && c <= 66811))))) + : (c <= 66855 || (c < 67584 + ? (c < 67392 + ? (c < 67072 + ? (c >= 66864 && c <= 66915) + : c <= 67382) + : (c <= 67413 || (c >= 67424 && c <= 67431))) + : (c <= 67589 || (c < 67639 + ? (c < 67594 + ? c == 67592 + : c <= 67637) + : (c <= 67640 || c == 67644)))))) + : (c <= 67669 || (c < 68112 + ? (c < 67840 + ? (c < 67808 + ? (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742) + : (c <= 67826 || (c >= 67828 && c <= 67829))) + : (c <= 67861 || (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || c == 68096)))) + : (c <= 68115 || (c < 68288 + ? (c < 68192 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68220 || (c >= 68224 && c <= 68252))) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))))))))) + : (c <= 68466 || (c < 70006 + ? (c < 69424 + ? (c < 68864 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))) + : (c <= 68899 || (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || c == 69415)))) + : (c <= 69445 || (c < 69840 + ? (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69763 && c <= 69807))) + : (c <= 69864 || (c < 69959 + ? (c < 69956 + ? (c >= 69891 && c <= 69926) + : c <= 69956) + : (c <= 69959 || (c >= 69968 && c <= 70002))))))) + : (c <= 70006 || (c < 70287 + ? (c < 70144 + ? (c < 70106 + ? (c < 70081 + ? (c >= 70019 && c <= 70066) + : c <= 70084) + : (c <= 70106 || c == 70108)) + : (c <= 70161 || (c < 70280 + ? (c < 70272 + ? (c >= 70163 && c <= 70187) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))) + : (c <= 70301 || (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70450 + ? (c >= 70442 && c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))))))))))))) + : (c <= 70461 || (c < 113808 + ? (c < 72818 + ? (c < 71948 + ? (c < 71128 + ? (c < 70751 + ? (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))) + : (c <= 70753 || (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c >= 71040 && c <= 71086))))) + : (c <= 71131 || (c < 71424 + ? (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)) + : (c <= 71450 || (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)))))) + : (c <= 71955 || (c < 72203 + ? (c < 72096 + ? (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)) + : (c <= 72103 || (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)))) + : (c <= 72242 || (c < 72384 + ? (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || c == 72349)) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : (c <= 72750 || c == 72768)))))))) + : (c <= 72847 || (c < 92992 + ? (c < 73648 + ? (c < 73056 + ? (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)) + : (c <= 73061 || (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c >= 73440 && c <= 73458))))) + : (c <= 73648 || (c < 82944 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92880 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92909 || (c >= 92928 && c <= 92975))))))) + : (c <= 92995 || (c < 100352 + ? (c < 94032 + ? (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))) + : (c <= 94032 || (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))))) + : (c <= 101589 || (c < 110960 + ? (c < 110928 + ? (c < 110592 + ? (c >= 101632 && c <= 101640) + : c <= 110878) + : (c <= 110930 || (c >= 110948 && c <= 110951))) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))))))))))) + : (c <= 113817 || (c < 126469 + ? (c < 120488 + ? (c < 120005 + ? (c < 119973 + ? (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)) + : (c <= 119974 || (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c >= 119997 && c <= 120003))))) + : (c <= 120069 || (c < 120123 + ? (c < 120086 + ? (c < 120077 + ? (c >= 120071 && c <= 120074) + : c <= 120084) + : (c <= 120092 || (c >= 120094 && c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c >= 120146 && c <= 120485))))))) + : (c <= 120512 || (c < 120772 + ? (c < 120630 + ? (c < 120572 + ? (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570) + : (c <= 120596 || (c >= 120598 && c <= 120628))) + : (c <= 120654 || (c < 120714 + ? (c < 120688 + ? (c >= 120656 && c <= 120686) + : c <= 120712) + : (c <= 120744 || (c >= 120746 && c <= 120770))))) + : (c <= 120779 || (c < 124928 + ? (c < 123214 + ? (c < 123191 + ? (c >= 123136 && c <= 123180) + : c <= 123197) + : (c <= 123214 || (c >= 123584 && c <= 123627))) + : (c <= 125124 || (c < 125259 + ? (c >= 125184 && c <= 125251) + : (c <= 125259 || (c >= 126464 && c <= 126467))))))))) + : (c <= 126495 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c >= 126505 && c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173789) + : (c <= 177972 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 194560 + ? (c >= 183984 && c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym__atom_word_literal_character_set_3(int32_t c) { + return (c < 42997 + ? (c < 3718 + ? (c < 2738 + ? (c < 2048 + ? (c < 1162 + ? (c < 750 + ? (c < 192 + ? (c < 181 + ? (c < 170 + ? c == '@' + : c <= 170) + : (c <= 181 || (c < 186 + ? c == 183 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748))))) + : (c <= 750 || (c < 908 + ? (c < 890 + ? (c < 886 + ? (c >= 768 && c <= 884) + : c <= 887) + : (c <= 893 || (c < 902 + ? c == 895 + : c <= 906))) + : (c <= 908 || (c < 1015 + ? (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013) + : (c <= 1153 || (c >= 1155 && c <= 1159))))))) + : (c <= 1327 || (c < 1568 + ? (c < 1473 + ? (c < 1376 + ? (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369) + : (c <= 1416 || (c < 1471 + ? (c >= 1425 && c <= 1469) + : c <= 1471))) + : (c <= 1474 || (c < 1488 + ? (c < 1479 + ? (c >= 1476 && c <= 1477) + : c <= 1479) + : (c <= 1514 || (c < 1552 + ? (c >= 1519 && c <= 1522) + : c <= 1562))))) + : (c <= 1641 || (c < 1808 + ? (c < 1759 + ? (c < 1749 + ? (c >= 1646 && c <= 1747) + : c <= 1756) + : (c <= 1768 || (c < 1791 + ? (c >= 1770 && c <= 1788) + : c <= 1791))) + : (c <= 1866 || (c < 2042 + ? (c < 1984 + ? (c >= 1869 && c <= 1969) + : c <= 2037) + : (c <= 2042 || c == 2045)))))))) + : (c <= 2093 || (c < 2558 + ? (c < 2474 + ? (c < 2275 + ? (c < 2208 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2228 || (c < 2259 + ? (c >= 2230 && c <= 2247) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || c == 2556)))))) + : (c <= 2558 || (c < 2631 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c >= 2622 && c <= 2626))))) + : (c <= 2632 || (c < 2689 + ? (c < 2649 + ? (c < 2641 + ? (c >= 2635 && c <= 2637) + : c <= 2641) + : (c <= 2652 || (c < 2662 + ? c == 2654 + : c <= 2677))) + : (c <= 2691 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3146 + ? (c < 2929 + ? (c < 2835 + ? (c < 2784 + ? (c < 2759 + ? (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757) + : (c <= 2761 || (c < 2768 + ? (c >= 2763 && c <= 2765) + : c <= 2768))) + : (c <= 2787 || (c < 2817 + ? (c < 2809 + ? (c >= 2790 && c <= 2799) + : c <= 2815) + : (c <= 2819 || (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832))))) + : (c <= 2856 || (c < 2891 + ? (c < 2869 + ? (c < 2866 + ? (c >= 2858 && c <= 2864) + : c <= 2867) + : (c <= 2873 || (c < 2887 + ? (c >= 2876 && c <= 2884) + : c <= 2888))) + : (c <= 2893 || (c < 2911 + ? (c < 2908 + ? (c >= 2901 && c <= 2903) + : c <= 2909) + : (c <= 2915 || (c >= 2918 && c <= 2927))))))) + : (c <= 2929 || (c < 3014 + ? (c < 2972 + ? (c < 2958 + ? (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954) + : (c <= 2960 || (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970))) + : (c <= 2972 || (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010))))) + : (c <= 3016 || (c < 3086 + ? (c < 3031 + ? (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024) + : (c <= 3031 || (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084))) + : (c <= 3088 || (c < 3133 + ? (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129) + : (c <= 3140 || (c >= 3142 && c <= 3144))))))))) + : (c <= 3149 || (c < 3402 + ? (c < 3270 + ? (c < 3205 + ? (c < 3168 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3171 || (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203))) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268))))) + : (c <= 3272 || (c < 3313 + ? (c < 3294 + ? (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286) + : (c <= 3294 || (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311))) + : (c <= 3314 || (c < 3346 + ? (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344) + : (c <= 3396 || (c >= 3398 && c <= 3400))))))) + : (c <= 3406 || (c < 3530 + ? (c < 3461 + ? (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))) + : (c <= 3478 || (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c >= 3520 && c <= 3526))))) + : (c <= 3530 || (c < 3585 + ? (c < 3544 + ? (c < 3542 + ? (c >= 3535 && c <= 3540) + : c <= 3542) + : (c <= 3551 || (c < 3570 + ? (c >= 3558 && c <= 3567) + : c <= 3571))) + : (c <= 3642 || (c < 3713 + ? (c < 3664 + ? (c >= 3648 && c <= 3662) + : c <= 3673) + : (c <= 3714 || c == 3716)))))))))))) + : (c <= 3722 || (c < 7245 + ? (c < 5024 + ? (c < 4256 + ? (c < 3893 + ? (c < 3784 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782))) + : (c <= 3789 || (c < 3840 + ? (c < 3804 + ? (c >= 3792 && c <= 3801) + : c <= 3807) + : (c <= 3840 || (c < 3872 + ? (c >= 3864 && c <= 3865) + : c <= 3881))))) + : (c <= 3893 || (c < 3974 + ? (c < 3902 + ? (c < 3897 + ? c == 3895 + : c <= 3897) + : (c <= 3911 || (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972))) + : (c <= 3991 || (c < 4096 + ? (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038) + : (c <= 4169 || (c >= 4176 && c <= 4253))))))) + : (c <= 4293 || (c < 4786 + ? (c < 4688 + ? (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))) + : (c <= 4694 || (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))))) + : (c <= 4789 || (c < 4882 + ? (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))) + : (c <= 4885 || (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c >= 4992 && c <= 5007))))))))) + : (c <= 5109 || (c < 6400 + ? (c < 5998 + ? (c < 5870 + ? (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866))) + : (c <= 5880 || (c < 5920 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : c <= 5908) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))) + : (c <= 6000 || (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6160 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))) + : (c <= 6430 || (c < 6783 + ? (c < 6576 + ? (c < 6470 + ? (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459) + : (c <= 6509 || (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571))) + : (c <= 6601 || (c < 6688 + ? (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683) + : (c <= 6750 || (c >= 6752 && c <= 6780))))) + : (c <= 6793 || (c < 6992 + ? (c < 6832 + ? (c < 6823 + ? (c >= 6800 && c <= 6809) + : c <= 6823) + : (c <= 6845 || (c < 6912 + ? (c >= 6847 && c <= 6848) + : c <= 6987))) + : (c <= 7001 || (c < 7168 + ? (c < 7040 + ? (c >= 7019 && c <= 7027) + : c <= 7155) + : (c <= 7223 || (c >= 7232 && c <= 7241))))))))))) + : (c <= 7293 || (c < 8544 + ? (c < 8160 + ? (c < 8025 + ? (c < 7424 + ? (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418))) + : (c <= 7673 || (c < 7968 + ? (c < 7960 + ? (c >= 7675 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))) + : (c <= 8025 || (c < 8126 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c >= 8150 && c <= 8155))))))) + : (c <= 8172 || (c < 8455 + ? (c < 8319 + ? (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))) + : (c <= 8319 || (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))))) + : (c <= 8455 || (c < 8488 + ? (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))))) + : (c <= 8584 || (c < 12344 + ? (c < 11688 + ? (c < 11559 + ? (c < 11360 + ? (c < 11312 + ? (c >= 11264 && c <= 11310) + : c <= 11358) + : (c <= 11492 || (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686))))) + : (c <= 11694 || (c < 11736 + ? (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734))) + : (c <= 11742 || (c < 12321 + ? (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295) + : (c <= 12335 || (c >= 12337 && c <= 12341))))))) + : (c <= 12348 || (c < 40960 + ? (c < 12593 + ? (c < 12449 + ? (c < 12441 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c >= 19968 && c <= 40956))))) + : (c <= 42124 || (c < 42623 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))) + : (c <= 42737 || (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42943 || (c >= 42946 && c <= 42954))))))))))))))) + : (c <= 43047 || (c < 71168 + ? (c < 67424 + ? (c < 64848 + ? (c < 43793 + ? (c < 43488 + ? (c < 43259 + ? (c < 43136 + ? (c < 43072 + ? c == 43052 + : c <= 43123) + : (c <= 43205 || (c < 43232 + ? (c >= 43216 && c <= 43225) + : c <= 43255))) + : (c <= 43259 || (c < 43360 + ? (c < 43312 + ? (c >= 43261 && c <= 43309) + : c <= 43347) + : (c <= 43388 || (c < 43471 + ? (c >= 43392 && c <= 43456) + : c <= 43481))))) + : (c <= 43518 || (c < 43739 + ? (c < 43600 + ? (c < 43584 + ? (c >= 43520 && c <= 43574) + : c <= 43597) + : (c <= 43609 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43759) + : c <= 43766) + : (c <= 43782 || (c >= 43785 && c <= 43790))))))) + : (c <= 43798 || (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c >= 64467 && c <= 64829))))))))) + : (c <= 64911 || (c < 65616 + ? (c < 65345 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65019) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65296 + ? (c < 65142 + ? (c >= 65136 && c <= 65140) + : c <= 65276) + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))) + : (c <= 65370 || (c < 65536 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))))))) + : (c <= 65629 || (c < 66464 + ? (c < 66272 + ? (c < 66045 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66045 || (c < 66208 + ? (c >= 66176 && c <= 66204) + : c <= 66256))) + : (c <= 66272 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66426 || (c >= 66432 && 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__atom_word_literal_character_set_4(int32_t c) { + return (c < 42946 + ? (c < 3713 + ? (c < 2707 + ? (c < 1984 + ? (c < 931 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < '@' + ? (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 bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(4); - if (lookahead == 'T') ADVANCE(2); + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(162); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(561); + if (lookahead == '%') ADVANCE(439); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(559); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(380); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(461); + if (lookahead == 'c') ADVANCE(459); + if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'e') ADVANCE(464); + if (lookahead == 'f') ADVANCE(458); + if (lookahead == 'i') ADVANCE(465); + if (lookahead == 'n') ADVANCE(463); + if (lookahead == 'o') ADVANCE(467); + if (lookahead == 'r') ADVANCE(460); + if (lookahead == 't') ADVANCE(468); + if (lookahead == 'w') ADVANCE(462); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(151) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(469); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(471); + if (aux_sym_identifier_token1_character_set_1(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(162); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(561); + if (lookahead == '%') ADVANCE(439); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(380); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(1) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(352); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(1) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(40) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(41) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 5: + if (lookahead == '\n') SKIP(44) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(45) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(46) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(47) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(48) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 10: + if (lookahead == '\n') SKIP(50) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 11: + if (lookahead == '\n') SKIP(51) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(52) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 13: + if (lookahead == '\n') SKIP(54) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 14: + if (lookahead == '\n') SKIP(58) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 15: + if (lookahead == '\n') SKIP(59) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 16: + if (lookahead == '\n') SKIP(63) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 17: + if (lookahead == '\n') SKIP(65) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(66) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(68) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 20: + if (lookahead == '\n') SKIP(70) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 21: + if (lookahead == '\n') SKIP(72) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(74) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 23: + if (lookahead == '\n') SKIP(76) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(25) + END_STATE(); + case 25: + if (lookahead == '\n') ADVANCE(163); + if (lookahead == '!') ADVANCE(429); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(373); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '+') ADVANCE(421); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(423); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '<') ADVANCE(395); + if (lookahead == '>') ADVANCE(96); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') SKIP(24) + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(431); + if (lookahead == 'n') ADVANCE(119); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(371); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(133); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(25) + END_STATE(); + case 26: + if (lookahead == '\n') ADVANCE(163); + if (lookahead == '#') ADVANCE(562); + if (lookahead == ')') ADVANCE(192); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(90); + if (lookahead == '>') ADVANCE(96); + if (lookahead == '\\') SKIP(29) + if (lookahead == ']') ADVANCE(451); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(26) + END_STATE(); + case 27: + if (lookahead == '\n') ADVANCE(163); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '\\') SKIP(31) + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + END_STATE(); + case 28: + if (lookahead == '\n') ADVANCE(163); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '\\') SKIP(31) + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(457); + END_STATE(); + case 29: + if (lookahead == '\n') SKIP(26) + END_STATE(); + case 30: + if (lookahead == '\n') ADVANCE(454); + if (lookahead == 'u') ADVANCE(129); + if (lookahead == 'x') ADVANCE(128); + if (lookahead != 0) ADVANCE(453); + END_STATE(); + case 31: + if (lookahead == '\n') SKIP(27) + END_STATE(); + case 32: + if (lookahead == '\n') ADVANCE(164); + if (lookahead == '"') ADVANCE(442); + if (lookahead == '#') ADVANCE(561); + if (lookahead == '\'') ADVANCE(444); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '>') ADVANCE(399); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '|') ADVANCE(371); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + END_STATE(); + case 33: + if (lookahead == '\n') ADVANCE(164); + if (lookahead == '"') ADVANCE(442); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '\'') ADVANCE(444); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(33) + END_STATE(); + case 34: + if (lookahead == '\n') ADVANCE(164); + if (lookahead == '"') ADVANCE(78); + if (lookahead == '#') ADVANCE(561); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(34) + END_STATE(); + case 35: + if (lookahead == '\n') ADVANCE(164); + if (lookahead == '"') ADVANCE(78); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '\'') ADVANCE(81); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '>') ADVANCE(399); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '|') ADVANCE(371); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(35) + END_STATE(); + case 36: + if (lookahead == '\n') SKIP(77) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 37: + if (lookahead == '\n') SKIP(43) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 38: + if (lookahead == '\n') SKIP(56) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 39: + if (lookahead == '\n') SKIP(61) + if (lookahead == '\\') ADVANCE(385); + END_STATE(); + case 40: + if (lookahead == '\n') ADVANCE(165); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(3); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(433); + if (lookahead == '_') ADVANCE(328); + if (lookahead == 'a') ADVANCE(249); + if (lookahead == 'f') ADVANCE(229); + if (lookahead == 'i') ADVANCE(250); + if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'o') ADVANCE(254); + if (lookahead == 't') ADVANCE(255); + if (lookahead == 'w') ADVANCE(243); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(351); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(265); + END_STATE(); + case 41: + if (lookahead == '\n') ADVANCE(166); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 42: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(559); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 43: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(37); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 44: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 45: + if (lookahead == '\n') ADVANCE(169); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == '^') ADVANCE(433); + if (lookahead == '_') ADVANCE(328); + if (lookahead == 'a') ADVANCE(242); + if (lookahead == 'c') ADVANCE(230); + if (lookahead == 'e') ADVANCE(248); + if (lookahead == 'f') ADVANCE(229); + if (lookahead == 'i') ADVANCE(250); + if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'o') ADVANCE(254); + if (lookahead == 'r') ADVANCE(239); + if (lookahead == 't') ADVANCE(255); + if (lookahead == 'w') ADVANCE(243); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(456); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(45) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(351); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(265); + END_STATE(); + case 46: + if (lookahead == '\n') ADVANCE(170); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(7); + if (lookahead == '^') ADVANCE(433); + if (lookahead == '_') ADVANCE(328); + if (lookahead == 'a') ADVANCE(249); + if (lookahead == 'e') ADVANCE(252); + if (lookahead == 'f') ADVANCE(229); + if (lookahead == 'i') ADVANCE(250); + if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'o') ADVANCE(254); + if (lookahead == 't') ADVANCE(255); + if (lookahead == 'w') ADVANCE(243); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(456); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(46) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(351); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(265); + END_STATE(); + case 47: + if (lookahead == '\n') ADVANCE(171); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(442); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(444); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '0') ADVANCE(359); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '\\') ADVANCE(8); + if (lookahead == '^') ADVANCE(433); + if (lookahead == '_') ADVANCE(328); + if (lookahead == 'a') ADVANCE(242); + if (lookahead == 'c') ADVANCE(230); + if (lookahead == 'd') ADVANCE(253); + if (lookahead == 'e') ADVANCE(248); + if (lookahead == 'f') ADVANCE(229); + if (lookahead == 'i') ADVANCE(250); + if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'o') ADVANCE(254); + if (lookahead == 'r') ADVANCE(239); + if (lookahead == 't') ADVANCE(255); + if (lookahead == 'w') ADVANCE(243); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(92); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(47) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(360); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(351); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(265); + END_STATE(); + case 48: + if (lookahead == '\n') ADVANCE(172); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(442); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(444); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '\\') ADVANCE(9); + if (lookahead == '^') ADVANCE(434); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(92); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(48) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(352); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 49: + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(50) + END_STATE(); + case 50: + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(50) + END_STATE(); + case 51: + if (lookahead == '\n') ADVANCE(174); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(442); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(439); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(444); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(380); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(398); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(434); + if (lookahead == '{') ADVANCE(131); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(92); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(51) + if (sym__atom_word_literal_character_set_2(lookahead)) ADVANCE(368); + END_STATE(); + case 52: + if (lookahead == '\n') ADVANCE(175); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(52) + END_STATE(); + case 53: + if (lookahead == '\n') ADVANCE(176); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(13); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'c') ADVANCE(472); + if (lookahead == 'd') ADVANCE(490); + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'r') ADVANCE(481); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(54) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 54: + if (lookahead == '\n') ADVANCE(176); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(13); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(54) + END_STATE(); + case 55: + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'c') ADVANCE(472); + if (lookahead == 'd') ADVANCE(490); + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'r') ADVANCE(481); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 56: + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + END_STATE(); + case 57: + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'c') ADVANCE(472); + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'r') ADVANCE(481); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(58) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 58: + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(58) + END_STATE(); + case 59: + if (lookahead == '\n') ADVANCE(179); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(15); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(59) + END_STATE(); + case 60: + if (lookahead == '\n') ADVANCE(180); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(482); + if (lookahead == 'c') ADVANCE(472); + if (lookahead == 'e') ADVANCE(485); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'r') ADVANCE(481); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(61) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 61: + if (lookahead == '\n') ADVANCE(180); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(61) + END_STATE(); + case 62: + if (lookahead == '\n') ADVANCE(181); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'd') ADVANCE(490); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(63) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 63: + if (lookahead == '\n') ADVANCE(181); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(63) + END_STATE(); + case 64: + if (lookahead == '\n') ADVANCE(182); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(65) + END_STATE(); + case 65: + if (lookahead == '\n') ADVANCE(182); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '\\') ADVANCE(17); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(65) + END_STATE(); + case 66: + if (lookahead == '\n') ADVANCE(183); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(66) + END_STATE(); + case 67: + if (lookahead == '\n') ADVANCE(184); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(19); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'd') ADVANCE(490); + if (lookahead == 'e') ADVANCE(489); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(68) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 68: + if (lookahead == '\n') ADVANCE(184); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(19); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(68) + END_STATE(); + case 69: + if (lookahead == '\n') ADVANCE(185); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(20); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(70) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 70: + if (lookahead == '\n') ADVANCE(185); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(20); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(70) + END_STATE(); + case 71: + if (lookahead == '\n') ADVANCE(186); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(21); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'd') ADVANCE(490); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(72) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 72: + if (lookahead == '\n') ADVANCE(186); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '\\') ADVANCE(21); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(72) + END_STATE(); + case 73: + if (lookahead == '\n') ADVANCE(187); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(22); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'e') ADVANCE(489); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 74: + if (lookahead == '\n') ADVANCE(187); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(22); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + END_STATE(); + case 75: + if (lookahead == '\n') ADVANCE(188); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(23); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(76) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 76: + if (lookahead == '\n') ADVANCE(188); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '\\') ADVANCE(23); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(76) + END_STATE(); + case 77: + if (lookahead == '\n') ADVANCE(189); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(77) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 78: + if (lookahead == '"') ADVANCE(79); + END_STATE(); + case 79: + if (lookahead == '"') ADVANCE(447); + END_STATE(); + case 80: + if (lookahead == '&') ADVANCE(388); + END_STATE(); + case 81: + if (lookahead == '\'') ADVANCE(82); + END_STATE(); + case 82: + if (lookahead == '\'') ADVANCE(446); + END_STATE(); + case 83: + if (lookahead == '.') ADVANCE(138); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(0) + lookahead == ' ') ADVANCE(83); END_STATE(); - case 1: - if (lookahead == 'D') ADVANCE(3); + case 84: + if (lookahead == '/') ADVANCE(441); END_STATE(); - case 2: - if (lookahead == 'O') ADVANCE(1); + case 85: + if (lookahead == '0') ADVANCE(365); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(366); END_STATE(); - case 3: - if (lookahead == 'O') ADVANCE(5); + case 86: + if (lookahead == ':') ADVANCE(370); END_STATE(); - case 4: + case 87: + if (lookahead == '<') ADVANCE(405); + if (lookahead == '>') ADVANCE(95); + if (lookahead == '~') ADVANCE(407); + END_STATE(); + case 88: + if (lookahead == '<') ADVANCE(405); + if (lookahead == '~') ADVANCE(407); + END_STATE(); + case 89: + if (lookahead == '=') ADVANCE(391); + END_STATE(); + case 90: + if (lookahead == '>') ADVANCE(369); + END_STATE(); + case 91: + if (lookahead == '>') ADVANCE(410); + END_STATE(); + case 92: + if (lookahead == '>') ADVANCE(410); + if (lookahead == '~') ADVANCE(134); + END_STATE(); + case 93: + if (lookahead == '>') ADVANCE(412); + END_STATE(); + case 94: + if (lookahead == '>') ADVANCE(406); + END_STATE(); + case 95: + if (lookahead == '>') ADVANCE(440); + END_STATE(); + case 96: + if (lookahead == '>') ADVANCE(555); + END_STATE(); + case 97: + if (lookahead == '\\') ADVANCE(558); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(557); + END_STATE(); + case 98: + if (lookahead == '^') ADVANCE(377); + END_STATE(); + case 99: + if (lookahead == '^') ADVANCE(98); + END_STATE(); + case 100: + if (lookahead == 'a') ADVANCE(124); + END_STATE(); + case 101: + if (lookahead == 'c') ADVANCE(127); + END_STATE(); + case 102: + if (lookahead == 'c') ADVANCE(111); + END_STATE(); + case 103: + if (lookahead == 'd') ADVANCE(511); + END_STATE(); + case 104: + if (lookahead == 'd') ADVANCE(544); + END_STATE(); + case 105: + if (lookahead == 'e') ADVANCE(540); + END_STATE(); + case 106: + if (lookahead == 'e') ADVANCE(550); + END_STATE(); + case 107: + if (lookahead == 'e') ADVANCE(116); + END_STATE(); + case 108: + if (lookahead == 'e') ADVANCE(121); + END_STATE(); + case 109: + if (lookahead == 'e') ADVANCE(122); + END_STATE(); + case 110: + if (lookahead == 'f') ADVANCE(126); + if (lookahead == 'n') ADVANCE(103); + END_STATE(); + case 111: + if (lookahead == 'h') ADVANCE(532); + END_STATE(); + case 112: + if (lookahead == 'h') ADVANCE(107); + END_STATE(); + case 113: + if (lookahead == 'l') ADVANCE(123); + if (lookahead == 'n') ADVANCE(104); + END_STATE(); + case 114: + if (lookahead == 'n') ADVANCE(103); + END_STATE(); + case 115: + if (lookahead == 'n') ADVANCE(515); + END_STATE(); + case 116: + if (lookahead == 'n') ADVANCE(502); + END_STATE(); + case 117: + if (lookahead == 'n') ADVANCE(104); + END_STATE(); + case 118: + if (lookahead == 'o') ADVANCE(536); + END_STATE(); + case 119: + if (lookahead == 'o') ADVANCE(125); + END_STATE(); + case 120: + if (lookahead == 'r') ADVANCE(507); + END_STATE(); + case 121: + if (lookahead == 'r') ADVANCE(528); + END_STATE(); + case 122: + if (lookahead == 's') ADVANCE(101); + END_STATE(); + case 123: + if (lookahead == 's') ADVANCE(105); + END_STATE(); + case 124: + if (lookahead == 't') ADVANCE(102); + END_STATE(); + case 125: + if (lookahead == 't') ADVANCE(499); + END_STATE(); + case 126: + if (lookahead == 't') ADVANCE(108); + END_STATE(); + case 127: + if (lookahead == 'u') ADVANCE(106); + END_STATE(); + case 128: + if (lookahead == '{') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(455); + END_STATE(); + case 129: + if (lookahead == '{') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + END_STATE(); + case 130: + if (lookahead == '}') ADVANCE(436); + END_STATE(); + case 131: + if (lookahead == '}') ADVANCE(437); + END_STATE(); + case 132: + if (lookahead == '}') ADVANCE(453); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + END_STATE(); + case 133: + if (lookahead == '~') ADVANCE(134); + END_STATE(); + case 134: + if (lookahead == '~') ADVANCE(435); + END_STATE(); + case 135: + if (lookahead == '+' || + lookahead == '-') ADVANCE(85); + if (lookahead == '0') ADVANCE(365); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(366); + END_STATE(); + case 136: + if (lookahead == '0' || + lookahead == '1') ADVANCE(356); + END_STATE(); + case 137: + if (lookahead == '0' || + lookahead == '1') ADVANCE(362); + END_STATE(); + case 138: + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(138); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(353); + END_STATE(); + case 139: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(357); + END_STATE(); + case 140: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(363); + END_STATE(); + case 141: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(355); + END_STATE(); + case 142: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); + END_STATE(); + case 143: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(366); + END_STATE(); + case 144: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); + END_STATE(); + case 145: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); + END_STATE(); + case 146: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + END_STATE(); + case 147: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); + END_STATE(); + case 148: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + END_STATE(); + case 149: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); + END_STATE(); + case 150: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); + END_STATE(); + case 151: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(162); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(561); + if (lookahead == '%') ADVANCE(439); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(380); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(400); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(151) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(352); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 152: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(165); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(427); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(376); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(3); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(433); + if (lookahead == '_') ADVANCE(328); + if (lookahead == 'a') ADVANCE(249); + if (lookahead == 'f') ADVANCE(229); + if (lookahead == 'i') ADVANCE(250); + if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'o') ADVANCE(254); + if (lookahead == 't') ADVANCE(255); + if (lookahead == 'w') ADVANCE(243); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(152) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(351); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(265); + END_STATE(); + case 153: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(175); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(154) + END_STATE(); + case 154: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(175); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'c') ADVANCE(100); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'r') ADVANCE(109); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(154) + END_STATE(); + case 155: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(179); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(15); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'd') ADVANCE(490); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(156) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 156: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(179); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(15); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'd') ADVANCE(118); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(156) + END_STATE(); + case 157: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(183); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(486); + if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'o') ADVANCE(491); + if (lookahead == 'w') ADVANCE(484); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(158) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 158: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(183); + if (lookahead == '!') ADVANCE(89); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '&') ADVANCE(80); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(424); + if (lookahead == '.') ADVANCE(382); + if (lookahead == '/') ADVANCE(428); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(397); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(99); + if (lookahead == 'a') ADVANCE(114); + if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'o') ADVANCE(120); + if (lookahead == 'w') ADVANCE(112); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(91); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(158) + END_STATE(); + case 159: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(189); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(559); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(560); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(160) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 160: + if (eof) ADVANCE(161); + if (lookahead == '\n') ADVANCE(189); + if (lookahead == '!') ADVANCE(430); + if (lookahead == '"') ADVANCE(443); + if (lookahead == '#') ADVANCE(562); + if (lookahead == '%') ADVANCE(438); + if (lookahead == '&') ADVANCE(374); + if (lookahead == '\'') ADVANCE(445); + if (lookahead == '(') ADVANCE(191); + if (lookahead == ')') ADVANCE(192); + if (lookahead == '*') ADVANCE(426); + if (lookahead == '+') ADVANCE(422); + if (lookahead == ',') ADVANCE(521); + if (lookahead == '-') ADVANCE(425); + if (lookahead == '.') ADVANCE(381); + if (lookahead == '/') ADVANCE(428); + if (lookahead == '0') ADVANCE(354); + if (lookahead == ':') ADVANCE(86); + if (lookahead == ';') ADVANCE(190); + if (lookahead == '<') ADVANCE(396); + if (lookahead == '=') ADVANCE(375); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '?') ADVANCE(97); + if (lookahead == '@') ADVANCE(383); + if (lookahead == '[') ADVANCE(450); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == ']') ADVANCE(451); + if (lookahead == '^') ADVANCE(432); + if (lookahead == '_') ADVANCE(292); + if (lookahead == 'a') ADVANCE(207); + if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'd') ADVANCE(216); + if (lookahead == 'e') ADVANCE(211); + if (lookahead == 'f') ADVANCE(194); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'n') ADVANCE(210); + if (lookahead == 'o') ADVANCE(217); + if (lookahead == 'r') ADVANCE(204); + if (lookahead == 't') ADVANCE(218); + if (lookahead == 'w') ADVANCE(208); + if (lookahead == '{') ADVANCE(448); + if (lookahead == '|') ADVANCE(372); + if (lookahead == '}') ADVANCE(449); + if (lookahead == '~') ADVANCE(456); + if (lookahead == 11823) ADVANCE(265); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(160) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(350); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(228); + if (sym__atom_word_literal_character_set_1(lookahead)) ADVANCE(368); + END_STATE(); + case 161: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 5: - ACCEPT_TOKEN(anon_sym_TODO); + case 162: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(162); + if (lookahead == '\\') ADVANCE(2); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(163); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(164); + if (lookahead == '\\') ADVANCE(30); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(165); + if (lookahead == '\\') ADVANCE(3); + END_STATE(); + case 166: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(166); + if (lookahead == '\\') ADVANCE(4); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '\\') ADVANCE(37); + END_STATE(); + case 168: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '\\') ADVANCE(5); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(169); + if (lookahead == '\\') ADVANCE(6); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(170); + if (lookahead == '\\') ADVANCE(7); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(171); + if (lookahead == '\\') ADVANCE(8); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(172); + if (lookahead == '\\') ADVANCE(9); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(173); + if (lookahead == '\\') ADVANCE(10); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(174); + if (lookahead == '\\') ADVANCE(11); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(175); + if (lookahead == '\\') ADVANCE(12); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(176); + if (lookahead == '\\') ADVANCE(13); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(177); + if (lookahead == '\\') ADVANCE(38); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(178); + if (lookahead == '\\') ADVANCE(14); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(179); + if (lookahead == '\\') ADVANCE(15); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(180); + if (lookahead == '\\') ADVANCE(39); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(181); + if (lookahead == '\\') ADVANCE(16); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(182); + if (lookahead == '\\') ADVANCE(17); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(183); + if (lookahead == '\\') ADVANCE(18); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(184); + if (lookahead == '\\') ADVANCE(19); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(185); + if (lookahead == '\\') ADVANCE(20); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(186); + if (lookahead == '\\') ADVANCE(21); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(187); + if (lookahead == '\\') ADVANCE(22); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\\') ADVANCE(23); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(189); + if (lookahead == '\\') ADVANCE(36); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 193: + ACCEPT_TOKEN(aux_sym_identifier_token1); + END_STATE(); + case 194: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'n') ADVANCE(548); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(228); + END_STATE(); + case 195: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'a') ADVANCE(223); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(228); + END_STATE(); + case 196: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'c') ADVANCE(209); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 197: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'c') ADVANCE(227); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 198: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'd') ADVANCE(512); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 199: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'd') ADVANCE(545); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 200: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(541); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 201: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(522); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 202: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(524); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 203: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(551); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 204: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 205: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(215); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 206: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(219); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 207: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'f') ADVANCE(225); + if (lookahead == 'n') ADVANCE(198); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 208: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'h') ADVANCE(205); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 209: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'h') ADVANCE(533); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 210: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'i') ADVANCE(212); + if (lookahead == 'o') ADVANCE(224); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 211: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'l') ADVANCE(221); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 212: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'l') ADVANCE(526); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 213: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'l') ADVANCE(222); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 214: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'n') ADVANCE(516); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 215: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'n') ADVANCE(503); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 216: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'o') ADVANCE(537); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 217: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'r') ADVANCE(508); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 218: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'r') ADVANCE(226); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 219: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'r') ADVANCE(529); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 220: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 's') ADVANCE(197); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 221: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 's') ADVANCE(200); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 222: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 's') ADVANCE(202); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 223: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 't') ADVANCE(196); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 224: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 't') ADVANCE(500); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 225: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 't') ADVANCE(206); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 226: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'u') ADVANCE(201); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 227: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'u') ADVANCE(203); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 228: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 229: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'n') ADVANCE(549); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(265); + END_STATE(); + case 230: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'a') ADVANCE(261); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(265); + END_STATE(); + case 231: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'c') ADVANCE(244); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 232: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'c') ADVANCE(264); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 233: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'd') ADVANCE(513); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 234: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'd') ADVANCE(546); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 235: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(523); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 236: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(525); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 237: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(542); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 238: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(552); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 239: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(257); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 240: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(251); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 241: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(256); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 242: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'f') ADVANCE(262); + if (lookahead == 'n') ADVANCE(233); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 243: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'h') ADVANCE(240); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 244: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'h') ADVANCE(534); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 245: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'i') ADVANCE(247); + if (lookahead == 'o') ADVANCE(260); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 246: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'l') ADVANCE(258); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 247: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'l') ADVANCE(527); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 248: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'l') ADVANCE(259); + if (lookahead == 'n') ADVANCE(234); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 249: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(233); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 250: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(517); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 251: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(504); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 252: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(234); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 253: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'o') ADVANCE(538); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 254: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'r') ADVANCE(509); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 255: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'r') ADVANCE(263); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 256: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'r') ADVANCE(530); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 257: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 's') ADVANCE(232); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 258: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 's') ADVANCE(236); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 259: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 's') ADVANCE(237); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 260: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 261: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(231); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 262: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(241); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 263: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(235); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 264: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(238); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 265: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 267: + ACCEPT_TOKEN(sym_unused_identifier); + END_STATE(); + case 268: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'A') ADVANCE(281); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(303); + END_STATE(); + case 269: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'A') ADVANCE(272); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(303); + END_STATE(); + case 270: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'A') ADVANCE(273); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(303); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'C') ADVANCE(268); + if (lookahead == 'D') ADVANCE(278); + if (lookahead == 'E') ADVANCE(283); + if (lookahead == 'M') ADVANCE(284); + if (lookahead == 'S') ADVANCE(288); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'C') ADVANCE(279); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'C') ADVANCE(276); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'D') ADVANCE(290); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'E') ADVANCE(301); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'E') ADVANCE(302); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'E') ADVANCE(287); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'I') ADVANCE(285); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'K') ADVANCE(289); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'L') ADVANCE(280); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'L') ADVANCE(275); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'N') ADVANCE(291); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'O') ADVANCE(274); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'R') ADVANCE(298); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 286: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'R') ADVANCE(270); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'R') ADVANCE(300); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'T') ADVANCE(269); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'T') ADVANCE(286); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'U') ADVANCE(282); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'V') ADVANCE(299); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(271); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(342); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(344); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(346); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(340); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(348); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(293); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 299: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(294); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 300: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(295); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 301: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(296); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 302: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '_') ADVANCE(297); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(303); + END_STATE(); + case 303: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 304: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'A') ADVANCE(317); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(339); + END_STATE(); + case 305: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'A') ADVANCE(308); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(339); + END_STATE(); + case 306: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'A') ADVANCE(309); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(339); + END_STATE(); + case 307: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'C') ADVANCE(304); + if (lookahead == 'D') ADVANCE(314); + if (lookahead == 'E') ADVANCE(319); + if (lookahead == 'M') ADVANCE(320); + if (lookahead == 'S') ADVANCE(324); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 308: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'C') ADVANCE(315); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 309: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'C') ADVANCE(312); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'D') ADVANCE(326); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 311: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'E') ADVANCE(337); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'E') ADVANCE(338); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 313: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'E') ADVANCE(323); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 314: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'I') ADVANCE(321); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'K') ADVANCE(325); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 316: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'L') ADVANCE(313); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 317: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'L') ADVANCE(316); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 318: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'L') ADVANCE(311); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 319: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'N') ADVANCE(327); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 320: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'O') ADVANCE(310); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 321: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'R') ADVANCE(334); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 322: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'R') ADVANCE(306); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'R') ADVANCE(336); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'T') ADVANCE(305); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'T') ADVANCE(322); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'U') ADVANCE(318); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'V') ADVANCE(335); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 328: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(307); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 329: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(343); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 330: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(345); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 331: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(347); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 332: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(341); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 333: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(349); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 334: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(329); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 335: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(330); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 336: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(331); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(332); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(333); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(339); + END_STATE(); + case 339: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym___MODULE__); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 341: + ACCEPT_TOKEN(anon_sym___MODULE__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 342: + ACCEPT_TOKEN(anon_sym___DIR__); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 343: + ACCEPT_TOKEN(anon_sym___DIR__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym___ENV__); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym___ENV__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym___CALLER__); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym___CALLER__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym___STACKTRACE__); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(303); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym___STACKTRACE__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(267); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(339); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym__alias_single); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '!' || + lookahead == '?') ADVANCE(367); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(350); + if (sym__atom_word_literal_character_set_3(lookahead)) ADVANCE(368); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym__alias_single); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(351); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym__alias_single); + if (lookahead == '!' || + lookahead == '?') ADVANCE(367); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(352); + if (sym__atom_word_literal_character_set_3(lookahead)) ADVANCE(368); + END_STATE(); + case 353: + ACCEPT_TOKEN(sym__alias_multi); + if (lookahead == '.') ADVANCE(138); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(83); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(353); + END_STATE(); + case 354: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '_') ADVANCE(141); + if (lookahead == 'b') ADVANCE(136); + if (lookahead == 'o') ADVANCE(139); + if (lookahead == 'x') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(355); + END_STATE(); + case 355: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '_') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(355); + END_STATE(); + case 356: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(136); + if (lookahead == '0' || + lookahead == '1') ADVANCE(356); + END_STATE(); + case 357: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(357); + END_STATE(); + case 358: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); + END_STATE(); + case 359: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(144); + if (lookahead == 'b') ADVANCE(136); + if (lookahead == 'o') ADVANCE(139); + if (lookahead == 'x') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); + END_STATE(); + case 360: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(144); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(142); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(137); + if (lookahead == '0' || + lookahead == '1') ADVANCE(362); + END_STATE(); + case 363: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(363); + END_STATE(); + case 364: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + END_STATE(); + case 365: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(143); + if (lookahead == 'b') ADVANCE(137); + if (lookahead == 'o') ADVANCE(140); + if (lookahead == 'x') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(366); + END_STATE(); + case 366: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(366); + END_STATE(); + case 367: + ACCEPT_TOKEN(sym__atom_word_literal); + END_STATE(); + case 368: + ACCEPT_TOKEN(sym__atom_word_literal); + if (lookahead == '!' || + lookahead == '?') ADVANCE(367); + if (sym__atom_word_literal_character_set_4(lookahead)) ADVANCE(368); + END_STATE(); + case 369: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(404); + if (lookahead == '|') ADVANCE(386); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(388); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(390); + if (lookahead == '>') ADVANCE(506); + if (lookahead == '~') ADVANCE(392); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(390); + if (lookahead == '~') ADVANCE(392); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(419); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(418); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(417); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 384: + ACCEPT_TOKEN(anon_sym_LT_DASH); + END_STATE(); + case 385: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + END_STATE(); + case 386: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '|') ADVANCE(387); + END_STATE(); + case 387: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); + END_STATE(); + case 388: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(389); + END_STATE(); + case 389: + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); + END_STATE(); + case 390: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(393); + END_STATE(); + case 391: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(394); + END_STATE(); + case 392: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 393: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 395: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 396: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(384); + if (lookahead == '<') ADVANCE(554); + if (lookahead == '=') ADVANCE(402); + if (lookahead == '>') ADVANCE(420); + if (lookahead == '|') ADVANCE(93); + if (lookahead == '~') ADVANCE(409); + END_STATE(); + case 397: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(384); + if (lookahead == '<') ADVANCE(88); + if (lookahead == '=') ADVANCE(402); + if (lookahead == '>') ADVANCE(420); + if (lookahead == '|') ADVANCE(93); + if (lookahead == '~') ADVANCE(409); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(384); + if (lookahead == '<') ADVANCE(87); + if (lookahead == '=') ADVANCE(402); + if (lookahead == '>') ADVANCE(420); + if (lookahead == '|') ADVANCE(93); + if (lookahead == '~') ADVANCE(409); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 400: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(403); + if (lookahead == '>') ADVANCE(556); + END_STATE(); + case 401: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(403); + if (lookahead == '>') ADVANCE(94); + END_STATE(); + case 402: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 403: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym_PIPE_GT); + END_STATE(); + case 405: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 406: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 407: + ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); + END_STATE(); + case 408: + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + END_STATE(); + case 409: + ACCEPT_TOKEN(anon_sym_LT_TILDE); + if (lookahead == '>') ADVANCE(411); + END_STATE(); + case 410: + ACCEPT_TOKEN(anon_sym_TILDE_GT); + if (lookahead == '>') ADVANCE(408); + END_STATE(); + case 411: + ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); + END_STATE(); + case 412: + ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); + END_STATE(); + case 413: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '+') ADVANCE(415); + END_STATE(); + case 414: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '-') ADVANCE(416); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); + END_STATE(); + case 416: + ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); + END_STATE(); + case 417: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 418: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(266); + END_STATE(); + case 419: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(266); + if (lookahead == '/') ADVANCE(84); + END_STATE(); + case 420: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 421: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 422: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(413); + END_STATE(); + case 423: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 424: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(414); + END_STATE(); + case 425: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(414); + if (lookahead == '>') ADVANCE(369); + END_STATE(); + case 426: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(379); + END_STATE(); + case 427: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 428: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(378); + END_STATE(); + case 429: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 430: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(391); + END_STATE(); + case 431: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 432: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(520); + END_STATE(); + case 433: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(519); + END_STATE(); + case 434: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(98); + END_STATE(); + case 435: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + END_STATE(); + case 436: + ACCEPT_TOKEN(anon_sym_PERCENT_LBRACE_RBRACE); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_LBRACE_RBRACE); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 439: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '{') ADVANCE(130); + END_STATE(); + case 440: + ACCEPT_TOKEN(anon_sym_LT_LT_GT_GT); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_DOT_DOT_SLASH_SLASH); + END_STATE(); + case 442: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 443: + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(79); + END_STATE(); + case 444: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(82); + END_STATE(); + case 446: + ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); + END_STATE(); + case 447: + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); + END_STATE(); + case 448: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 449: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 450: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 452: + ACCEPT_TOKEN(anon_sym_POUND_LBRACE); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 454: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n') ADVANCE(164); + if (lookahead == '\\') ADVANCE(30); + END_STATE(); + case 455: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); + END_STATE(); + case 456: + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '>') ADVANCE(410); + if (lookahead == '~') ADVANCE(134); + END_STATE(); + case 457: + ACCEPT_TOKEN(aux_sym_sigil_token1); + END_STATE(); + case 458: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'n') ADVANCE(548); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(228); + END_STATE(); + case 459: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'a') ADVANCE(223); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(228); + END_STATE(); + case 460: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'e') ADVANCE(220); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 461: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'f') ADVANCE(225); + if (lookahead == 'n') ADVANCE(198); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 462: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'h') ADVANCE(205); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 463: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'i') ADVANCE(212); + if (lookahead == 'o') ADVANCE(224); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 464: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'l') ADVANCE(221); + if (lookahead == 'n') ADVANCE(199); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 465: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'n') ADVANCE(516); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 466: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'o') ADVANCE(537); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 467: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'r') ADVANCE(508); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 468: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == 'r') ADVANCE(226); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 469: + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 470: + ACCEPT_TOKEN(aux_sym_sigil_token2); + END_STATE(); + case 471: + ACCEPT_TOKEN(aux_sym_sigil_token2); + if (lookahead == '!' || + lookahead == '?') ADVANCE(367); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(352); + if (sym__atom_word_literal_character_set_3(lookahead)) ADVANCE(368); + END_STATE(); + case 472: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'a') ADVANCE(495); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 473: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'c') ADVANCE(497); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 474: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'c') ADVANCE(483); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 475: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'd') ADVANCE(514); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 476: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'd') ADVANCE(547); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 477: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(543); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 478: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(553); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 479: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(488); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 480: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(492); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 481: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(493); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 482: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'f') ADVANCE(496); + if (lookahead == 'n') ADVANCE(475); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 483: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'h') ADVANCE(535); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 484: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'h') ADVANCE(479); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 485: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'l') ADVANCE(494); + if (lookahead == 'n') ADVANCE(476); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 486: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(475); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 487: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(518); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 488: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(505); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 489: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(476); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 490: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'o') ADVANCE(539); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 491: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'r') ADVANCE(510); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 492: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'r') ADVANCE(531); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 493: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 's') ADVANCE(473); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 494: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 's') ADVANCE(477); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 495: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 't') ADVANCE(474); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 496: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 't') ADVANCE(480); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 497: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'u') ADVANCE(478); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 498: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 499: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 500: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 501: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 502: + ACCEPT_TOKEN(anon_sym_when); + END_STATE(); + case 503: + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 504: + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 505: + ACCEPT_TOKEN(anon_sym_when); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 506: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 507: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 508: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 509: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 510: + ACCEPT_TOKEN(anon_sym_or); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 511: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 513: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 514: + ACCEPT_TOKEN(anon_sym_and); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 515: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 516: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 518: + ACCEPT_TOKEN(anon_sym_in); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 519: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + if (lookahead == '^') ADVANCE(377); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 522: + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 524: + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 525: + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym_nil); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym_nil); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym_after); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym_after); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_after); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym_after); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 535: + ACCEPT_TOKEN(anon_sym_catch); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 536: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 539: + ACCEPT_TOKEN(anon_sym_do); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 540: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 541: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 542: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 543: + ACCEPT_TOKEN(anon_sym_else); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym_end); + END_STATE(); + case 545: + ACCEPT_TOKEN(anon_sym_end); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_end); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_end); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_rescue); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym_rescue); + if (lookahead == '@') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_rescue); + if (lookahead == '!' || + lookahead == '?') ADVANCE(193); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_rescue); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(405); + if (lookahead == '~') ADVANCE(407); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(406); + END_STATE(); + case 557: + ACCEPT_TOKEN(sym_char); + END_STATE(); + case 558: + ACCEPT_TOKEN(sym_char); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(557); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_LPAREN2); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym_LBRACK2); + END_STATE(); + case 561: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '{') ADVANCE(452); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(562); + END_STATE(); + case 562: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(562); END_STATE(); default: return false; @@ -89,48 +16427,386859 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { } static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 0}, - [2] = {.lex_state = 0}, - [3] = {.lex_state = 0}, + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 152, .external_lex_state = 2}, + [2] = {.lex_state = 41, .external_lex_state = 3}, + [3] = {.lex_state = 41, .external_lex_state = 3}, + [4] = {.lex_state = 41, .external_lex_state = 3}, + [5] = {.lex_state = 41, .external_lex_state = 3}, + [6] = {.lex_state = 41, .external_lex_state = 3}, + [7] = {.lex_state = 41, .external_lex_state = 3}, + [8] = {.lex_state = 41, .external_lex_state = 3}, + [9] = {.lex_state = 41, .external_lex_state = 3}, + [10] = {.lex_state = 41, .external_lex_state = 3}, + [11] = {.lex_state = 41, .external_lex_state = 3}, + [12] = {.lex_state = 41, .external_lex_state = 3}, + [13] = {.lex_state = 41, .external_lex_state = 3}, + [14] = {.lex_state = 41, .external_lex_state = 4}, + [15] = {.lex_state = 41, .external_lex_state = 4}, + [16] = {.lex_state = 41, .external_lex_state = 4}, + [17] = {.lex_state = 41, .external_lex_state = 4}, + [18] = {.lex_state = 41, .external_lex_state = 4}, + [19] = {.lex_state = 41, .external_lex_state = 4}, + [20] = {.lex_state = 41, .external_lex_state = 4}, + [21] = {.lex_state = 41, .external_lex_state = 4}, + [22] = {.lex_state = 41, .external_lex_state = 4}, + [23] = {.lex_state = 41, .external_lex_state = 4}, + [24] = {.lex_state = 41, .external_lex_state = 4}, + [25] = {.lex_state = 41, .external_lex_state = 4}, + [26] = {.lex_state = 41, .external_lex_state = 4}, + [27] = {.lex_state = 41, .external_lex_state = 4}, + [28] = {.lex_state = 41, .external_lex_state = 4}, + [29] = {.lex_state = 41, .external_lex_state = 4}, + [30] = {.lex_state = 41, .external_lex_state = 4}, + [31] = {.lex_state = 41, .external_lex_state = 4}, + [32] = {.lex_state = 41, .external_lex_state = 4}, + [33] = {.lex_state = 41, .external_lex_state = 4}, + [34] = {.lex_state = 41, .external_lex_state = 4}, + [35] = {.lex_state = 41, .external_lex_state = 4}, + [36] = {.lex_state = 41, .external_lex_state = 4}, + [37] = {.lex_state = 41, .external_lex_state = 4}, + [38] = {.lex_state = 41, .external_lex_state = 4}, + [39] = {.lex_state = 41, .external_lex_state = 4}, + [40] = {.lex_state = 41, .external_lex_state = 4}, + [41] = {.lex_state = 41, .external_lex_state = 4}, + [42] = {.lex_state = 41, .external_lex_state = 3}, + [43] = {.lex_state = 41, .external_lex_state = 3}, + [44] = {.lex_state = 41, .external_lex_state = 3}, + [45] = {.lex_state = 41, .external_lex_state = 4}, + [46] = {.lex_state = 41, .external_lex_state = 3}, + [47] = {.lex_state = 41, .external_lex_state = 4}, + [48] = {.lex_state = 41, .external_lex_state = 3}, + [49] = {.lex_state = 159, .external_lex_state = 5}, + [50] = {.lex_state = 41, .external_lex_state = 3}, + [51] = {.lex_state = 41, .external_lex_state = 4}, + [52] = {.lex_state = 41, .external_lex_state = 4}, + [53] = {.lex_state = 41, .external_lex_state = 4}, + [54] = {.lex_state = 41, .external_lex_state = 4}, + [55] = {.lex_state = 41, .external_lex_state = 4}, + [56] = {.lex_state = 41, .external_lex_state = 3}, + [57] = {.lex_state = 41, .external_lex_state = 4}, + [58] = {.lex_state = 41, .external_lex_state = 3}, + [59] = {.lex_state = 41, .external_lex_state = 3}, + [60] = {.lex_state = 41, .external_lex_state = 4}, + [61] = {.lex_state = 159, .external_lex_state = 5}, + [62] = {.lex_state = 159, .external_lex_state = 5}, + [63] = {.lex_state = 41, .external_lex_state = 3}, + [64] = {.lex_state = 41, .external_lex_state = 4}, + [65] = {.lex_state = 41, .external_lex_state = 3}, + [66] = {.lex_state = 41, .external_lex_state = 3}, + [67] = {.lex_state = 41, .external_lex_state = 3}, + [68] = {.lex_state = 41, .external_lex_state = 3}, + [69] = {.lex_state = 41, .external_lex_state = 4}, + [70] = {.lex_state = 41, .external_lex_state = 4}, + [71] = {.lex_state = 41, .external_lex_state = 4}, + [72] = {.lex_state = 41, .external_lex_state = 4}, + [73] = {.lex_state = 41, .external_lex_state = 4}, + [74] = {.lex_state = 41, .external_lex_state = 3}, + [75] = {.lex_state = 41, .external_lex_state = 4}, + [76] = {.lex_state = 41, .external_lex_state = 4}, + [77] = {.lex_state = 41, .external_lex_state = 3}, + [78] = {.lex_state = 41, .external_lex_state = 4}, + [79] = {.lex_state = 41, .external_lex_state = 4}, + [80] = {.lex_state = 41, .external_lex_state = 4}, + [81] = {.lex_state = 41, .external_lex_state = 4}, + [82] = {.lex_state = 41, .external_lex_state = 4}, + [83] = {.lex_state = 41, .external_lex_state = 4}, + [84] = {.lex_state = 41, .external_lex_state = 4}, + [85] = {.lex_state = 41, .external_lex_state = 4}, + [86] = {.lex_state = 159, .external_lex_state = 5}, + [87] = {.lex_state = 159, .external_lex_state = 5}, + [88] = {.lex_state = 159, .external_lex_state = 5}, + [89] = {.lex_state = 41, .external_lex_state = 4}, + [90] = {.lex_state = 159, .external_lex_state = 5}, + [91] = {.lex_state = 159, .external_lex_state = 5}, + [92] = {.lex_state = 41, .external_lex_state = 4}, + [93] = {.lex_state = 41, .external_lex_state = 4}, + [94] = {.lex_state = 41, .external_lex_state = 4}, + [95] = {.lex_state = 41, .external_lex_state = 4}, + [96] = {.lex_state = 159, .external_lex_state = 5}, + [97] = {.lex_state = 159, .external_lex_state = 4}, + [98] = {.lex_state = 41, .external_lex_state = 4}, + [99] = {.lex_state = 159, .external_lex_state = 5}, + [100] = {.lex_state = 159, .external_lex_state = 5}, + [101] = {.lex_state = 41, .external_lex_state = 4}, + [102] = {.lex_state = 41, .external_lex_state = 4}, + [103] = {.lex_state = 41, .external_lex_state = 4}, + [104] = {.lex_state = 41, .external_lex_state = 4}, + [105] = {.lex_state = 41, .external_lex_state = 4}, + [106] = {.lex_state = 41, .external_lex_state = 4}, + [107] = {.lex_state = 41, .external_lex_state = 4}, + [108] = {.lex_state = 159, .external_lex_state = 5}, + [109] = {.lex_state = 159, .external_lex_state = 5}, + [110] = {.lex_state = 159, .external_lex_state = 4}, + [111] = {.lex_state = 42, .external_lex_state = 5}, + [112] = {.lex_state = 42, .external_lex_state = 5}, + [113] = {.lex_state = 159, .external_lex_state = 5}, + [114] = {.lex_state = 159, .external_lex_state = 5}, + [115] = {.lex_state = 159, .external_lex_state = 5}, + [116] = {.lex_state = 159, .external_lex_state = 5}, + [117] = {.lex_state = 159, .external_lex_state = 5}, + [118] = {.lex_state = 159, .external_lex_state = 4}, + [119] = {.lex_state = 42, .external_lex_state = 5}, + [120] = {.lex_state = 159, .external_lex_state = 5}, + [121] = {.lex_state = 159, .external_lex_state = 5}, + [122] = {.lex_state = 159, .external_lex_state = 5}, + [123] = {.lex_state = 159, .external_lex_state = 5}, + [124] = {.lex_state = 159, .external_lex_state = 4}, + [125] = {.lex_state = 159, .external_lex_state = 5}, + [126] = {.lex_state = 159, .external_lex_state = 5}, + [127] = {.lex_state = 41, .external_lex_state = 4}, + [128] = {.lex_state = 41, .external_lex_state = 4}, + [129] = {.lex_state = 41, .external_lex_state = 4}, + [130] = {.lex_state = 159, .external_lex_state = 4}, + [131] = {.lex_state = 41, .external_lex_state = 4}, + [132] = {.lex_state = 159, .external_lex_state = 5}, + [133] = {.lex_state = 41, .external_lex_state = 4}, + [134] = {.lex_state = 159, .external_lex_state = 4}, + [135] = {.lex_state = 159, .external_lex_state = 5}, + [136] = {.lex_state = 41, .external_lex_state = 4}, + [137] = {.lex_state = 41, .external_lex_state = 4}, + [138] = {.lex_state = 41, .external_lex_state = 4}, + [139] = {.lex_state = 41, .external_lex_state = 4}, + [140] = {.lex_state = 41, .external_lex_state = 4}, + [141] = {.lex_state = 159, .external_lex_state = 4}, + [142] = {.lex_state = 41, .external_lex_state = 4}, + [143] = {.lex_state = 159, .external_lex_state = 5}, + [144] = {.lex_state = 41, .external_lex_state = 4}, + [145] = {.lex_state = 41, .external_lex_state = 4}, + [146] = {.lex_state = 42, .external_lex_state = 4}, + [147] = {.lex_state = 41, .external_lex_state = 4}, + [148] = {.lex_state = 41, .external_lex_state = 4}, + [149] = {.lex_state = 41, .external_lex_state = 4}, + [150] = {.lex_state = 41, .external_lex_state = 4}, + [151] = {.lex_state = 41, .external_lex_state = 4}, + [152] = {.lex_state = 41, .external_lex_state = 4}, + [153] = {.lex_state = 159, .external_lex_state = 4}, + [154] = {.lex_state = 41, .external_lex_state = 4}, + [155] = {.lex_state = 41, .external_lex_state = 4}, + [156] = {.lex_state = 41, .external_lex_state = 4}, + [157] = {.lex_state = 41, .external_lex_state = 4}, + [158] = {.lex_state = 41, .external_lex_state = 4}, + [159] = {.lex_state = 41, .external_lex_state = 4}, + [160] = {.lex_state = 41, .external_lex_state = 4}, + [161] = {.lex_state = 41, .external_lex_state = 4}, + [162] = {.lex_state = 41, .external_lex_state = 4}, + [163] = {.lex_state = 41, .external_lex_state = 4}, + [164] = {.lex_state = 41, .external_lex_state = 4}, + [165] = {.lex_state = 41, .external_lex_state = 4}, + [166] = {.lex_state = 41, .external_lex_state = 4}, + [167] = {.lex_state = 41, .external_lex_state = 4}, + [168] = {.lex_state = 41, .external_lex_state = 4}, + [169] = {.lex_state = 41, .external_lex_state = 4}, + [170] = {.lex_state = 41, .external_lex_state = 4}, + [171] = {.lex_state = 41, .external_lex_state = 4}, + [172] = {.lex_state = 41, .external_lex_state = 4}, + [173] = {.lex_state = 41, .external_lex_state = 4}, + [174] = {.lex_state = 41, .external_lex_state = 4}, + [175] = {.lex_state = 41, .external_lex_state = 4}, + [176] = {.lex_state = 41, .external_lex_state = 4}, + [177] = {.lex_state = 41, .external_lex_state = 4}, + [178] = {.lex_state = 41, .external_lex_state = 4}, + [179] = {.lex_state = 41, .external_lex_state = 4}, + [180] = {.lex_state = 41, .external_lex_state = 4}, + [181] = {.lex_state = 41, .external_lex_state = 4}, + [182] = {.lex_state = 41, .external_lex_state = 4}, + [183] = {.lex_state = 41, .external_lex_state = 4}, + [184] = {.lex_state = 41, .external_lex_state = 4}, + [185] = {.lex_state = 41, .external_lex_state = 4}, + [186] = {.lex_state = 41, .external_lex_state = 4}, + [187] = {.lex_state = 41, .external_lex_state = 4}, + [188] = {.lex_state = 41, .external_lex_state = 4}, + [189] = {.lex_state = 41, .external_lex_state = 4}, + [190] = {.lex_state = 41, .external_lex_state = 4}, + [191] = {.lex_state = 41, .external_lex_state = 4}, + [192] = {.lex_state = 41, .external_lex_state = 4}, + [193] = {.lex_state = 41, .external_lex_state = 4}, + [194] = {.lex_state = 41, .external_lex_state = 4}, + [195] = {.lex_state = 41, .external_lex_state = 4}, + [196] = {.lex_state = 41, .external_lex_state = 4}, + [197] = {.lex_state = 41, .external_lex_state = 4}, + [198] = {.lex_state = 41, .external_lex_state = 4}, + [199] = {.lex_state = 41, .external_lex_state = 4}, + [200] = {.lex_state = 41, .external_lex_state = 4}, + [201] = {.lex_state = 159, .external_lex_state = 4}, + [202] = {.lex_state = 41, .external_lex_state = 4}, + [203] = {.lex_state = 159, .external_lex_state = 4}, + [204] = {.lex_state = 41, .external_lex_state = 4}, + [205] = {.lex_state = 41, .external_lex_state = 4}, + [206] = {.lex_state = 41, .external_lex_state = 4}, + [207] = {.lex_state = 41, .external_lex_state = 4}, + [208] = {.lex_state = 41, .external_lex_state = 4}, + [209] = {.lex_state = 41, .external_lex_state = 4}, + [210] = {.lex_state = 41, .external_lex_state = 4}, + [211] = {.lex_state = 41, .external_lex_state = 4}, + [212] = {.lex_state = 41, .external_lex_state = 4}, + [213] = {.lex_state = 41, .external_lex_state = 4}, + [214] = {.lex_state = 41, .external_lex_state = 4}, + [215] = {.lex_state = 41, .external_lex_state = 4}, + [216] = {.lex_state = 41, .external_lex_state = 4}, + [217] = {.lex_state = 41, .external_lex_state = 4}, + [218] = {.lex_state = 41, .external_lex_state = 4}, + [219] = {.lex_state = 41, .external_lex_state = 4}, + [220] = {.lex_state = 41, .external_lex_state = 4}, + [221] = {.lex_state = 41, .external_lex_state = 4}, + [222] = {.lex_state = 41, .external_lex_state = 4}, + [223] = {.lex_state = 41, .external_lex_state = 4}, + [224] = {.lex_state = 41, .external_lex_state = 4}, + [225] = {.lex_state = 41, .external_lex_state = 4}, + [226] = {.lex_state = 41, .external_lex_state = 4}, + [227] = {.lex_state = 41, .external_lex_state = 4}, + [228] = {.lex_state = 41, .external_lex_state = 4}, + [229] = {.lex_state = 41, .external_lex_state = 4}, + [230] = {.lex_state = 41, .external_lex_state = 4}, + [231] = {.lex_state = 41, .external_lex_state = 4}, + [232] = {.lex_state = 44, .external_lex_state = 4}, + [233] = {.lex_state = 44, .external_lex_state = 4}, + [234] = {.lex_state = 41, .external_lex_state = 4}, + [235] = {.lex_state = 41, .external_lex_state = 4}, + [236] = {.lex_state = 44, .external_lex_state = 4}, + [237] = {.lex_state = 41, .external_lex_state = 4}, + [238] = {.lex_state = 41, .external_lex_state = 4}, + [239] = {.lex_state = 41, .external_lex_state = 4}, + [240] = {.lex_state = 41, .external_lex_state = 4}, + [241] = {.lex_state = 41, .external_lex_state = 4}, + [242] = {.lex_state = 44, .external_lex_state = 4}, + [243] = {.lex_state = 41, .external_lex_state = 4}, + [244] = {.lex_state = 41, .external_lex_state = 4}, + [245] = {.lex_state = 41, .external_lex_state = 4}, + [246] = {.lex_state = 41, .external_lex_state = 4}, + [247] = {.lex_state = 41, .external_lex_state = 4}, + [248] = {.lex_state = 41, .external_lex_state = 4}, + [249] = {.lex_state = 41, .external_lex_state = 4}, + [250] = {.lex_state = 44, .external_lex_state = 4}, + [251] = {.lex_state = 41, .external_lex_state = 4}, + [252] = {.lex_state = 41, .external_lex_state = 4}, + [253] = {.lex_state = 41, .external_lex_state = 4}, + [254] = {.lex_state = 41, .external_lex_state = 4}, + [255] = {.lex_state = 41, .external_lex_state = 4}, + [256] = {.lex_state = 44, .external_lex_state = 4}, + [257] = {.lex_state = 41, .external_lex_state = 4}, + [258] = {.lex_state = 44, .external_lex_state = 4}, + [259] = {.lex_state = 41, .external_lex_state = 4}, + [260] = {.lex_state = 44, .external_lex_state = 4}, + [261] = {.lex_state = 41, .external_lex_state = 4}, + [262] = {.lex_state = 41, .external_lex_state = 4}, + [263] = {.lex_state = 41, .external_lex_state = 4}, + [264] = {.lex_state = 41, .external_lex_state = 4}, + [265] = {.lex_state = 41, .external_lex_state = 4}, + [266] = {.lex_state = 41, .external_lex_state = 4}, + [267] = {.lex_state = 41, .external_lex_state = 4}, + [268] = {.lex_state = 41, .external_lex_state = 4}, + [269] = {.lex_state = 44, .external_lex_state = 4}, + [270] = {.lex_state = 41, .external_lex_state = 4}, + [271] = {.lex_state = 41, .external_lex_state = 4}, + [272] = {.lex_state = 41, .external_lex_state = 4}, + [273] = {.lex_state = 44, .external_lex_state = 4}, + [274] = {.lex_state = 41, .external_lex_state = 4}, + [275] = {.lex_state = 41, .external_lex_state = 4}, + [276] = {.lex_state = 41, .external_lex_state = 4}, + [277] = {.lex_state = 44, .external_lex_state = 4}, + [278] = {.lex_state = 41, .external_lex_state = 4}, + [279] = {.lex_state = 41, .external_lex_state = 4}, + [280] = {.lex_state = 44, .external_lex_state = 4}, + [281] = {.lex_state = 41, .external_lex_state = 4}, + [282] = {.lex_state = 41, .external_lex_state = 4}, + [283] = {.lex_state = 41, .external_lex_state = 4}, + [284] = {.lex_state = 41, .external_lex_state = 4}, + [285] = {.lex_state = 41, .external_lex_state = 4}, + [286] = {.lex_state = 44, .external_lex_state = 4}, + [287] = {.lex_state = 44, .external_lex_state = 4}, + [288] = {.lex_state = 41, .external_lex_state = 4}, + [289] = {.lex_state = 41, .external_lex_state = 4}, + [290] = {.lex_state = 41, .external_lex_state = 4}, + [291] = {.lex_state = 41, .external_lex_state = 4}, + [292] = {.lex_state = 41, .external_lex_state = 4}, + [293] = {.lex_state = 41, .external_lex_state = 4}, + [294] = {.lex_state = 41, .external_lex_state = 4}, + [295] = {.lex_state = 41, .external_lex_state = 4}, + [296] = {.lex_state = 41, .external_lex_state = 4}, + [297] = {.lex_state = 41, .external_lex_state = 4}, + [298] = {.lex_state = 41, .external_lex_state = 4}, + [299] = {.lex_state = 41, .external_lex_state = 4}, + [300] = {.lex_state = 41, .external_lex_state = 4}, + [301] = {.lex_state = 41, .external_lex_state = 4}, + [302] = {.lex_state = 41, .external_lex_state = 4}, + [303] = {.lex_state = 41, .external_lex_state = 4}, + [304] = {.lex_state = 41, .external_lex_state = 4}, + [305] = {.lex_state = 41, .external_lex_state = 4}, + [306] = {.lex_state = 41, .external_lex_state = 4}, + [307] = {.lex_state = 41, .external_lex_state = 4}, + [308] = {.lex_state = 41, .external_lex_state = 4}, + [309] = {.lex_state = 41, .external_lex_state = 4}, + [310] = {.lex_state = 41, .external_lex_state = 4}, + [311] = {.lex_state = 41, .external_lex_state = 4}, + [312] = {.lex_state = 41, .external_lex_state = 4}, + [313] = {.lex_state = 41, .external_lex_state = 4}, + [314] = {.lex_state = 41, .external_lex_state = 4}, + [315] = {.lex_state = 41, .external_lex_state = 4}, + [316] = {.lex_state = 41, .external_lex_state = 4}, + [317] = {.lex_state = 41, .external_lex_state = 4}, + [318] = {.lex_state = 41, .external_lex_state = 4}, + [319] = {.lex_state = 41, .external_lex_state = 4}, + [320] = {.lex_state = 41, .external_lex_state = 4}, + [321] = {.lex_state = 41, .external_lex_state = 4}, + [322] = {.lex_state = 41, .external_lex_state = 4}, + [323] = {.lex_state = 41, .external_lex_state = 4}, + [324] = {.lex_state = 41, .external_lex_state = 4}, + [325] = {.lex_state = 41, .external_lex_state = 4}, + [326] = {.lex_state = 41, .external_lex_state = 4}, + [327] = {.lex_state = 41, .external_lex_state = 4}, + [328] = {.lex_state = 41, .external_lex_state = 4}, + [329] = {.lex_state = 41, .external_lex_state = 4}, + [330] = {.lex_state = 41, .external_lex_state = 4}, + [331] = {.lex_state = 41, .external_lex_state = 4}, + [332] = {.lex_state = 41, .external_lex_state = 4}, + [333] = {.lex_state = 41, .external_lex_state = 4}, + [334] = {.lex_state = 41, .external_lex_state = 4}, + [335] = {.lex_state = 41, .external_lex_state = 4}, + [336] = {.lex_state = 41, .external_lex_state = 4}, + [337] = {.lex_state = 41, .external_lex_state = 4}, + [338] = {.lex_state = 41, .external_lex_state = 4}, + [339] = {.lex_state = 41, .external_lex_state = 4}, + [340] = {.lex_state = 41, .external_lex_state = 4}, + [341] = {.lex_state = 41, .external_lex_state = 4}, + [342] = {.lex_state = 41, .external_lex_state = 4}, + [343] = {.lex_state = 41, .external_lex_state = 4}, + [344] = {.lex_state = 41, .external_lex_state = 4}, + [345] = {.lex_state = 41, .external_lex_state = 4}, + [346] = {.lex_state = 41, .external_lex_state = 4}, + [347] = {.lex_state = 41, .external_lex_state = 4}, + [348] = {.lex_state = 41, .external_lex_state = 4}, + [349] = {.lex_state = 41, .external_lex_state = 4}, + [350] = {.lex_state = 41, .external_lex_state = 4}, + [351] = {.lex_state = 41, .external_lex_state = 4}, + [352] = {.lex_state = 41, .external_lex_state = 4}, + [353] = {.lex_state = 41, .external_lex_state = 4}, + [354] = {.lex_state = 41, .external_lex_state = 4}, + [355] = {.lex_state = 41, .external_lex_state = 4}, + [356] = {.lex_state = 41, .external_lex_state = 4}, + [357] = {.lex_state = 41, .external_lex_state = 4}, + [358] = {.lex_state = 41, .external_lex_state = 4}, + [359] = {.lex_state = 41, .external_lex_state = 4}, + [360] = {.lex_state = 41, .external_lex_state = 4}, + [361] = {.lex_state = 41, .external_lex_state = 4}, + [362] = {.lex_state = 41, .external_lex_state = 4}, + [363] = {.lex_state = 41, .external_lex_state = 4}, + [364] = {.lex_state = 45, .external_lex_state = 2}, + [365] = {.lex_state = 45, .external_lex_state = 2}, + [366] = {.lex_state = 45, .external_lex_state = 2}, + [367] = {.lex_state = 45, .external_lex_state = 2}, + [368] = {.lex_state = 45, .external_lex_state = 2}, + [369] = {.lex_state = 45, .external_lex_state = 2}, + [370] = {.lex_state = 45, .external_lex_state = 2}, + [371] = {.lex_state = 45, .external_lex_state = 2}, + [372] = {.lex_state = 45, .external_lex_state = 2}, + [373] = {.lex_state = 45, .external_lex_state = 2}, + [374] = {.lex_state = 45, .external_lex_state = 2}, + [375] = {.lex_state = 45, .external_lex_state = 6}, + [376] = {.lex_state = 45, .external_lex_state = 2}, + [377] = {.lex_state = 45, .external_lex_state = 2}, + [378] = {.lex_state = 45, .external_lex_state = 2}, + [379] = {.lex_state = 45, .external_lex_state = 2}, + [380] = {.lex_state = 45, .external_lex_state = 2}, + [381] = {.lex_state = 45, .external_lex_state = 2}, + [382] = {.lex_state = 45, .external_lex_state = 2}, + [383] = {.lex_state = 45, .external_lex_state = 2}, + [384] = {.lex_state = 45, .external_lex_state = 2}, + [385] = {.lex_state = 45, .external_lex_state = 2}, + [386] = {.lex_state = 45, .external_lex_state = 2}, + [387] = {.lex_state = 45, .external_lex_state = 2}, + [388] = {.lex_state = 45, .external_lex_state = 2}, + [389] = {.lex_state = 45, .external_lex_state = 2}, + [390] = {.lex_state = 45, .external_lex_state = 2}, + [391] = {.lex_state = 45, .external_lex_state = 2}, + [392] = {.lex_state = 45, .external_lex_state = 2}, + [393] = {.lex_state = 45, .external_lex_state = 2}, + [394] = {.lex_state = 45, .external_lex_state = 2}, + [395] = {.lex_state = 45, .external_lex_state = 2}, + [396] = {.lex_state = 45, .external_lex_state = 2}, + [397] = {.lex_state = 45, .external_lex_state = 2}, + [398] = {.lex_state = 45, .external_lex_state = 2}, + [399] = {.lex_state = 45, .external_lex_state = 2}, + [400] = {.lex_state = 45, .external_lex_state = 2}, + [401] = {.lex_state = 45, .external_lex_state = 2}, + [402] = {.lex_state = 45, .external_lex_state = 2}, + [403] = {.lex_state = 45, .external_lex_state = 2}, + [404] = {.lex_state = 45, .external_lex_state = 2}, + [405] = {.lex_state = 45, .external_lex_state = 2}, + [406] = {.lex_state = 46, .external_lex_state = 6}, + [407] = {.lex_state = 152, .external_lex_state = 6}, + [408] = {.lex_state = 45, .external_lex_state = 2}, + [409] = {.lex_state = 45, .external_lex_state = 2}, + [410] = {.lex_state = 45, .external_lex_state = 2}, + [411] = {.lex_state = 45, .external_lex_state = 2}, + [412] = {.lex_state = 152, .external_lex_state = 2}, + [413] = {.lex_state = 45, .external_lex_state = 2}, + [414] = {.lex_state = 45, .external_lex_state = 2}, + [415] = {.lex_state = 45, .external_lex_state = 2}, + [416] = {.lex_state = 45, .external_lex_state = 2}, + [417] = {.lex_state = 45, .external_lex_state = 2}, + [418] = {.lex_state = 45, .external_lex_state = 2}, + [419] = {.lex_state = 45, .external_lex_state = 2}, + [420] = {.lex_state = 46, .external_lex_state = 2}, + [421] = {.lex_state = 45, .external_lex_state = 2}, + [422] = {.lex_state = 152, .external_lex_state = 2}, + [423] = {.lex_state = 46, .external_lex_state = 2}, + [424] = {.lex_state = 152, .external_lex_state = 6}, + [425] = {.lex_state = 152, .external_lex_state = 6}, + [426] = {.lex_state = 152, .external_lex_state = 6}, + [427] = {.lex_state = 152, .external_lex_state = 2}, + [428] = {.lex_state = 152, .external_lex_state = 6}, + [429] = {.lex_state = 152, .external_lex_state = 6}, + [430] = {.lex_state = 152, .external_lex_state = 6}, + [431] = {.lex_state = 152, .external_lex_state = 6}, + [432] = {.lex_state = 46, .external_lex_state = 2}, + [433] = {.lex_state = 152, .external_lex_state = 6}, + [434] = {.lex_state = 152, .external_lex_state = 2}, + [435] = {.lex_state = 152, .external_lex_state = 6}, + [436] = {.lex_state = 46, .external_lex_state = 2}, + [437] = {.lex_state = 152, .external_lex_state = 6}, + [438] = {.lex_state = 152, .external_lex_state = 2}, + [439] = {.lex_state = 152, .external_lex_state = 6}, + [440] = {.lex_state = 152, .external_lex_state = 2}, + [441] = {.lex_state = 46, .external_lex_state = 2}, + [442] = {.lex_state = 152, .external_lex_state = 2}, + [443] = {.lex_state = 152, .external_lex_state = 2}, + [444] = {.lex_state = 152, .external_lex_state = 6}, + [445] = {.lex_state = 152, .external_lex_state = 6}, + [446] = {.lex_state = 152, .external_lex_state = 2}, + [447] = {.lex_state = 152, .external_lex_state = 6}, + [448] = {.lex_state = 152, .external_lex_state = 2}, + [449] = {.lex_state = 152, .external_lex_state = 2}, + [450] = {.lex_state = 152, .external_lex_state = 6}, + [451] = {.lex_state = 152, .external_lex_state = 6}, + [452] = {.lex_state = 152, .external_lex_state = 2}, + [453] = {.lex_state = 152, .external_lex_state = 2}, + [454] = {.lex_state = 152, .external_lex_state = 2}, + [455] = {.lex_state = 152, .external_lex_state = 6}, + [456] = {.lex_state = 152, .external_lex_state = 6}, + [457] = {.lex_state = 152, .external_lex_state = 6}, + [458] = {.lex_state = 152, .external_lex_state = 2}, + [459] = {.lex_state = 152, .external_lex_state = 6}, + [460] = {.lex_state = 152, .external_lex_state = 2}, + [461] = {.lex_state = 152, .external_lex_state = 6}, + [462] = {.lex_state = 152, .external_lex_state = 6}, + [463] = {.lex_state = 152, .external_lex_state = 6}, + [464] = {.lex_state = 152, .external_lex_state = 6}, + [465] = {.lex_state = 152, .external_lex_state = 6}, + [466] = {.lex_state = 152, .external_lex_state = 6}, + [467] = {.lex_state = 152, .external_lex_state = 2}, + [468] = {.lex_state = 152, .external_lex_state = 6}, + [469] = {.lex_state = 152, .external_lex_state = 2}, + [470] = {.lex_state = 152, .external_lex_state = 2}, + [471] = {.lex_state = 152, .external_lex_state = 6}, + [472] = {.lex_state = 152, .external_lex_state = 2}, + [473] = {.lex_state = 152, .external_lex_state = 6}, + [474] = {.lex_state = 152, .external_lex_state = 6}, + [475] = {.lex_state = 152, .external_lex_state = 6}, + [476] = {.lex_state = 152, .external_lex_state = 2}, + [477] = {.lex_state = 152, .external_lex_state = 6}, + [478] = {.lex_state = 152, .external_lex_state = 6}, + [479] = {.lex_state = 152, .external_lex_state = 6}, + [480] = {.lex_state = 152, .external_lex_state = 6}, + [481] = {.lex_state = 152, .external_lex_state = 2}, + [482] = {.lex_state = 152, .external_lex_state = 2}, + [483] = {.lex_state = 152, .external_lex_state = 6}, + [484] = {.lex_state = 152, .external_lex_state = 6}, + [485] = {.lex_state = 152, .external_lex_state = 6}, + [486] = {.lex_state = 152, .external_lex_state = 2}, + [487] = {.lex_state = 152, .external_lex_state = 6}, + [488] = {.lex_state = 152, .external_lex_state = 6}, + [489] = {.lex_state = 152, .external_lex_state = 2}, + [490] = {.lex_state = 152, .external_lex_state = 2}, + [491] = {.lex_state = 152, .external_lex_state = 6}, + [492] = {.lex_state = 152, .external_lex_state = 2}, + [493] = {.lex_state = 152, .external_lex_state = 6}, + [494] = {.lex_state = 152, .external_lex_state = 6}, + [495] = {.lex_state = 152, .external_lex_state = 6}, + [496] = {.lex_state = 152, .external_lex_state = 2}, + [497] = {.lex_state = 152, .external_lex_state = 2}, + [498] = {.lex_state = 152, .external_lex_state = 6}, + [499] = {.lex_state = 152, .external_lex_state = 6}, + [500] = {.lex_state = 152, .external_lex_state = 6}, + [501] = {.lex_state = 152, .external_lex_state = 2}, + [502] = {.lex_state = 152, .external_lex_state = 2}, + [503] = {.lex_state = 152, .external_lex_state = 2}, + [504] = {.lex_state = 152, .external_lex_state = 2}, + [505] = {.lex_state = 152, .external_lex_state = 2}, + [506] = {.lex_state = 152, .external_lex_state = 6}, + [507] = {.lex_state = 152, .external_lex_state = 2}, + [508] = {.lex_state = 152, .external_lex_state = 6}, + [509] = {.lex_state = 152, .external_lex_state = 6}, + [510] = {.lex_state = 152, .external_lex_state = 6}, + [511] = {.lex_state = 152, .external_lex_state = 6}, + [512] = {.lex_state = 152, .external_lex_state = 6}, + [513] = {.lex_state = 152, .external_lex_state = 6}, + [514] = {.lex_state = 152, .external_lex_state = 6}, + [515] = {.lex_state = 152, .external_lex_state = 6}, + [516] = {.lex_state = 152, .external_lex_state = 6}, + [517] = {.lex_state = 152, .external_lex_state = 2}, + [518] = {.lex_state = 152, .external_lex_state = 6}, + [519] = {.lex_state = 152, .external_lex_state = 2}, + [520] = {.lex_state = 152, .external_lex_state = 6}, + [521] = {.lex_state = 152, .external_lex_state = 2}, + [522] = {.lex_state = 152, .external_lex_state = 6}, + [523] = {.lex_state = 152, .external_lex_state = 6}, + [524] = {.lex_state = 152, .external_lex_state = 6}, + [525] = {.lex_state = 152, .external_lex_state = 6}, + [526] = {.lex_state = 152, .external_lex_state = 2}, + [527] = {.lex_state = 152, .external_lex_state = 6}, + [528] = {.lex_state = 152, .external_lex_state = 6}, + [529] = {.lex_state = 152, .external_lex_state = 2}, + [530] = {.lex_state = 152, .external_lex_state = 2}, + [531] = {.lex_state = 152, .external_lex_state = 2}, + [532] = {.lex_state = 152, .external_lex_state = 6}, + [533] = {.lex_state = 152, .external_lex_state = 6}, + [534] = {.lex_state = 152, .external_lex_state = 2}, + [535] = {.lex_state = 152, .external_lex_state = 2}, + [536] = {.lex_state = 152, .external_lex_state = 6}, + [537] = {.lex_state = 152, .external_lex_state = 6}, + [538] = {.lex_state = 152, .external_lex_state = 6}, + [539] = {.lex_state = 152, .external_lex_state = 6}, + [540] = {.lex_state = 152, .external_lex_state = 2}, + [541] = {.lex_state = 152, .external_lex_state = 6}, + [542] = {.lex_state = 152, .external_lex_state = 6}, + [543] = {.lex_state = 152, .external_lex_state = 6}, + [544] = {.lex_state = 152, .external_lex_state = 6}, + [545] = {.lex_state = 152, .external_lex_state = 2}, + [546] = {.lex_state = 152, .external_lex_state = 6}, + [547] = {.lex_state = 152, .external_lex_state = 2}, + [548] = {.lex_state = 152, .external_lex_state = 2}, + [549] = {.lex_state = 152, .external_lex_state = 6}, + [550] = {.lex_state = 152, .external_lex_state = 2}, + [551] = {.lex_state = 152, .external_lex_state = 6}, + [552] = {.lex_state = 152, .external_lex_state = 2}, + [553] = {.lex_state = 152, .external_lex_state = 6}, + [554] = {.lex_state = 152, .external_lex_state = 6}, + [555] = {.lex_state = 152, .external_lex_state = 2}, + [556] = {.lex_state = 152, .external_lex_state = 2}, + [557] = {.lex_state = 152, .external_lex_state = 6}, + [558] = {.lex_state = 152, .external_lex_state = 6}, + [559] = {.lex_state = 152, .external_lex_state = 6}, + [560] = {.lex_state = 152, .external_lex_state = 6}, + [561] = {.lex_state = 152, .external_lex_state = 2}, + [562] = {.lex_state = 152, .external_lex_state = 6}, + [563] = {.lex_state = 152, .external_lex_state = 6}, + [564] = {.lex_state = 152, .external_lex_state = 6}, + [565] = {.lex_state = 152, .external_lex_state = 2}, + [566] = {.lex_state = 152, .external_lex_state = 6}, + [567] = {.lex_state = 152, .external_lex_state = 2}, + [568] = {.lex_state = 152, .external_lex_state = 2}, + [569] = {.lex_state = 152, .external_lex_state = 2}, + [570] = {.lex_state = 152, .external_lex_state = 2}, + [571] = {.lex_state = 152, .external_lex_state = 2}, + [572] = {.lex_state = 152, .external_lex_state = 2}, + [573] = {.lex_state = 152, .external_lex_state = 6}, + [574] = {.lex_state = 152, .external_lex_state = 6}, + [575] = {.lex_state = 152, .external_lex_state = 6}, + [576] = {.lex_state = 152, .external_lex_state = 6}, + [577] = {.lex_state = 152, .external_lex_state = 6}, + [578] = {.lex_state = 152, .external_lex_state = 2}, + [579] = {.lex_state = 152, .external_lex_state = 6}, + [580] = {.lex_state = 152, .external_lex_state = 6}, + [581] = {.lex_state = 152, .external_lex_state = 2}, + [582] = {.lex_state = 152, .external_lex_state = 2}, + [583] = {.lex_state = 152, .external_lex_state = 6}, + [584] = {.lex_state = 152, .external_lex_state = 6}, + [585] = {.lex_state = 152, .external_lex_state = 6}, + [586] = {.lex_state = 152, .external_lex_state = 6}, + [587] = {.lex_state = 152, .external_lex_state = 6}, + [588] = {.lex_state = 152, .external_lex_state = 6}, + [589] = {.lex_state = 152, .external_lex_state = 2}, + [590] = {.lex_state = 152, .external_lex_state = 2}, + [591] = {.lex_state = 152, .external_lex_state = 2}, + [592] = {.lex_state = 152, .external_lex_state = 2}, + [593] = {.lex_state = 152, .external_lex_state = 2}, + [594] = {.lex_state = 152, .external_lex_state = 2}, + [595] = {.lex_state = 152, .external_lex_state = 2}, + [596] = {.lex_state = 152, .external_lex_state = 2}, + [597] = {.lex_state = 152, .external_lex_state = 2}, + [598] = {.lex_state = 152, .external_lex_state = 6}, + [599] = {.lex_state = 152, .external_lex_state = 2}, + [600] = {.lex_state = 152, .external_lex_state = 6}, + [601] = {.lex_state = 152, .external_lex_state = 2}, + [602] = {.lex_state = 152, .external_lex_state = 6}, + [603] = {.lex_state = 152, .external_lex_state = 6}, + [604] = {.lex_state = 152, .external_lex_state = 6}, + [605] = {.lex_state = 152, .external_lex_state = 6}, + [606] = {.lex_state = 152, .external_lex_state = 2}, + [607] = {.lex_state = 152, .external_lex_state = 6}, + [608] = {.lex_state = 152, .external_lex_state = 2}, + [609] = {.lex_state = 152, .external_lex_state = 2}, + [610] = {.lex_state = 152, .external_lex_state = 2}, + [611] = {.lex_state = 152, .external_lex_state = 2}, + [612] = {.lex_state = 152, .external_lex_state = 2}, + [613] = {.lex_state = 152, .external_lex_state = 2}, + [614] = {.lex_state = 152, .external_lex_state = 2}, + [615] = {.lex_state = 152, .external_lex_state = 2}, + [616] = {.lex_state = 152, .external_lex_state = 2}, + [617] = {.lex_state = 152, .external_lex_state = 2}, + [618] = {.lex_state = 152, .external_lex_state = 2}, + [619] = {.lex_state = 152, .external_lex_state = 2}, + [620] = {.lex_state = 152, .external_lex_state = 2}, + [621] = {.lex_state = 152, .external_lex_state = 2}, + [622] = {.lex_state = 152, .external_lex_state = 2}, + [623] = {.lex_state = 152, .external_lex_state = 2}, + [624] = {.lex_state = 152, .external_lex_state = 2}, + [625] = {.lex_state = 152, .external_lex_state = 2}, + [626] = {.lex_state = 152, .external_lex_state = 2}, + [627] = {.lex_state = 152, .external_lex_state = 2}, + [628] = {.lex_state = 152, .external_lex_state = 2}, + [629] = {.lex_state = 152, .external_lex_state = 2}, + [630] = {.lex_state = 152, .external_lex_state = 2}, + [631] = {.lex_state = 152, .external_lex_state = 2}, + [632] = {.lex_state = 152, .external_lex_state = 2}, + [633] = {.lex_state = 152, .external_lex_state = 2}, + [634] = {.lex_state = 152, .external_lex_state = 2}, + [635] = {.lex_state = 152, .external_lex_state = 2}, + [636] = {.lex_state = 152, .external_lex_state = 2}, + [637] = {.lex_state = 152, .external_lex_state = 2}, + [638] = {.lex_state = 152, .external_lex_state = 2}, + [639] = {.lex_state = 152, .external_lex_state = 2}, + [640] = {.lex_state = 152, .external_lex_state = 2}, + [641] = {.lex_state = 152, .external_lex_state = 2}, + [642] = {.lex_state = 152, .external_lex_state = 2}, + [643] = {.lex_state = 152, .external_lex_state = 2}, + [644] = {.lex_state = 152, .external_lex_state = 2}, + [645] = {.lex_state = 152, .external_lex_state = 2}, + [646] = {.lex_state = 152, .external_lex_state = 2}, + [647] = {.lex_state = 152, .external_lex_state = 2}, + [648] = {.lex_state = 152, .external_lex_state = 2}, + [649] = {.lex_state = 152, .external_lex_state = 2}, + [650] = {.lex_state = 152, .external_lex_state = 2}, + [651] = {.lex_state = 152, .external_lex_state = 2}, + [652] = {.lex_state = 152, .external_lex_state = 2}, + [653] = {.lex_state = 152, .external_lex_state = 2}, + [654] = {.lex_state = 152, .external_lex_state = 2}, + [655] = {.lex_state = 152, .external_lex_state = 2}, + [656] = {.lex_state = 152, .external_lex_state = 2}, + [657] = {.lex_state = 152, .external_lex_state = 2}, + [658] = {.lex_state = 152, .external_lex_state = 2}, + [659] = {.lex_state = 152, .external_lex_state = 2}, + [660] = {.lex_state = 152, .external_lex_state = 2}, + [661] = {.lex_state = 152, .external_lex_state = 2}, + [662] = {.lex_state = 152, .external_lex_state = 2}, + [663] = {.lex_state = 152, .external_lex_state = 2}, + [664] = {.lex_state = 152, .external_lex_state = 2}, + [665] = {.lex_state = 152, .external_lex_state = 2}, + [666] = {.lex_state = 152, .external_lex_state = 2}, + [667] = {.lex_state = 152, .external_lex_state = 2}, + [668] = {.lex_state = 152, .external_lex_state = 2}, + [669] = {.lex_state = 152, .external_lex_state = 2}, + [670] = {.lex_state = 152, .external_lex_state = 2}, + [671] = {.lex_state = 152, .external_lex_state = 2}, + [672] = {.lex_state = 152, .external_lex_state = 2}, + [673] = {.lex_state = 152, .external_lex_state = 2}, + [674] = {.lex_state = 152, .external_lex_state = 2}, + [675] = {.lex_state = 152, .external_lex_state = 2}, + [676] = {.lex_state = 152, .external_lex_state = 2}, + [677] = {.lex_state = 152, .external_lex_state = 2}, + [678] = {.lex_state = 152, .external_lex_state = 2}, + [679] = {.lex_state = 152, .external_lex_state = 2}, + [680] = {.lex_state = 152, .external_lex_state = 2}, + [681] = {.lex_state = 152, .external_lex_state = 2}, + [682] = {.lex_state = 152, .external_lex_state = 2}, + [683] = {.lex_state = 152, .external_lex_state = 2}, + [684] = {.lex_state = 152, .external_lex_state = 2}, + [685] = {.lex_state = 152, .external_lex_state = 2}, + [686] = {.lex_state = 152, .external_lex_state = 2}, + [687] = {.lex_state = 152, .external_lex_state = 2}, + [688] = {.lex_state = 152, .external_lex_state = 2}, + [689] = {.lex_state = 152, .external_lex_state = 2}, + [690] = {.lex_state = 152, .external_lex_state = 2}, + [691] = {.lex_state = 152, .external_lex_state = 2}, + [692] = {.lex_state = 152, .external_lex_state = 2}, + [693] = {.lex_state = 152, .external_lex_state = 2}, + [694] = {.lex_state = 152, .external_lex_state = 2}, + [695] = {.lex_state = 152, .external_lex_state = 2}, + [696] = {.lex_state = 152, .external_lex_state = 2}, + [697] = {.lex_state = 152, .external_lex_state = 2}, + [698] = {.lex_state = 152, .external_lex_state = 2}, + [699] = {.lex_state = 152, .external_lex_state = 2}, + [700] = {.lex_state = 152, .external_lex_state = 2}, + [701] = {.lex_state = 152, .external_lex_state = 2}, + [702] = {.lex_state = 152, .external_lex_state = 2}, + [703] = {.lex_state = 152, .external_lex_state = 2}, + [704] = {.lex_state = 152, .external_lex_state = 2}, + [705] = {.lex_state = 152, .external_lex_state = 2}, + [706] = {.lex_state = 152, .external_lex_state = 2}, + [707] = {.lex_state = 152, .external_lex_state = 2}, + [708] = {.lex_state = 152, .external_lex_state = 2}, + [709] = {.lex_state = 152, .external_lex_state = 2}, + [710] = {.lex_state = 152, .external_lex_state = 2}, + [711] = {.lex_state = 152, .external_lex_state = 2}, + [712] = {.lex_state = 152, .external_lex_state = 2}, + [713] = {.lex_state = 152, .external_lex_state = 2}, + [714] = {.lex_state = 152, .external_lex_state = 2}, + [715] = {.lex_state = 152, .external_lex_state = 2}, + [716] = {.lex_state = 152, .external_lex_state = 2}, + [717] = {.lex_state = 152, .external_lex_state = 2}, + [718] = {.lex_state = 152, .external_lex_state = 2}, + [719] = {.lex_state = 152, .external_lex_state = 2}, + [720] = {.lex_state = 152, .external_lex_state = 2}, + [721] = {.lex_state = 152, .external_lex_state = 2}, + [722] = {.lex_state = 152, .external_lex_state = 2}, + [723] = {.lex_state = 152, .external_lex_state = 2}, + [724] = {.lex_state = 152, .external_lex_state = 2}, + [725] = {.lex_state = 152, .external_lex_state = 2}, + [726] = {.lex_state = 152, .external_lex_state = 2}, + [727] = {.lex_state = 152, .external_lex_state = 2}, + [728] = {.lex_state = 152, .external_lex_state = 2}, + [729] = {.lex_state = 152, .external_lex_state = 2}, + [730] = {.lex_state = 152, .external_lex_state = 2}, + [731] = {.lex_state = 152, .external_lex_state = 2}, + [732] = {.lex_state = 152, .external_lex_state = 2}, + [733] = {.lex_state = 152, .external_lex_state = 2}, + [734] = {.lex_state = 152, .external_lex_state = 2}, + [735] = {.lex_state = 152, .external_lex_state = 2}, + [736] = {.lex_state = 152, .external_lex_state = 2}, + [737] = {.lex_state = 152, .external_lex_state = 2}, + [738] = {.lex_state = 152, .external_lex_state = 2}, + [739] = {.lex_state = 152, .external_lex_state = 2}, + [740] = {.lex_state = 152, .external_lex_state = 2}, + [741] = {.lex_state = 152, .external_lex_state = 2}, + [742] = {.lex_state = 152, .external_lex_state = 2}, + [743] = {.lex_state = 152, .external_lex_state = 2}, + [744] = {.lex_state = 152, .external_lex_state = 2}, + [745] = {.lex_state = 152, .external_lex_state = 2}, + [746] = {.lex_state = 152, .external_lex_state = 2}, + [747] = {.lex_state = 152, .external_lex_state = 2}, + [748] = {.lex_state = 152, .external_lex_state = 2}, + [749] = {.lex_state = 152, .external_lex_state = 2}, + [750] = {.lex_state = 152, .external_lex_state = 2}, + [751] = {.lex_state = 152, .external_lex_state = 2}, + [752] = {.lex_state = 152, .external_lex_state = 2}, + [753] = {.lex_state = 152, .external_lex_state = 2}, + [754] = {.lex_state = 152, .external_lex_state = 2}, + [755] = {.lex_state = 152, .external_lex_state = 2}, + [756] = {.lex_state = 152, .external_lex_state = 2}, + [757] = {.lex_state = 152, .external_lex_state = 2}, + [758] = {.lex_state = 152, .external_lex_state = 2}, + [759] = {.lex_state = 152, .external_lex_state = 2}, + [760] = {.lex_state = 152, .external_lex_state = 2}, + [761] = {.lex_state = 152, .external_lex_state = 2}, + [762] = {.lex_state = 152, .external_lex_state = 2}, + [763] = {.lex_state = 152, .external_lex_state = 2}, + [764] = {.lex_state = 152, .external_lex_state = 2}, + [765] = {.lex_state = 152, .external_lex_state = 2}, + [766] = {.lex_state = 152, .external_lex_state = 2}, + [767] = {.lex_state = 152, .external_lex_state = 2}, + [768] = {.lex_state = 152, .external_lex_state = 2}, + [769] = {.lex_state = 152, .external_lex_state = 2}, + [770] = {.lex_state = 152, .external_lex_state = 2}, + [771] = {.lex_state = 152, .external_lex_state = 2}, + [772] = {.lex_state = 152, .external_lex_state = 2}, + [773] = {.lex_state = 152, .external_lex_state = 2}, + [774] = {.lex_state = 152, .external_lex_state = 2}, + [775] = {.lex_state = 152, .external_lex_state = 2}, + [776] = {.lex_state = 152, .external_lex_state = 2}, + [777] = {.lex_state = 152, .external_lex_state = 2}, + [778] = {.lex_state = 152, .external_lex_state = 2}, + [779] = {.lex_state = 152, .external_lex_state = 2}, + [780] = {.lex_state = 152, .external_lex_state = 2}, + [781] = {.lex_state = 152, .external_lex_state = 2}, + [782] = {.lex_state = 152, .external_lex_state = 2}, + [783] = {.lex_state = 152, .external_lex_state = 2}, + [784] = {.lex_state = 152, .external_lex_state = 2}, + [785] = {.lex_state = 152, .external_lex_state = 2}, + [786] = {.lex_state = 152, .external_lex_state = 2}, + [787] = {.lex_state = 152, .external_lex_state = 2}, + [788] = {.lex_state = 152, .external_lex_state = 2}, + [789] = {.lex_state = 152, .external_lex_state = 2}, + [790] = {.lex_state = 152, .external_lex_state = 2}, + [791] = {.lex_state = 152, .external_lex_state = 2}, + [792] = {.lex_state = 152, .external_lex_state = 2}, + [793] = {.lex_state = 152, .external_lex_state = 2}, + [794] = {.lex_state = 152, .external_lex_state = 2}, + [795] = {.lex_state = 152, .external_lex_state = 2}, + [796] = {.lex_state = 152, .external_lex_state = 2}, + [797] = {.lex_state = 152, .external_lex_state = 2}, + [798] = {.lex_state = 152, .external_lex_state = 2}, + [799] = {.lex_state = 152, .external_lex_state = 2}, + [800] = {.lex_state = 152, .external_lex_state = 2}, + [801] = {.lex_state = 152, .external_lex_state = 2}, + [802] = {.lex_state = 152, .external_lex_state = 2}, + [803] = {.lex_state = 152, .external_lex_state = 2}, + [804] = {.lex_state = 152, .external_lex_state = 2}, + [805] = {.lex_state = 152, .external_lex_state = 2}, + [806] = {.lex_state = 152, .external_lex_state = 2}, + [807] = {.lex_state = 152, .external_lex_state = 2}, + [808] = {.lex_state = 152, .external_lex_state = 2}, + [809] = {.lex_state = 152, .external_lex_state = 2}, + [810] = {.lex_state = 152, .external_lex_state = 2}, + [811] = {.lex_state = 152, .external_lex_state = 2}, + [812] = {.lex_state = 152, .external_lex_state = 2}, + [813] = {.lex_state = 152, .external_lex_state = 2}, + [814] = {.lex_state = 152, .external_lex_state = 2}, + [815] = {.lex_state = 152, .external_lex_state = 2}, + [816] = {.lex_state = 152, .external_lex_state = 2}, + [817] = {.lex_state = 152, .external_lex_state = 2}, + [818] = {.lex_state = 152, .external_lex_state = 2}, + [819] = {.lex_state = 152, .external_lex_state = 2}, + [820] = {.lex_state = 152, .external_lex_state = 2}, + [821] = {.lex_state = 152, .external_lex_state = 2}, + [822] = {.lex_state = 152, .external_lex_state = 2}, + [823] = {.lex_state = 152, .external_lex_state = 2}, + [824] = {.lex_state = 152, .external_lex_state = 2}, + [825] = {.lex_state = 152, .external_lex_state = 2}, + [826] = {.lex_state = 152, .external_lex_state = 2}, + [827] = {.lex_state = 152, .external_lex_state = 2}, + [828] = {.lex_state = 152, .external_lex_state = 2}, + [829] = {.lex_state = 152, .external_lex_state = 2}, + [830] = {.lex_state = 152, .external_lex_state = 2}, + [831] = {.lex_state = 152, .external_lex_state = 2}, + [832] = {.lex_state = 152, .external_lex_state = 2}, + [833] = {.lex_state = 152, .external_lex_state = 2}, + [834] = {.lex_state = 152, .external_lex_state = 2}, + [835] = {.lex_state = 152, .external_lex_state = 2}, + [836] = {.lex_state = 152, .external_lex_state = 2}, + [837] = {.lex_state = 152, .external_lex_state = 2}, + [838] = {.lex_state = 152, .external_lex_state = 2}, + [839] = {.lex_state = 152, .external_lex_state = 2}, + [840] = {.lex_state = 152, .external_lex_state = 2}, + [841] = {.lex_state = 152, .external_lex_state = 2}, + [842] = {.lex_state = 152, .external_lex_state = 2}, + [843] = {.lex_state = 152, .external_lex_state = 2}, + [844] = {.lex_state = 152, .external_lex_state = 2}, + [845] = {.lex_state = 152, .external_lex_state = 2}, + [846] = {.lex_state = 152, .external_lex_state = 2}, + [847] = {.lex_state = 152, .external_lex_state = 2}, + [848] = {.lex_state = 152, .external_lex_state = 2}, + [849] = {.lex_state = 152, .external_lex_state = 2}, + [850] = {.lex_state = 152, .external_lex_state = 2}, + [851] = {.lex_state = 152, .external_lex_state = 2}, + [852] = {.lex_state = 152, .external_lex_state = 2}, + [853] = {.lex_state = 152, .external_lex_state = 2}, + [854] = {.lex_state = 152, .external_lex_state = 2}, + [855] = {.lex_state = 152, .external_lex_state = 2}, + [856] = {.lex_state = 152, .external_lex_state = 2}, + [857] = {.lex_state = 152, .external_lex_state = 2}, + [858] = {.lex_state = 152, .external_lex_state = 2}, + [859] = {.lex_state = 152, .external_lex_state = 2}, + [860] = {.lex_state = 152, .external_lex_state = 2}, + [861] = {.lex_state = 152, .external_lex_state = 2}, + [862] = {.lex_state = 152, .external_lex_state = 2}, + [863] = {.lex_state = 152, .external_lex_state = 2}, + [864] = {.lex_state = 152, .external_lex_state = 2}, + [865] = {.lex_state = 152, .external_lex_state = 2}, + [866] = {.lex_state = 152, .external_lex_state = 2}, + [867] = {.lex_state = 152, .external_lex_state = 2}, + [868] = {.lex_state = 152, .external_lex_state = 2}, + [869] = {.lex_state = 152, .external_lex_state = 2}, + [870] = {.lex_state = 152, .external_lex_state = 2}, + [871] = {.lex_state = 152, .external_lex_state = 2}, + [872] = {.lex_state = 152, .external_lex_state = 2}, + [873] = {.lex_state = 152, .external_lex_state = 2}, + [874] = {.lex_state = 152, .external_lex_state = 2}, + [875] = {.lex_state = 152, .external_lex_state = 2}, + [876] = {.lex_state = 152, .external_lex_state = 2}, + [877] = {.lex_state = 152, .external_lex_state = 2}, + [878] = {.lex_state = 152, .external_lex_state = 2}, + [879] = {.lex_state = 152, .external_lex_state = 2}, + [880] = {.lex_state = 152, .external_lex_state = 2}, + [881] = {.lex_state = 152, .external_lex_state = 2}, + [882] = {.lex_state = 152, .external_lex_state = 2}, + [883] = {.lex_state = 152, .external_lex_state = 2}, + [884] = {.lex_state = 152, .external_lex_state = 2}, + [885] = {.lex_state = 152, .external_lex_state = 2}, + [886] = {.lex_state = 152, .external_lex_state = 2}, + [887] = {.lex_state = 152, .external_lex_state = 2}, + [888] = {.lex_state = 152, .external_lex_state = 2}, + [889] = {.lex_state = 152, .external_lex_state = 2}, + [890] = {.lex_state = 152, .external_lex_state = 2}, + [891] = {.lex_state = 152, .external_lex_state = 2}, + [892] = {.lex_state = 152, .external_lex_state = 2}, + [893] = {.lex_state = 152, .external_lex_state = 2}, + [894] = {.lex_state = 152, .external_lex_state = 2}, + [895] = {.lex_state = 152, .external_lex_state = 2}, + [896] = {.lex_state = 152, .external_lex_state = 2}, + [897] = {.lex_state = 152, .external_lex_state = 2}, + [898] = {.lex_state = 152, .external_lex_state = 2}, + [899] = {.lex_state = 152, .external_lex_state = 2}, + [900] = {.lex_state = 152, .external_lex_state = 2}, + [901] = {.lex_state = 152, .external_lex_state = 2}, + [902] = {.lex_state = 152, .external_lex_state = 2}, + [903] = {.lex_state = 152, .external_lex_state = 2}, + [904] = {.lex_state = 152, .external_lex_state = 2}, + [905] = {.lex_state = 152, .external_lex_state = 2}, + [906] = {.lex_state = 152, .external_lex_state = 2}, + [907] = {.lex_state = 152, .external_lex_state = 2}, + [908] = {.lex_state = 152, .external_lex_state = 2}, + [909] = {.lex_state = 152, .external_lex_state = 2}, + [910] = {.lex_state = 152, .external_lex_state = 2}, + [911] = {.lex_state = 152, .external_lex_state = 2}, + [912] = {.lex_state = 152, .external_lex_state = 2}, + [913] = {.lex_state = 152, .external_lex_state = 2}, + [914] = {.lex_state = 152, .external_lex_state = 2}, + [915] = {.lex_state = 152, .external_lex_state = 2}, + [916] = {.lex_state = 152, .external_lex_state = 2}, + [917] = {.lex_state = 152, .external_lex_state = 2}, + [918] = {.lex_state = 152, .external_lex_state = 2}, + [919] = {.lex_state = 152, .external_lex_state = 2}, + [920] = {.lex_state = 152, .external_lex_state = 2}, + [921] = {.lex_state = 152, .external_lex_state = 2}, + [922] = {.lex_state = 152, .external_lex_state = 2}, + [923] = {.lex_state = 152, .external_lex_state = 2}, + [924] = {.lex_state = 152, .external_lex_state = 2}, + [925] = {.lex_state = 152, .external_lex_state = 2}, + [926] = {.lex_state = 152, .external_lex_state = 2}, + [927] = {.lex_state = 152, .external_lex_state = 2}, + [928] = {.lex_state = 152, .external_lex_state = 2}, + [929] = {.lex_state = 152, .external_lex_state = 2}, + [930] = {.lex_state = 152, .external_lex_state = 2}, + [931] = {.lex_state = 152, .external_lex_state = 2}, + [932] = {.lex_state = 152, .external_lex_state = 2}, + [933] = {.lex_state = 152, .external_lex_state = 2}, + [934] = {.lex_state = 152, .external_lex_state = 2}, + [935] = {.lex_state = 152, .external_lex_state = 2}, + [936] = {.lex_state = 152, .external_lex_state = 2}, + [937] = {.lex_state = 152, .external_lex_state = 2}, + [938] = {.lex_state = 152, .external_lex_state = 2}, + [939] = {.lex_state = 152, .external_lex_state = 2}, + [940] = {.lex_state = 152, .external_lex_state = 2}, + [941] = {.lex_state = 152, .external_lex_state = 2}, + [942] = {.lex_state = 152, .external_lex_state = 2}, + [943] = {.lex_state = 152, .external_lex_state = 2}, + [944] = {.lex_state = 152, .external_lex_state = 2}, + [945] = {.lex_state = 152, .external_lex_state = 2}, + [946] = {.lex_state = 152, .external_lex_state = 2}, + [947] = {.lex_state = 152, .external_lex_state = 2}, + [948] = {.lex_state = 152, .external_lex_state = 2}, + [949] = {.lex_state = 152, .external_lex_state = 2}, + [950] = {.lex_state = 152, .external_lex_state = 2}, + [951] = {.lex_state = 152, .external_lex_state = 2}, + [952] = {.lex_state = 152, .external_lex_state = 2}, + [953] = {.lex_state = 152, .external_lex_state = 2}, + [954] = {.lex_state = 152, .external_lex_state = 2}, + [955] = {.lex_state = 152, .external_lex_state = 2}, + [956] = {.lex_state = 152, .external_lex_state = 2}, + [957] = {.lex_state = 152, .external_lex_state = 2}, + [958] = {.lex_state = 152, .external_lex_state = 2}, + [959] = {.lex_state = 152, .external_lex_state = 2}, + [960] = {.lex_state = 152, .external_lex_state = 2}, + [961] = {.lex_state = 152, .external_lex_state = 2}, + [962] = {.lex_state = 152, .external_lex_state = 2}, + [963] = {.lex_state = 152, .external_lex_state = 2}, + [964] = {.lex_state = 152, .external_lex_state = 2}, + [965] = {.lex_state = 152, .external_lex_state = 2}, + [966] = {.lex_state = 152, .external_lex_state = 2}, + [967] = {.lex_state = 152, .external_lex_state = 2}, + [968] = {.lex_state = 152, .external_lex_state = 2}, + [969] = {.lex_state = 152, .external_lex_state = 2}, + [970] = {.lex_state = 152, .external_lex_state = 2}, + [971] = {.lex_state = 152, .external_lex_state = 2}, + [972] = {.lex_state = 152, .external_lex_state = 2}, + [973] = {.lex_state = 152, .external_lex_state = 2}, + [974] = {.lex_state = 152, .external_lex_state = 2}, + [975] = {.lex_state = 152, .external_lex_state = 2}, + [976] = {.lex_state = 152, .external_lex_state = 2}, + [977] = {.lex_state = 152, .external_lex_state = 2}, + [978] = {.lex_state = 152, .external_lex_state = 2}, + [979] = {.lex_state = 152, .external_lex_state = 2}, + [980] = {.lex_state = 152, .external_lex_state = 2}, + [981] = {.lex_state = 152, .external_lex_state = 2}, + [982] = {.lex_state = 152, .external_lex_state = 2}, + [983] = {.lex_state = 152, .external_lex_state = 2}, + [984] = {.lex_state = 152, .external_lex_state = 2}, + [985] = {.lex_state = 152, .external_lex_state = 2}, + [986] = {.lex_state = 152, .external_lex_state = 2}, + [987] = {.lex_state = 152, .external_lex_state = 2}, + [988] = {.lex_state = 152, .external_lex_state = 2}, + [989] = {.lex_state = 152, .external_lex_state = 2}, + [990] = {.lex_state = 152, .external_lex_state = 2}, + [991] = {.lex_state = 152, .external_lex_state = 2}, + [992] = {.lex_state = 152, .external_lex_state = 2}, + [993] = {.lex_state = 152, .external_lex_state = 2}, + [994] = {.lex_state = 152, .external_lex_state = 2}, + [995] = {.lex_state = 152, .external_lex_state = 2}, + [996] = {.lex_state = 152, .external_lex_state = 2}, + [997] = {.lex_state = 152, .external_lex_state = 2}, + [998] = {.lex_state = 152, .external_lex_state = 2}, + [999] = {.lex_state = 152, .external_lex_state = 2}, + [1000] = {.lex_state = 152, .external_lex_state = 2}, + [1001] = {.lex_state = 152, .external_lex_state = 2}, + [1002] = {.lex_state = 152, .external_lex_state = 2}, + [1003] = {.lex_state = 152, .external_lex_state = 2}, + [1004] = {.lex_state = 152, .external_lex_state = 2}, + [1005] = {.lex_state = 152, .external_lex_state = 2}, + [1006] = {.lex_state = 152, .external_lex_state = 2}, + [1007] = {.lex_state = 152, .external_lex_state = 2}, + [1008] = {.lex_state = 152, .external_lex_state = 2}, + [1009] = {.lex_state = 152, .external_lex_state = 2}, + [1010] = {.lex_state = 152, .external_lex_state = 2}, + [1011] = {.lex_state = 152, .external_lex_state = 2}, + [1012] = {.lex_state = 152, .external_lex_state = 2}, + [1013] = {.lex_state = 152, .external_lex_state = 2}, + [1014] = {.lex_state = 152, .external_lex_state = 2}, + [1015] = {.lex_state = 152, .external_lex_state = 2}, + [1016] = {.lex_state = 152, .external_lex_state = 2}, + [1017] = {.lex_state = 152, .external_lex_state = 2}, + [1018] = {.lex_state = 152, .external_lex_state = 2}, + [1019] = {.lex_state = 152, .external_lex_state = 2}, + [1020] = {.lex_state = 152, .external_lex_state = 2}, + [1021] = {.lex_state = 152, .external_lex_state = 2}, + [1022] = {.lex_state = 152, .external_lex_state = 2}, + [1023] = {.lex_state = 152, .external_lex_state = 2}, + [1024] = {.lex_state = 152, .external_lex_state = 2}, + [1025] = {.lex_state = 152, .external_lex_state = 2}, + [1026] = {.lex_state = 152, .external_lex_state = 2}, + [1027] = {.lex_state = 152, .external_lex_state = 2}, + [1028] = {.lex_state = 152, .external_lex_state = 2}, + [1029] = {.lex_state = 152, .external_lex_state = 2}, + [1030] = {.lex_state = 152, .external_lex_state = 2}, + [1031] = {.lex_state = 152, .external_lex_state = 2}, + [1032] = {.lex_state = 152, .external_lex_state = 2}, + [1033] = {.lex_state = 152, .external_lex_state = 2}, + [1034] = {.lex_state = 152, .external_lex_state = 2}, + [1035] = {.lex_state = 152, .external_lex_state = 2}, + [1036] = {.lex_state = 152, .external_lex_state = 2}, + [1037] = {.lex_state = 152, .external_lex_state = 2}, + [1038] = {.lex_state = 152, .external_lex_state = 2}, + [1039] = {.lex_state = 152, .external_lex_state = 2}, + [1040] = {.lex_state = 152, .external_lex_state = 2}, + [1041] = {.lex_state = 152, .external_lex_state = 2}, + [1042] = {.lex_state = 152, .external_lex_state = 2}, + [1043] = {.lex_state = 152, .external_lex_state = 2}, + [1044] = {.lex_state = 152, .external_lex_state = 2}, + [1045] = {.lex_state = 152, .external_lex_state = 2}, + [1046] = {.lex_state = 152, .external_lex_state = 2}, + [1047] = {.lex_state = 152, .external_lex_state = 2}, + [1048] = {.lex_state = 152, .external_lex_state = 2}, + [1049] = {.lex_state = 152, .external_lex_state = 2}, + [1050] = {.lex_state = 152, .external_lex_state = 2}, + [1051] = {.lex_state = 152, .external_lex_state = 2}, + [1052] = {.lex_state = 152, .external_lex_state = 2}, + [1053] = {.lex_state = 152, .external_lex_state = 2}, + [1054] = {.lex_state = 152, .external_lex_state = 2}, + [1055] = {.lex_state = 152, .external_lex_state = 2}, + [1056] = {.lex_state = 152, .external_lex_state = 2}, + [1057] = {.lex_state = 152, .external_lex_state = 2}, + [1058] = {.lex_state = 152, .external_lex_state = 2}, + [1059] = {.lex_state = 152, .external_lex_state = 2}, + [1060] = {.lex_state = 152, .external_lex_state = 2}, + [1061] = {.lex_state = 152, .external_lex_state = 2}, + [1062] = {.lex_state = 152, .external_lex_state = 2}, + [1063] = {.lex_state = 152, .external_lex_state = 2}, + [1064] = {.lex_state = 152, .external_lex_state = 2}, + [1065] = {.lex_state = 152, .external_lex_state = 2}, + [1066] = {.lex_state = 152, .external_lex_state = 2}, + [1067] = {.lex_state = 152, .external_lex_state = 2}, + [1068] = {.lex_state = 152, .external_lex_state = 2}, + [1069] = {.lex_state = 152, .external_lex_state = 2}, + [1070] = {.lex_state = 152, .external_lex_state = 2}, + [1071] = {.lex_state = 152, .external_lex_state = 2}, + [1072] = {.lex_state = 152, .external_lex_state = 2}, + [1073] = {.lex_state = 152, .external_lex_state = 2}, + [1074] = {.lex_state = 152, .external_lex_state = 2}, + [1075] = {.lex_state = 152, .external_lex_state = 2}, + [1076] = {.lex_state = 152, .external_lex_state = 2}, + [1077] = {.lex_state = 152, .external_lex_state = 2}, + [1078] = {.lex_state = 152, .external_lex_state = 2}, + [1079] = {.lex_state = 152, .external_lex_state = 2}, + [1080] = {.lex_state = 152, .external_lex_state = 2}, + [1081] = {.lex_state = 152, .external_lex_state = 2}, + [1082] = {.lex_state = 152, .external_lex_state = 2}, + [1083] = {.lex_state = 152, .external_lex_state = 2}, + [1084] = {.lex_state = 152, .external_lex_state = 2}, + [1085] = {.lex_state = 152, .external_lex_state = 2}, + [1086] = {.lex_state = 152, .external_lex_state = 2}, + [1087] = {.lex_state = 152, .external_lex_state = 2}, + [1088] = {.lex_state = 152, .external_lex_state = 2}, + [1089] = {.lex_state = 152, .external_lex_state = 2}, + [1090] = {.lex_state = 152, .external_lex_state = 2}, + [1091] = {.lex_state = 152, .external_lex_state = 2}, + [1092] = {.lex_state = 152, .external_lex_state = 2}, + [1093] = {.lex_state = 152, .external_lex_state = 2}, + [1094] = {.lex_state = 152, .external_lex_state = 2}, + [1095] = {.lex_state = 152, .external_lex_state = 2}, + [1096] = {.lex_state = 152, .external_lex_state = 2}, + [1097] = {.lex_state = 152, .external_lex_state = 2}, + [1098] = {.lex_state = 152, .external_lex_state = 2}, + [1099] = {.lex_state = 152, .external_lex_state = 2}, + [1100] = {.lex_state = 152, .external_lex_state = 2}, + [1101] = {.lex_state = 152, .external_lex_state = 2}, + [1102] = {.lex_state = 152, .external_lex_state = 2}, + [1103] = {.lex_state = 152, .external_lex_state = 2}, + [1104] = {.lex_state = 152, .external_lex_state = 2}, + [1105] = {.lex_state = 152, .external_lex_state = 2}, + [1106] = {.lex_state = 152, .external_lex_state = 2}, + [1107] = {.lex_state = 152, .external_lex_state = 2}, + [1108] = {.lex_state = 152, .external_lex_state = 2}, + [1109] = {.lex_state = 152, .external_lex_state = 2}, + [1110] = {.lex_state = 152, .external_lex_state = 2}, + [1111] = {.lex_state = 152, .external_lex_state = 2}, + [1112] = {.lex_state = 152, .external_lex_state = 2}, + [1113] = {.lex_state = 152, .external_lex_state = 2}, + [1114] = {.lex_state = 152, .external_lex_state = 2}, + [1115] = {.lex_state = 152, .external_lex_state = 2}, + [1116] = {.lex_state = 152, .external_lex_state = 2}, + [1117] = {.lex_state = 152, .external_lex_state = 2}, + [1118] = {.lex_state = 152, .external_lex_state = 2}, + [1119] = {.lex_state = 152, .external_lex_state = 2}, + [1120] = {.lex_state = 152, .external_lex_state = 2}, + [1121] = {.lex_state = 152, .external_lex_state = 2}, + [1122] = {.lex_state = 152, .external_lex_state = 2}, + [1123] = {.lex_state = 152, .external_lex_state = 2}, + [1124] = {.lex_state = 152, .external_lex_state = 2}, + [1125] = {.lex_state = 152, .external_lex_state = 2}, + [1126] = {.lex_state = 152, .external_lex_state = 2}, + [1127] = {.lex_state = 152, .external_lex_state = 2}, + [1128] = {.lex_state = 152, .external_lex_state = 2}, + [1129] = {.lex_state = 152, .external_lex_state = 2}, + [1130] = {.lex_state = 152, .external_lex_state = 2}, + [1131] = {.lex_state = 152, .external_lex_state = 2}, + [1132] = {.lex_state = 152, .external_lex_state = 2}, + [1133] = {.lex_state = 152, .external_lex_state = 2}, + [1134] = {.lex_state = 152, .external_lex_state = 2}, + [1135] = {.lex_state = 152, .external_lex_state = 2}, + [1136] = {.lex_state = 152, .external_lex_state = 2}, + [1137] = {.lex_state = 152, .external_lex_state = 2}, + [1138] = {.lex_state = 152, .external_lex_state = 2}, + [1139] = {.lex_state = 152, .external_lex_state = 2}, + [1140] = {.lex_state = 152, .external_lex_state = 2}, + [1141] = {.lex_state = 152, .external_lex_state = 2}, + [1142] = {.lex_state = 152, .external_lex_state = 2}, + [1143] = {.lex_state = 152, .external_lex_state = 2}, + [1144] = {.lex_state = 152, .external_lex_state = 2}, + [1145] = {.lex_state = 152, .external_lex_state = 2}, + [1146] = {.lex_state = 152, .external_lex_state = 2}, + [1147] = {.lex_state = 152, .external_lex_state = 2}, + [1148] = {.lex_state = 152, .external_lex_state = 2}, + [1149] = {.lex_state = 152, .external_lex_state = 2}, + [1150] = {.lex_state = 152, .external_lex_state = 2}, + [1151] = {.lex_state = 152, .external_lex_state = 2}, + [1152] = {.lex_state = 152, .external_lex_state = 2}, + [1153] = {.lex_state = 152, .external_lex_state = 2}, + [1154] = {.lex_state = 152, .external_lex_state = 2}, + [1155] = {.lex_state = 152, .external_lex_state = 2}, + [1156] = {.lex_state = 152, .external_lex_state = 2}, + [1157] = {.lex_state = 152, .external_lex_state = 2}, + [1158] = {.lex_state = 152, .external_lex_state = 2}, + [1159] = {.lex_state = 152, .external_lex_state = 2}, + [1160] = {.lex_state = 152, .external_lex_state = 2}, + [1161] = {.lex_state = 152, .external_lex_state = 2}, + [1162] = {.lex_state = 152, .external_lex_state = 2}, + [1163] = {.lex_state = 152, .external_lex_state = 2}, + [1164] = {.lex_state = 152, .external_lex_state = 2}, + [1165] = {.lex_state = 152, .external_lex_state = 2}, + [1166] = {.lex_state = 152, .external_lex_state = 2}, + [1167] = {.lex_state = 152, .external_lex_state = 2}, + [1168] = {.lex_state = 152, .external_lex_state = 2}, + [1169] = {.lex_state = 152, .external_lex_state = 2}, + [1170] = {.lex_state = 152, .external_lex_state = 2}, + [1171] = {.lex_state = 152, .external_lex_state = 2}, + [1172] = {.lex_state = 152, .external_lex_state = 2}, + [1173] = {.lex_state = 152, .external_lex_state = 2}, + [1174] = {.lex_state = 152, .external_lex_state = 2}, + [1175] = {.lex_state = 152, .external_lex_state = 2}, + [1176] = {.lex_state = 152, .external_lex_state = 2}, + [1177] = {.lex_state = 152, .external_lex_state = 2}, + [1178] = {.lex_state = 152, .external_lex_state = 2}, + [1179] = {.lex_state = 152, .external_lex_state = 2}, + [1180] = {.lex_state = 152, .external_lex_state = 2}, + [1181] = {.lex_state = 152, .external_lex_state = 2}, + [1182] = {.lex_state = 152, .external_lex_state = 2}, + [1183] = {.lex_state = 152, .external_lex_state = 2}, + [1184] = {.lex_state = 152, .external_lex_state = 2}, + [1185] = {.lex_state = 152, .external_lex_state = 2}, + [1186] = {.lex_state = 152, .external_lex_state = 2}, + [1187] = {.lex_state = 152, .external_lex_state = 2}, + [1188] = {.lex_state = 152, .external_lex_state = 2}, + [1189] = {.lex_state = 152, .external_lex_state = 2}, + [1190] = {.lex_state = 152, .external_lex_state = 2}, + [1191] = {.lex_state = 152, .external_lex_state = 2}, + [1192] = {.lex_state = 152, .external_lex_state = 2}, + [1193] = {.lex_state = 152, .external_lex_state = 2}, + [1194] = {.lex_state = 152, .external_lex_state = 2}, + [1195] = {.lex_state = 152, .external_lex_state = 2}, + [1196] = {.lex_state = 152, .external_lex_state = 2}, + [1197] = {.lex_state = 152, .external_lex_state = 2}, + [1198] = {.lex_state = 152, .external_lex_state = 2}, + [1199] = {.lex_state = 152, .external_lex_state = 2}, + [1200] = {.lex_state = 152, .external_lex_state = 2}, + [1201] = {.lex_state = 152, .external_lex_state = 2}, + [1202] = {.lex_state = 152, .external_lex_state = 2}, + [1203] = {.lex_state = 152, .external_lex_state = 2}, + [1204] = {.lex_state = 152, .external_lex_state = 2}, + [1205] = {.lex_state = 152, .external_lex_state = 2}, + [1206] = {.lex_state = 152, .external_lex_state = 2}, + [1207] = {.lex_state = 152, .external_lex_state = 2}, + [1208] = {.lex_state = 152, .external_lex_state = 2}, + [1209] = {.lex_state = 152, .external_lex_state = 2}, + [1210] = {.lex_state = 159, .external_lex_state = 7}, + [1211] = {.lex_state = 159, .external_lex_state = 7}, + [1212] = {.lex_state = 159, .external_lex_state = 7}, + [1213] = {.lex_state = 159, .external_lex_state = 5}, + [1214] = {.lex_state = 159, .external_lex_state = 5}, + [1215] = {.lex_state = 159, .external_lex_state = 7}, + [1216] = {.lex_state = 159, .external_lex_state = 7}, + [1217] = {.lex_state = 159, .external_lex_state = 5}, + [1218] = {.lex_state = 159, .external_lex_state = 5}, + [1219] = {.lex_state = 159, .external_lex_state = 7}, + [1220] = {.lex_state = 159, .external_lex_state = 7}, + [1221] = {.lex_state = 159, .external_lex_state = 5}, + [1222] = {.lex_state = 159, .external_lex_state = 5}, + [1223] = {.lex_state = 159, .external_lex_state = 5}, + [1224] = {.lex_state = 159, .external_lex_state = 5}, + [1225] = {.lex_state = 159, .external_lex_state = 5}, + [1226] = {.lex_state = 159, .external_lex_state = 7}, + [1227] = {.lex_state = 159, .external_lex_state = 5}, + [1228] = {.lex_state = 159, .external_lex_state = 5}, + [1229] = {.lex_state = 159, .external_lex_state = 3}, + [1230] = {.lex_state = 159, .external_lex_state = 5}, + [1231] = {.lex_state = 159, .external_lex_state = 5}, + [1232] = {.lex_state = 159, .external_lex_state = 5}, + [1233] = {.lex_state = 159, .external_lex_state = 5}, + [1234] = {.lex_state = 159, .external_lex_state = 7}, + [1235] = {.lex_state = 159, .external_lex_state = 3}, + [1236] = {.lex_state = 159, .external_lex_state = 3}, + [1237] = {.lex_state = 159, .external_lex_state = 5}, + [1238] = {.lex_state = 159, .external_lex_state = 5}, + [1239] = {.lex_state = 159, .external_lex_state = 5}, + [1240] = {.lex_state = 159, .external_lex_state = 5}, + [1241] = {.lex_state = 159, .external_lex_state = 5}, + [1242] = {.lex_state = 159, .external_lex_state = 5}, + [1243] = {.lex_state = 159, .external_lex_state = 5}, + [1244] = {.lex_state = 159, .external_lex_state = 5}, + [1245] = {.lex_state = 159, .external_lex_state = 5}, + [1246] = {.lex_state = 159, .external_lex_state = 5}, + [1247] = {.lex_state = 159, .external_lex_state = 5}, + [1248] = {.lex_state = 159, .external_lex_state = 5}, + [1249] = {.lex_state = 159, .external_lex_state = 5}, + [1250] = {.lex_state = 42, .external_lex_state = 7}, + [1251] = {.lex_state = 159, .external_lex_state = 5}, + [1252] = {.lex_state = 159, .external_lex_state = 3}, + [1253] = {.lex_state = 159, .external_lex_state = 3}, + [1254] = {.lex_state = 159, .external_lex_state = 5}, + [1255] = {.lex_state = 159, .external_lex_state = 3}, + [1256] = {.lex_state = 159, .external_lex_state = 3}, + [1257] = {.lex_state = 159, .external_lex_state = 3}, + [1258] = {.lex_state = 159, .external_lex_state = 5}, + [1259] = {.lex_state = 42, .external_lex_state = 7}, + [1260] = {.lex_state = 159, .external_lex_state = 5}, + [1261] = {.lex_state = 159, .external_lex_state = 5}, + [1262] = {.lex_state = 159, .external_lex_state = 5}, + [1263] = {.lex_state = 159, .external_lex_state = 5}, + [1264] = {.lex_state = 159, .external_lex_state = 5}, + [1265] = {.lex_state = 159, .external_lex_state = 5}, + [1266] = {.lex_state = 159, .external_lex_state = 5}, + [1267] = {.lex_state = 159, .external_lex_state = 5}, + [1268] = {.lex_state = 159, .external_lex_state = 5}, + [1269] = {.lex_state = 159, .external_lex_state = 5}, + [1270] = {.lex_state = 159, .external_lex_state = 5}, + [1271] = {.lex_state = 159, .external_lex_state = 5}, + [1272] = {.lex_state = 159, .external_lex_state = 5}, + [1273] = {.lex_state = 159, .external_lex_state = 5}, + [1274] = {.lex_state = 159, .external_lex_state = 3}, + [1275] = {.lex_state = 42, .external_lex_state = 7}, + [1276] = {.lex_state = 159, .external_lex_state = 4}, + [1277] = {.lex_state = 159, .external_lex_state = 4}, + [1278] = {.lex_state = 159, .external_lex_state = 5}, + [1279] = {.lex_state = 159, .external_lex_state = 5}, + [1280] = {.lex_state = 159, .external_lex_state = 5}, + [1281] = {.lex_state = 42, .external_lex_state = 5}, + [1282] = {.lex_state = 42, .external_lex_state = 5}, + [1283] = {.lex_state = 42, .external_lex_state = 5}, + [1284] = {.lex_state = 42, .external_lex_state = 3}, + [1285] = {.lex_state = 159, .external_lex_state = 4}, + [1286] = {.lex_state = 42, .external_lex_state = 3}, + [1287] = {.lex_state = 42, .external_lex_state = 3}, + [1288] = {.lex_state = 42, .external_lex_state = 5}, + [1289] = {.lex_state = 42, .external_lex_state = 5}, + [1290] = {.lex_state = 42, .external_lex_state = 5}, + [1291] = {.lex_state = 42, .external_lex_state = 5}, + [1292] = {.lex_state = 42, .external_lex_state = 5}, + [1293] = {.lex_state = 159, .external_lex_state = 4}, + [1294] = {.lex_state = 42, .external_lex_state = 5}, + [1295] = {.lex_state = 42, .external_lex_state = 5}, + [1296] = {.lex_state = 42, .external_lex_state = 5}, + [1297] = {.lex_state = 42, .external_lex_state = 5}, + [1298] = {.lex_state = 42, .external_lex_state = 5}, + [1299] = {.lex_state = 42, .external_lex_state = 5}, + [1300] = {.lex_state = 42, .external_lex_state = 5}, + [1301] = {.lex_state = 42, .external_lex_state = 5}, + [1302] = {.lex_state = 159, .external_lex_state = 4}, + [1303] = {.lex_state = 159, .external_lex_state = 4}, + [1304] = {.lex_state = 42, .external_lex_state = 4}, + [1305] = {.lex_state = 42, .external_lex_state = 4}, + [1306] = {.lex_state = 41, .external_lex_state = 4}, + [1307] = {.lex_state = 41, .external_lex_state = 4}, + [1308] = {.lex_state = 41, .external_lex_state = 4}, + [1309] = {.lex_state = 45, .external_lex_state = 2}, + [1310] = {.lex_state = 45, .external_lex_state = 2}, + [1311] = {.lex_state = 45, .external_lex_state = 2}, + [1312] = {.lex_state = 45, .external_lex_state = 2}, + [1313] = {.lex_state = 45, .external_lex_state = 2}, + [1314] = {.lex_state = 46, .external_lex_state = 2}, + [1315] = {.lex_state = 47, .external_lex_state = 8}, + [1316] = {.lex_state = 47, .external_lex_state = 8}, + [1317] = {.lex_state = 152, .external_lex_state = 2}, + [1318] = {.lex_state = 47, .external_lex_state = 8}, + [1319] = {.lex_state = 152, .external_lex_state = 2}, + [1320] = {.lex_state = 47, .external_lex_state = 8}, + [1321] = {.lex_state = 47, .external_lex_state = 8}, + [1322] = {.lex_state = 152, .external_lex_state = 2}, + [1323] = {.lex_state = 152, .external_lex_state = 2}, + [1324] = {.lex_state = 47, .external_lex_state = 8}, + [1325] = {.lex_state = 47, .external_lex_state = 8}, + [1326] = {.lex_state = 47, .external_lex_state = 8}, + [1327] = {.lex_state = 46, .external_lex_state = 2}, + [1328] = {.lex_state = 47, .external_lex_state = 8}, + [1329] = {.lex_state = 47, .external_lex_state = 8}, + [1330] = {.lex_state = 47, .external_lex_state = 8}, + [1331] = {.lex_state = 47, .external_lex_state = 8}, + [1332] = {.lex_state = 152, .external_lex_state = 2}, + [1333] = {.lex_state = 46, .external_lex_state = 2}, + [1334] = {.lex_state = 152, .external_lex_state = 2}, + [1335] = {.lex_state = 48, .external_lex_state = 9}, + [1336] = {.lex_state = 48, .external_lex_state = 9}, + [1337] = {.lex_state = 48, .external_lex_state = 9}, + [1338] = {.lex_state = 48, .external_lex_state = 9}, + [1339] = {.lex_state = 48, .external_lex_state = 9}, + [1340] = {.lex_state = 48, .external_lex_state = 9}, + [1341] = {.lex_state = 48, .external_lex_state = 9}, + [1342] = {.lex_state = 48, .external_lex_state = 9}, + [1343] = {.lex_state = 48, .external_lex_state = 9}, + [1344] = {.lex_state = 48, .external_lex_state = 9}, + [1345] = {.lex_state = 48, .external_lex_state = 9}, + [1346] = {.lex_state = 48, .external_lex_state = 9}, + [1347] = {.lex_state = 48, .external_lex_state = 9}, + [1348] = {.lex_state = 48, .external_lex_state = 9}, + [1349] = {.lex_state = 48, .external_lex_state = 9}, + [1350] = {.lex_state = 48, .external_lex_state = 9}, + [1351] = {.lex_state = 152, .external_lex_state = 2}, + [1352] = {.lex_state = 48, .external_lex_state = 9}, + [1353] = {.lex_state = 48, .external_lex_state = 9}, + [1354] = {.lex_state = 48, .external_lex_state = 9}, + [1355] = {.lex_state = 48, .external_lex_state = 9}, + [1356] = {.lex_state = 48, .external_lex_state = 9}, + [1357] = {.lex_state = 48, .external_lex_state = 9}, + [1358] = {.lex_state = 48, .external_lex_state = 9}, + [1359] = {.lex_state = 152, .external_lex_state = 2}, + [1360] = {.lex_state = 152, .external_lex_state = 2}, + [1361] = {.lex_state = 152, .external_lex_state = 2}, + [1362] = {.lex_state = 49, .external_lex_state = 8}, + [1363] = {.lex_state = 49, .external_lex_state = 8}, + [1364] = {.lex_state = 49, .external_lex_state = 8}, + [1365] = {.lex_state = 49, .external_lex_state = 8}, + [1366] = {.lex_state = 49, .external_lex_state = 8}, + [1367] = {.lex_state = 49, .external_lex_state = 8}, + [1368] = {.lex_state = 49, .external_lex_state = 8}, + [1369] = {.lex_state = 49, .external_lex_state = 8}, + [1370] = {.lex_state = 49, .external_lex_state = 8}, + [1371] = {.lex_state = 49, .external_lex_state = 8}, + [1372] = {.lex_state = 49, .external_lex_state = 8}, + [1373] = {.lex_state = 49, .external_lex_state = 8}, + [1374] = {.lex_state = 49, .external_lex_state = 8}, + [1375] = {.lex_state = 49, .external_lex_state = 8}, + [1376] = {.lex_state = 49, .external_lex_state = 8}, + [1377] = {.lex_state = 49, .external_lex_state = 8}, + [1378] = {.lex_state = 49, .external_lex_state = 8}, + [1379] = {.lex_state = 49, .external_lex_state = 8}, + [1380] = {.lex_state = 49, .external_lex_state = 8}, + [1381] = {.lex_state = 49, .external_lex_state = 8}, + [1382] = {.lex_state = 49, .external_lex_state = 8}, + [1383] = {.lex_state = 49, .external_lex_state = 8}, + [1384] = {.lex_state = 49, .external_lex_state = 8}, + [1385] = {.lex_state = 49, .external_lex_state = 8}, + [1386] = {.lex_state = 49, .external_lex_state = 10}, + [1387] = {.lex_state = 49, .external_lex_state = 10}, + [1388] = {.lex_state = 49, .external_lex_state = 10}, + [1389] = {.lex_state = 49, .external_lex_state = 11}, + [1390] = {.lex_state = 49, .external_lex_state = 10}, + [1391] = {.lex_state = 49, .external_lex_state = 10}, + [1392] = {.lex_state = 49, .external_lex_state = 11}, + [1393] = {.lex_state = 51, .external_lex_state = 12}, + [1394] = {.lex_state = 49, .external_lex_state = 10}, + [1395] = {.lex_state = 49, .external_lex_state = 10}, + [1396] = {.lex_state = 49, .external_lex_state = 10}, + [1397] = {.lex_state = 153, .external_lex_state = 10}, + [1398] = {.lex_state = 49, .external_lex_state = 10}, + [1399] = {.lex_state = 49, .external_lex_state = 10}, + [1400] = {.lex_state = 49, .external_lex_state = 10}, + [1401] = {.lex_state = 49, .external_lex_state = 10}, + [1402] = {.lex_state = 153, .external_lex_state = 10}, + [1403] = {.lex_state = 51, .external_lex_state = 12}, + [1404] = {.lex_state = 153, .external_lex_state = 10}, + [1405] = {.lex_state = 153, .external_lex_state = 10}, + [1406] = {.lex_state = 49, .external_lex_state = 10}, + [1407] = {.lex_state = 153, .external_lex_state = 11}, + [1408] = {.lex_state = 51, .external_lex_state = 12}, + [1409] = {.lex_state = 51, .external_lex_state = 12}, + [1410] = {.lex_state = 49, .external_lex_state = 10}, + [1411] = {.lex_state = 49, .external_lex_state = 10}, + [1412] = {.lex_state = 51, .external_lex_state = 12}, + [1413] = {.lex_state = 49, .external_lex_state = 10}, + [1414] = {.lex_state = 49, .external_lex_state = 10}, + [1415] = {.lex_state = 153, .external_lex_state = 11}, + [1416] = {.lex_state = 51, .external_lex_state = 12}, + [1417] = {.lex_state = 51, .external_lex_state = 12}, + [1418] = {.lex_state = 49, .external_lex_state = 10}, + [1419] = {.lex_state = 51, .external_lex_state = 12}, + [1420] = {.lex_state = 51, .external_lex_state = 12}, + [1421] = {.lex_state = 51, .external_lex_state = 12}, + [1422] = {.lex_state = 49, .external_lex_state = 10}, + [1423] = {.lex_state = 49, .external_lex_state = 10}, + [1424] = {.lex_state = 49, .external_lex_state = 10}, + [1425] = {.lex_state = 49, .external_lex_state = 10}, + [1426] = {.lex_state = 51, .external_lex_state = 12}, + [1427] = {.lex_state = 49, .external_lex_state = 10}, + [1428] = {.lex_state = 49, .external_lex_state = 11}, + [1429] = {.lex_state = 49, .external_lex_state = 11}, + [1430] = {.lex_state = 49, .external_lex_state = 11}, + [1431] = {.lex_state = 49, .external_lex_state = 11}, + [1432] = {.lex_state = 49, .external_lex_state = 11}, + [1433] = {.lex_state = 49, .external_lex_state = 11}, + [1434] = {.lex_state = 153, .external_lex_state = 10}, + [1435] = {.lex_state = 49, .external_lex_state = 11}, + [1436] = {.lex_state = 49, .external_lex_state = 10}, + [1437] = {.lex_state = 49, .external_lex_state = 10}, + [1438] = {.lex_state = 49, .external_lex_state = 11}, + [1439] = {.lex_state = 49, .external_lex_state = 11}, + [1440] = {.lex_state = 51, .external_lex_state = 12}, + [1441] = {.lex_state = 49, .external_lex_state = 10}, + [1442] = {.lex_state = 53, .external_lex_state = 10}, + [1443] = {.lex_state = 49, .external_lex_state = 13}, + [1444] = {.lex_state = 153, .external_lex_state = 10}, + [1445] = {.lex_state = 49, .external_lex_state = 10}, + [1446] = {.lex_state = 53, .external_lex_state = 10}, + [1447] = {.lex_state = 49, .external_lex_state = 10}, + [1448] = {.lex_state = 53, .external_lex_state = 10}, + [1449] = {.lex_state = 49, .external_lex_state = 10}, + [1450] = {.lex_state = 49, .external_lex_state = 10}, + [1451] = {.lex_state = 49, .external_lex_state = 10}, + [1452] = {.lex_state = 53, .external_lex_state = 10}, + [1453] = {.lex_state = 53, .external_lex_state = 10}, + [1454] = {.lex_state = 49, .external_lex_state = 10}, + [1455] = {.lex_state = 153, .external_lex_state = 10}, + [1456] = {.lex_state = 53, .external_lex_state = 10}, + [1457] = {.lex_state = 53, .external_lex_state = 10}, + [1458] = {.lex_state = 53, .external_lex_state = 10}, + [1459] = {.lex_state = 53, .external_lex_state = 10}, + [1460] = {.lex_state = 53, .external_lex_state = 10}, + [1461] = {.lex_state = 53, .external_lex_state = 10}, + [1462] = {.lex_state = 49, .external_lex_state = 10}, + [1463] = {.lex_state = 49, .external_lex_state = 13}, + [1464] = {.lex_state = 153, .external_lex_state = 10}, + [1465] = {.lex_state = 53, .external_lex_state = 10}, + [1466] = {.lex_state = 53, .external_lex_state = 10}, + [1467] = {.lex_state = 53, .external_lex_state = 10}, + [1468] = {.lex_state = 49, .external_lex_state = 8}, + [1469] = {.lex_state = 53, .external_lex_state = 10}, + [1470] = {.lex_state = 49, .external_lex_state = 8}, + [1471] = {.lex_state = 53, .external_lex_state = 10}, + [1472] = {.lex_state = 49, .external_lex_state = 8}, + [1473] = {.lex_state = 53, .external_lex_state = 10}, + [1474] = {.lex_state = 49, .external_lex_state = 8}, + [1475] = {.lex_state = 53, .external_lex_state = 10}, + [1476] = {.lex_state = 53, .external_lex_state = 10}, + [1477] = {.lex_state = 53, .external_lex_state = 10}, + [1478] = {.lex_state = 53, .external_lex_state = 10}, + [1479] = {.lex_state = 53, .external_lex_state = 10}, + [1480] = {.lex_state = 53, .external_lex_state = 10}, + [1481] = {.lex_state = 53, .external_lex_state = 10}, + [1482] = {.lex_state = 53, .external_lex_state = 10}, + [1483] = {.lex_state = 53, .external_lex_state = 10}, + [1484] = {.lex_state = 53, .external_lex_state = 10}, + [1485] = {.lex_state = 53, .external_lex_state = 10}, + [1486] = {.lex_state = 53, .external_lex_state = 10}, + [1487] = {.lex_state = 53, .external_lex_state = 10}, + [1488] = {.lex_state = 53, .external_lex_state = 10}, + [1489] = {.lex_state = 53, .external_lex_state = 10}, + [1490] = {.lex_state = 53, .external_lex_state = 10}, + [1491] = {.lex_state = 49, .external_lex_state = 8}, + [1492] = {.lex_state = 49, .external_lex_state = 10}, + [1493] = {.lex_state = 49, .external_lex_state = 8}, + [1494] = {.lex_state = 53, .external_lex_state = 10}, + [1495] = {.lex_state = 53, .external_lex_state = 10}, + [1496] = {.lex_state = 53, .external_lex_state = 10}, + [1497] = {.lex_state = 53, .external_lex_state = 10}, + [1498] = {.lex_state = 153, .external_lex_state = 10}, + [1499] = {.lex_state = 153, .external_lex_state = 10}, + [1500] = {.lex_state = 153, .external_lex_state = 10}, + [1501] = {.lex_state = 49, .external_lex_state = 10}, + [1502] = {.lex_state = 153, .external_lex_state = 10}, + [1503] = {.lex_state = 49, .external_lex_state = 10}, + [1504] = {.lex_state = 153, .external_lex_state = 10}, + [1505] = {.lex_state = 153, .external_lex_state = 10}, + [1506] = {.lex_state = 49, .external_lex_state = 10}, + [1507] = {.lex_state = 49, .external_lex_state = 8}, + [1508] = {.lex_state = 49, .external_lex_state = 8}, + [1509] = {.lex_state = 49, .external_lex_state = 10}, + [1510] = {.lex_state = 49, .external_lex_state = 10}, + [1511] = {.lex_state = 153, .external_lex_state = 10}, + [1512] = {.lex_state = 49, .external_lex_state = 10}, + [1513] = {.lex_state = 153, .external_lex_state = 10}, + [1514] = {.lex_state = 153, .external_lex_state = 10}, + [1515] = {.lex_state = 49, .external_lex_state = 10}, + [1516] = {.lex_state = 49, .external_lex_state = 10}, + [1517] = {.lex_state = 49, .external_lex_state = 10}, + [1518] = {.lex_state = 49, .external_lex_state = 10}, + [1519] = {.lex_state = 49, .external_lex_state = 10}, + [1520] = {.lex_state = 49, .external_lex_state = 10}, + [1521] = {.lex_state = 49, .external_lex_state = 10}, + [1522] = {.lex_state = 49, .external_lex_state = 10}, + [1523] = {.lex_state = 49, .external_lex_state = 10}, + [1524] = {.lex_state = 49, .external_lex_state = 10}, + [1525] = {.lex_state = 49, .external_lex_state = 10}, + [1526] = {.lex_state = 49, .external_lex_state = 10}, + [1527] = {.lex_state = 49, .external_lex_state = 10}, + [1528] = {.lex_state = 49, .external_lex_state = 10}, + [1529] = {.lex_state = 49, .external_lex_state = 10}, + [1530] = {.lex_state = 49, .external_lex_state = 10}, + [1531] = {.lex_state = 153, .external_lex_state = 10}, + [1532] = {.lex_state = 49, .external_lex_state = 10}, + [1533] = {.lex_state = 49, .external_lex_state = 10}, + [1534] = {.lex_state = 49, .external_lex_state = 10}, + [1535] = {.lex_state = 49, .external_lex_state = 10}, + [1536] = {.lex_state = 49, .external_lex_state = 10}, + [1537] = {.lex_state = 49, .external_lex_state = 10}, + [1538] = {.lex_state = 49, .external_lex_state = 10}, + [1539] = {.lex_state = 49, .external_lex_state = 10}, + [1540] = {.lex_state = 49, .external_lex_state = 10}, + [1541] = {.lex_state = 49, .external_lex_state = 10}, + [1542] = {.lex_state = 49, .external_lex_state = 10}, + [1543] = {.lex_state = 49, .external_lex_state = 10}, + [1544] = {.lex_state = 49, .external_lex_state = 10}, + [1545] = {.lex_state = 49, .external_lex_state = 10}, + [1546] = {.lex_state = 49, .external_lex_state = 10}, + [1547] = {.lex_state = 49, .external_lex_state = 10}, + [1548] = {.lex_state = 49, .external_lex_state = 8}, + [1549] = {.lex_state = 153, .external_lex_state = 10}, + [1550] = {.lex_state = 49, .external_lex_state = 10}, + [1551] = {.lex_state = 49, .external_lex_state = 10}, + [1552] = {.lex_state = 153, .external_lex_state = 10}, + [1553] = {.lex_state = 49, .external_lex_state = 10}, + [1554] = {.lex_state = 153, .external_lex_state = 10}, + [1555] = {.lex_state = 49, .external_lex_state = 10}, + [1556] = {.lex_state = 153, .external_lex_state = 10}, + [1557] = {.lex_state = 49, .external_lex_state = 10}, + [1558] = {.lex_state = 153, .external_lex_state = 10}, + [1559] = {.lex_state = 49, .external_lex_state = 10}, + [1560] = {.lex_state = 49, .external_lex_state = 10}, + [1561] = {.lex_state = 49, .external_lex_state = 10}, + [1562] = {.lex_state = 49, .external_lex_state = 10}, + [1563] = {.lex_state = 49, .external_lex_state = 10}, + [1564] = {.lex_state = 49, .external_lex_state = 10}, + [1565] = {.lex_state = 49, .external_lex_state = 10}, + [1566] = {.lex_state = 153, .external_lex_state = 10}, + [1567] = {.lex_state = 49, .external_lex_state = 10}, + [1568] = {.lex_state = 49, .external_lex_state = 10}, + [1569] = {.lex_state = 49, .external_lex_state = 10}, + [1570] = {.lex_state = 49, .external_lex_state = 10}, + [1571] = {.lex_state = 49, .external_lex_state = 10}, + [1572] = {.lex_state = 49, .external_lex_state = 10}, + [1573] = {.lex_state = 49, .external_lex_state = 10}, + [1574] = {.lex_state = 49, .external_lex_state = 10}, + [1575] = {.lex_state = 49, .external_lex_state = 10}, + [1576] = {.lex_state = 153, .external_lex_state = 11}, + [1577] = {.lex_state = 153, .external_lex_state = 11}, + [1578] = {.lex_state = 153, .external_lex_state = 11}, + [1579] = {.lex_state = 153, .external_lex_state = 11}, + [1580] = {.lex_state = 153, .external_lex_state = 11}, + [1581] = {.lex_state = 153, .external_lex_state = 11}, + [1582] = {.lex_state = 153, .external_lex_state = 11}, + [1583] = {.lex_state = 153, .external_lex_state = 11}, + [1584] = {.lex_state = 153, .external_lex_state = 11}, + [1585] = {.lex_state = 49, .external_lex_state = 10}, + [1586] = {.lex_state = 49, .external_lex_state = 10}, + [1587] = {.lex_state = 49, .external_lex_state = 10}, + [1588] = {.lex_state = 49, .external_lex_state = 10}, + [1589] = {.lex_state = 153, .external_lex_state = 10}, + [1590] = {.lex_state = 53, .external_lex_state = 10}, + [1591] = {.lex_state = 53, .external_lex_state = 10}, + [1592] = {.lex_state = 53, .external_lex_state = 10}, + [1593] = {.lex_state = 53, .external_lex_state = 10}, + [1594] = {.lex_state = 55, .external_lex_state = 10}, + [1595] = {.lex_state = 55, .external_lex_state = 10}, + [1596] = {.lex_state = 49, .external_lex_state = 10}, + [1597] = {.lex_state = 55, .external_lex_state = 10}, + [1598] = {.lex_state = 153, .external_lex_state = 13}, + [1599] = {.lex_state = 49, .external_lex_state = 10}, + [1600] = {.lex_state = 153, .external_lex_state = 10}, + [1601] = {.lex_state = 49, .external_lex_state = 10}, + [1602] = {.lex_state = 49, .external_lex_state = 10}, + [1603] = {.lex_state = 153, .external_lex_state = 10}, + [1604] = {.lex_state = 49, .external_lex_state = 10}, + [1605] = {.lex_state = 153, .external_lex_state = 10}, + [1606] = {.lex_state = 49, .external_lex_state = 8}, + [1607] = {.lex_state = 49, .external_lex_state = 10}, + [1608] = {.lex_state = 49, .external_lex_state = 8}, + [1609] = {.lex_state = 49, .external_lex_state = 10}, + [1610] = {.lex_state = 153, .external_lex_state = 10}, + [1611] = {.lex_state = 49, .external_lex_state = 10}, + [1612] = {.lex_state = 55, .external_lex_state = 10}, + [1613] = {.lex_state = 153, .external_lex_state = 10}, + [1614] = {.lex_state = 49, .external_lex_state = 13}, + [1615] = {.lex_state = 153, .external_lex_state = 10}, + [1616] = {.lex_state = 153, .external_lex_state = 10}, + [1617] = {.lex_state = 49, .external_lex_state = 13}, + [1618] = {.lex_state = 49, .external_lex_state = 13}, + [1619] = {.lex_state = 49, .external_lex_state = 10}, + [1620] = {.lex_state = 153, .external_lex_state = 10}, + [1621] = {.lex_state = 49, .external_lex_state = 10}, + [1622] = {.lex_state = 49, .external_lex_state = 13}, + [1623] = {.lex_state = 49, .external_lex_state = 13}, + [1624] = {.lex_state = 153, .external_lex_state = 10}, + [1625] = {.lex_state = 153, .external_lex_state = 10}, + [1626] = {.lex_state = 153, .external_lex_state = 10}, + [1627] = {.lex_state = 153, .external_lex_state = 10}, + [1628] = {.lex_state = 153, .external_lex_state = 10}, + [1629] = {.lex_state = 49, .external_lex_state = 10}, + [1630] = {.lex_state = 153, .external_lex_state = 10}, + [1631] = {.lex_state = 55, .external_lex_state = 10}, + [1632] = {.lex_state = 55, .external_lex_state = 10}, + [1633] = {.lex_state = 153, .external_lex_state = 10}, + [1634] = {.lex_state = 49, .external_lex_state = 13}, + [1635] = {.lex_state = 55, .external_lex_state = 10}, + [1636] = {.lex_state = 55, .external_lex_state = 10}, + [1637] = {.lex_state = 153, .external_lex_state = 10}, + [1638] = {.lex_state = 153, .external_lex_state = 10}, + [1639] = {.lex_state = 49, .external_lex_state = 8}, + [1640] = {.lex_state = 49, .external_lex_state = 13}, + [1641] = {.lex_state = 153, .external_lex_state = 13}, + [1642] = {.lex_state = 49, .external_lex_state = 10}, + [1643] = {.lex_state = 153, .external_lex_state = 10}, + [1644] = {.lex_state = 49, .external_lex_state = 8}, + [1645] = {.lex_state = 49, .external_lex_state = 10}, + [1646] = {.lex_state = 49, .external_lex_state = 8}, + [1647] = {.lex_state = 49, .external_lex_state = 10}, + [1648] = {.lex_state = 49, .external_lex_state = 10}, + [1649] = {.lex_state = 153, .external_lex_state = 10}, + [1650] = {.lex_state = 153, .external_lex_state = 10}, + [1651] = {.lex_state = 153, .external_lex_state = 10}, + [1652] = {.lex_state = 153, .external_lex_state = 10}, + [1653] = {.lex_state = 153, .external_lex_state = 10}, + [1654] = {.lex_state = 153, .external_lex_state = 10}, + [1655] = {.lex_state = 49, .external_lex_state = 10}, + [1656] = {.lex_state = 49, .external_lex_state = 10}, + [1657] = {.lex_state = 153, .external_lex_state = 10}, + [1658] = {.lex_state = 49, .external_lex_state = 8}, + [1659] = {.lex_state = 153, .external_lex_state = 10}, + [1660] = {.lex_state = 153, .external_lex_state = 10}, + [1661] = {.lex_state = 49, .external_lex_state = 10}, + [1662] = {.lex_state = 49, .external_lex_state = 13}, + [1663] = {.lex_state = 153, .external_lex_state = 10}, + [1664] = {.lex_state = 55, .external_lex_state = 10}, + [1665] = {.lex_state = 55, .external_lex_state = 10}, + [1666] = {.lex_state = 55, .external_lex_state = 10}, + [1667] = {.lex_state = 55, .external_lex_state = 10}, + [1668] = {.lex_state = 153, .external_lex_state = 10}, + [1669] = {.lex_state = 153, .external_lex_state = 8}, + [1670] = {.lex_state = 153, .external_lex_state = 10}, + [1671] = {.lex_state = 153, .external_lex_state = 10}, + [1672] = {.lex_state = 153, .external_lex_state = 10}, + [1673] = {.lex_state = 153, .external_lex_state = 10}, + [1674] = {.lex_state = 153, .external_lex_state = 10}, + [1675] = {.lex_state = 153, .external_lex_state = 10}, + [1676] = {.lex_state = 153, .external_lex_state = 10}, + [1677] = {.lex_state = 153, .external_lex_state = 10}, + [1678] = {.lex_state = 153, .external_lex_state = 10}, + [1679] = {.lex_state = 49, .external_lex_state = 8}, + [1680] = {.lex_state = 49, .external_lex_state = 10}, + [1681] = {.lex_state = 153, .external_lex_state = 10}, + [1682] = {.lex_state = 153, .external_lex_state = 10}, + [1683] = {.lex_state = 153, .external_lex_state = 10}, + [1684] = {.lex_state = 153, .external_lex_state = 10}, + [1685] = {.lex_state = 153, .external_lex_state = 10}, + [1686] = {.lex_state = 153, .external_lex_state = 10}, + [1687] = {.lex_state = 153, .external_lex_state = 10}, + [1688] = {.lex_state = 153, .external_lex_state = 10}, + [1689] = {.lex_state = 153, .external_lex_state = 10}, + [1690] = {.lex_state = 153, .external_lex_state = 10}, + [1691] = {.lex_state = 153, .external_lex_state = 10}, + [1692] = {.lex_state = 153, .external_lex_state = 10}, + [1693] = {.lex_state = 153, .external_lex_state = 10}, + [1694] = {.lex_state = 153, .external_lex_state = 10}, + [1695] = {.lex_state = 153, .external_lex_state = 10}, + [1696] = {.lex_state = 49, .external_lex_state = 8}, + [1697] = {.lex_state = 55, .external_lex_state = 10}, + [1698] = {.lex_state = 153, .external_lex_state = 10}, + [1699] = {.lex_state = 55, .external_lex_state = 10}, + [1700] = {.lex_state = 55, .external_lex_state = 10}, + [1701] = {.lex_state = 55, .external_lex_state = 10}, + [1702] = {.lex_state = 55, .external_lex_state = 10}, + [1703] = {.lex_state = 55, .external_lex_state = 10}, + [1704] = {.lex_state = 55, .external_lex_state = 10}, + [1705] = {.lex_state = 153, .external_lex_state = 10}, + [1706] = {.lex_state = 55, .external_lex_state = 10}, + [1707] = {.lex_state = 153, .external_lex_state = 10}, + [1708] = {.lex_state = 49, .external_lex_state = 10}, + [1709] = {.lex_state = 49, .external_lex_state = 8}, + [1710] = {.lex_state = 153, .external_lex_state = 10}, + [1711] = {.lex_state = 153, .external_lex_state = 10}, + [1712] = {.lex_state = 153, .external_lex_state = 10}, + [1713] = {.lex_state = 153, .external_lex_state = 10}, + [1714] = {.lex_state = 153, .external_lex_state = 10}, + [1715] = {.lex_state = 49, .external_lex_state = 8}, + [1716] = {.lex_state = 49, .external_lex_state = 8}, + [1717] = {.lex_state = 153, .external_lex_state = 10}, + [1718] = {.lex_state = 55, .external_lex_state = 10}, + [1719] = {.lex_state = 153, .external_lex_state = 10}, + [1720] = {.lex_state = 55, .external_lex_state = 10}, + [1721] = {.lex_state = 153, .external_lex_state = 10}, + [1722] = {.lex_state = 55, .external_lex_state = 10}, + [1723] = {.lex_state = 49, .external_lex_state = 13}, + [1724] = {.lex_state = 153, .external_lex_state = 10}, + [1725] = {.lex_state = 153, .external_lex_state = 10}, + [1726] = {.lex_state = 49, .external_lex_state = 8}, + [1727] = {.lex_state = 153, .external_lex_state = 10}, + [1728] = {.lex_state = 153, .external_lex_state = 10}, + [1729] = {.lex_state = 153, .external_lex_state = 10}, + [1730] = {.lex_state = 153, .external_lex_state = 10}, + [1731] = {.lex_state = 55, .external_lex_state = 10}, + [1732] = {.lex_state = 55, .external_lex_state = 10}, + [1733] = {.lex_state = 153, .external_lex_state = 10}, + [1734] = {.lex_state = 153, .external_lex_state = 10}, + [1735] = {.lex_state = 55, .external_lex_state = 10}, + [1736] = {.lex_state = 55, .external_lex_state = 10}, + [1737] = {.lex_state = 55, .external_lex_state = 10}, + [1738] = {.lex_state = 55, .external_lex_state = 10}, + [1739] = {.lex_state = 55, .external_lex_state = 10}, + [1740] = {.lex_state = 55, .external_lex_state = 10}, + [1741] = {.lex_state = 55, .external_lex_state = 10}, + [1742] = {.lex_state = 55, .external_lex_state = 10}, + [1743] = {.lex_state = 55, .external_lex_state = 10}, + [1744] = {.lex_state = 55, .external_lex_state = 10}, + [1745] = {.lex_state = 55, .external_lex_state = 10}, + [1746] = {.lex_state = 55, .external_lex_state = 10}, + [1747] = {.lex_state = 55, .external_lex_state = 10}, + [1748] = {.lex_state = 55, .external_lex_state = 10}, + [1749] = {.lex_state = 55, .external_lex_state = 10}, + [1750] = {.lex_state = 55, .external_lex_state = 10}, + [1751] = {.lex_state = 153, .external_lex_state = 8}, + [1752] = {.lex_state = 57, .external_lex_state = 8}, + [1753] = {.lex_state = 49, .external_lex_state = 8}, + [1754] = {.lex_state = 49, .external_lex_state = 8}, + [1755] = {.lex_state = 49, .external_lex_state = 8}, + [1756] = {.lex_state = 49, .external_lex_state = 8}, + [1757] = {.lex_state = 49, .external_lex_state = 8}, + [1758] = {.lex_state = 49, .external_lex_state = 8}, + [1759] = {.lex_state = 49, .external_lex_state = 8}, + [1760] = {.lex_state = 153, .external_lex_state = 13}, + [1761] = {.lex_state = 153, .external_lex_state = 8}, + [1762] = {.lex_state = 49, .external_lex_state = 8}, + [1763] = {.lex_state = 153, .external_lex_state = 10}, + [1764] = {.lex_state = 153, .external_lex_state = 10}, + [1765] = {.lex_state = 49, .external_lex_state = 8}, + [1766] = {.lex_state = 49, .external_lex_state = 8}, + [1767] = {.lex_state = 153, .external_lex_state = 10}, + [1768] = {.lex_state = 153, .external_lex_state = 10}, + [1769] = {.lex_state = 153, .external_lex_state = 13}, + [1770] = {.lex_state = 153, .external_lex_state = 13}, + [1771] = {.lex_state = 153, .external_lex_state = 10}, + [1772] = {.lex_state = 49, .external_lex_state = 8}, + [1773] = {.lex_state = 153, .external_lex_state = 10}, + [1774] = {.lex_state = 49, .external_lex_state = 8}, + [1775] = {.lex_state = 153, .external_lex_state = 8}, + [1776] = {.lex_state = 49, .external_lex_state = 8}, + [1777] = {.lex_state = 49, .external_lex_state = 8}, + [1778] = {.lex_state = 49, .external_lex_state = 8}, + [1779] = {.lex_state = 49, .external_lex_state = 8}, + [1780] = {.lex_state = 153, .external_lex_state = 10}, + [1781] = {.lex_state = 49, .external_lex_state = 8}, + [1782] = {.lex_state = 153, .external_lex_state = 10}, + [1783] = {.lex_state = 153, .external_lex_state = 10}, + [1784] = {.lex_state = 49, .external_lex_state = 8}, + [1785] = {.lex_state = 153, .external_lex_state = 10}, + [1786] = {.lex_state = 153, .external_lex_state = 13}, + [1787] = {.lex_state = 153, .external_lex_state = 10}, + [1788] = {.lex_state = 49, .external_lex_state = 8}, + [1789] = {.lex_state = 49, .external_lex_state = 8}, + [1790] = {.lex_state = 49, .external_lex_state = 8}, + [1791] = {.lex_state = 153, .external_lex_state = 10}, + [1792] = {.lex_state = 49, .external_lex_state = 8}, + [1793] = {.lex_state = 49, .external_lex_state = 8}, + [1794] = {.lex_state = 49, .external_lex_state = 8}, + [1795] = {.lex_state = 49, .external_lex_state = 8}, + [1796] = {.lex_state = 49, .external_lex_state = 8}, + [1797] = {.lex_state = 153, .external_lex_state = 8}, + [1798] = {.lex_state = 153, .external_lex_state = 10}, + [1799] = {.lex_state = 49, .external_lex_state = 8}, + [1800] = {.lex_state = 49, .external_lex_state = 8}, + [1801] = {.lex_state = 49, .external_lex_state = 8}, + [1802] = {.lex_state = 49, .external_lex_state = 8}, + [1803] = {.lex_state = 49, .external_lex_state = 8}, + [1804] = {.lex_state = 49, .external_lex_state = 8}, + [1805] = {.lex_state = 49, .external_lex_state = 8}, + [1806] = {.lex_state = 49, .external_lex_state = 8}, + [1807] = {.lex_state = 49, .external_lex_state = 8}, + [1808] = {.lex_state = 49, .external_lex_state = 8}, + [1809] = {.lex_state = 49, .external_lex_state = 8}, + [1810] = {.lex_state = 49, .external_lex_state = 8}, + [1811] = {.lex_state = 49, .external_lex_state = 8}, + [1812] = {.lex_state = 49, .external_lex_state = 8}, + [1813] = {.lex_state = 49, .external_lex_state = 8}, + [1814] = {.lex_state = 57, .external_lex_state = 8}, + [1815] = {.lex_state = 153, .external_lex_state = 10}, + [1816] = {.lex_state = 153, .external_lex_state = 10}, + [1817] = {.lex_state = 49, .external_lex_state = 8}, + [1818] = {.lex_state = 49, .external_lex_state = 8}, + [1819] = {.lex_state = 153, .external_lex_state = 10}, + [1820] = {.lex_state = 153, .external_lex_state = 10}, + [1821] = {.lex_state = 153, .external_lex_state = 10}, + [1822] = {.lex_state = 57, .external_lex_state = 8}, + [1823] = {.lex_state = 49, .external_lex_state = 8}, + [1824] = {.lex_state = 57, .external_lex_state = 8}, + [1825] = {.lex_state = 57, .external_lex_state = 8}, + [1826] = {.lex_state = 57, .external_lex_state = 8}, + [1827] = {.lex_state = 57, .external_lex_state = 8}, + [1828] = {.lex_state = 153, .external_lex_state = 11}, + [1829] = {.lex_state = 57, .external_lex_state = 8}, + [1830] = {.lex_state = 57, .external_lex_state = 8}, + [1831] = {.lex_state = 57, .external_lex_state = 8}, + [1832] = {.lex_state = 153, .external_lex_state = 8}, + [1833] = {.lex_state = 49, .external_lex_state = 8}, + [1834] = {.lex_state = 57, .external_lex_state = 8}, + [1835] = {.lex_state = 57, .external_lex_state = 8}, + [1836] = {.lex_state = 153, .external_lex_state = 10}, + [1837] = {.lex_state = 49, .external_lex_state = 8}, + [1838] = {.lex_state = 57, .external_lex_state = 8}, + [1839] = {.lex_state = 57, .external_lex_state = 8}, + [1840] = {.lex_state = 57, .external_lex_state = 8}, + [1841] = {.lex_state = 57, .external_lex_state = 8}, + [1842] = {.lex_state = 49, .external_lex_state = 8}, + [1843] = {.lex_state = 57, .external_lex_state = 8}, + [1844] = {.lex_state = 153, .external_lex_state = 10}, + [1845] = {.lex_state = 57, .external_lex_state = 8}, + [1846] = {.lex_state = 49, .external_lex_state = 8}, + [1847] = {.lex_state = 153, .external_lex_state = 11}, + [1848] = {.lex_state = 153, .external_lex_state = 8}, + [1849] = {.lex_state = 57, .external_lex_state = 8}, + [1850] = {.lex_state = 57, .external_lex_state = 8}, + [1851] = {.lex_state = 49, .external_lex_state = 8}, + [1852] = {.lex_state = 153, .external_lex_state = 10}, + [1853] = {.lex_state = 57, .external_lex_state = 8}, + [1854] = {.lex_state = 49, .external_lex_state = 8}, + [1855] = {.lex_state = 49, .external_lex_state = 8}, + [1856] = {.lex_state = 57, .external_lex_state = 8}, + [1857] = {.lex_state = 153, .external_lex_state = 8}, + [1858] = {.lex_state = 57, .external_lex_state = 8}, + [1859] = {.lex_state = 57, .external_lex_state = 8}, + [1860] = {.lex_state = 57, .external_lex_state = 8}, + [1861] = {.lex_state = 153, .external_lex_state = 8}, + [1862] = {.lex_state = 153, .external_lex_state = 8}, + [1863] = {.lex_state = 153, .external_lex_state = 10}, + [1864] = {.lex_state = 153, .external_lex_state = 8}, + [1865] = {.lex_state = 57, .external_lex_state = 8}, + [1866] = {.lex_state = 153, .external_lex_state = 8}, + [1867] = {.lex_state = 57, .external_lex_state = 8}, + [1868] = {.lex_state = 57, .external_lex_state = 8}, + [1869] = {.lex_state = 57, .external_lex_state = 8}, + [1870] = {.lex_state = 57, .external_lex_state = 8}, + [1871] = {.lex_state = 57, .external_lex_state = 8}, + [1872] = {.lex_state = 49, .external_lex_state = 8}, + [1873] = {.lex_state = 153, .external_lex_state = 13}, + [1874] = {.lex_state = 49, .external_lex_state = 8}, + [1875] = {.lex_state = 57, .external_lex_state = 8}, + [1876] = {.lex_state = 57, .external_lex_state = 8}, + [1877] = {.lex_state = 153, .external_lex_state = 13}, + [1878] = {.lex_state = 153, .external_lex_state = 13}, + [1879] = {.lex_state = 153, .external_lex_state = 10}, + [1880] = {.lex_state = 57, .external_lex_state = 8}, + [1881] = {.lex_state = 49, .external_lex_state = 8}, + [1882] = {.lex_state = 153, .external_lex_state = 13}, + [1883] = {.lex_state = 153, .external_lex_state = 13}, + [1884] = {.lex_state = 49, .external_lex_state = 8}, + [1885] = {.lex_state = 57, .external_lex_state = 8}, + [1886] = {.lex_state = 49, .external_lex_state = 8}, + [1887] = {.lex_state = 49, .external_lex_state = 8}, + [1888] = {.lex_state = 49, .external_lex_state = 8}, + [1889] = {.lex_state = 49, .external_lex_state = 8}, + [1890] = {.lex_state = 49, .external_lex_state = 8}, + [1891] = {.lex_state = 49, .external_lex_state = 8}, + [1892] = {.lex_state = 153, .external_lex_state = 8}, + [1893] = {.lex_state = 49, .external_lex_state = 8}, + [1894] = {.lex_state = 49, .external_lex_state = 8}, + [1895] = {.lex_state = 49, .external_lex_state = 8}, + [1896] = {.lex_state = 153, .external_lex_state = 8}, + [1897] = {.lex_state = 153, .external_lex_state = 8}, + [1898] = {.lex_state = 153, .external_lex_state = 10}, + [1899] = {.lex_state = 153, .external_lex_state = 10}, + [1900] = {.lex_state = 57, .external_lex_state = 8}, + [1901] = {.lex_state = 57, .external_lex_state = 8}, + [1902] = {.lex_state = 57, .external_lex_state = 8}, + [1903] = {.lex_state = 57, .external_lex_state = 8}, + [1904] = {.lex_state = 57, .external_lex_state = 8}, + [1905] = {.lex_state = 57, .external_lex_state = 8}, + [1906] = {.lex_state = 153, .external_lex_state = 8}, + [1907] = {.lex_state = 155, .external_lex_state = 10}, + [1908] = {.lex_state = 153, .external_lex_state = 8}, + [1909] = {.lex_state = 153, .external_lex_state = 8}, + [1910] = {.lex_state = 153, .external_lex_state = 10}, + [1911] = {.lex_state = 153, .external_lex_state = 8}, + [1912] = {.lex_state = 153, .external_lex_state = 10}, + [1913] = {.lex_state = 153, .external_lex_state = 8}, + [1914] = {.lex_state = 153, .external_lex_state = 10}, + [1915] = {.lex_state = 153, .external_lex_state = 8}, + [1916] = {.lex_state = 153, .external_lex_state = 10}, + [1917] = {.lex_state = 153, .external_lex_state = 8}, + [1918] = {.lex_state = 155, .external_lex_state = 10}, + [1919] = {.lex_state = 153, .external_lex_state = 8}, + [1920] = {.lex_state = 153, .external_lex_state = 8}, + [1921] = {.lex_state = 153, .external_lex_state = 8}, + [1922] = {.lex_state = 153, .external_lex_state = 8}, + [1923] = {.lex_state = 153, .external_lex_state = 8}, + [1924] = {.lex_state = 49, .external_lex_state = 8}, + [1925] = {.lex_state = 153, .external_lex_state = 8}, + [1926] = {.lex_state = 153, .external_lex_state = 8}, + [1927] = {.lex_state = 153, .external_lex_state = 8}, + [1928] = {.lex_state = 153, .external_lex_state = 8}, + [1929] = {.lex_state = 49, .external_lex_state = 8}, + [1930] = {.lex_state = 153, .external_lex_state = 8}, + [1931] = {.lex_state = 155, .external_lex_state = 10}, + [1932] = {.lex_state = 153, .external_lex_state = 8}, + [1933] = {.lex_state = 153, .external_lex_state = 8}, + [1934] = {.lex_state = 153, .external_lex_state = 8}, + [1935] = {.lex_state = 155, .external_lex_state = 10}, + [1936] = {.lex_state = 60, .external_lex_state = 8}, + [1937] = {.lex_state = 49, .external_lex_state = 8}, + [1938] = {.lex_state = 60, .external_lex_state = 8}, + [1939] = {.lex_state = 60, .external_lex_state = 8}, + [1940] = {.lex_state = 60, .external_lex_state = 8}, + [1941] = {.lex_state = 153, .external_lex_state = 8}, + [1942] = {.lex_state = 153, .external_lex_state = 10}, + [1943] = {.lex_state = 155, .external_lex_state = 10}, + [1944] = {.lex_state = 155, .external_lex_state = 10}, + [1945] = {.lex_state = 49, .external_lex_state = 8}, + [1946] = {.lex_state = 49, .external_lex_state = 8}, + [1947] = {.lex_state = 153, .external_lex_state = 8}, + [1948] = {.lex_state = 153, .external_lex_state = 8}, + [1949] = {.lex_state = 153, .external_lex_state = 8}, + [1950] = {.lex_state = 49, .external_lex_state = 8}, + [1951] = {.lex_state = 153, .external_lex_state = 8}, + [1952] = {.lex_state = 49, .external_lex_state = 8}, + [1953] = {.lex_state = 153, .external_lex_state = 8}, + [1954] = {.lex_state = 153, .external_lex_state = 10}, + [1955] = {.lex_state = 49, .external_lex_state = 8}, + [1956] = {.lex_state = 155, .external_lex_state = 10}, + [1957] = {.lex_state = 153, .external_lex_state = 10}, + [1958] = {.lex_state = 153, .external_lex_state = 10}, + [1959] = {.lex_state = 153, .external_lex_state = 11}, + [1960] = {.lex_state = 49, .external_lex_state = 8}, + [1961] = {.lex_state = 153, .external_lex_state = 8}, + [1962] = {.lex_state = 153, .external_lex_state = 10}, + [1963] = {.lex_state = 153, .external_lex_state = 10}, + [1964] = {.lex_state = 153, .external_lex_state = 8}, + [1965] = {.lex_state = 153, .external_lex_state = 8}, + [1966] = {.lex_state = 153, .external_lex_state = 8}, + [1967] = {.lex_state = 153, .external_lex_state = 11}, + [1968] = {.lex_state = 49, .external_lex_state = 8}, + [1969] = {.lex_state = 153, .external_lex_state = 11}, + [1970] = {.lex_state = 153, .external_lex_state = 8}, + [1971] = {.lex_state = 155, .external_lex_state = 10}, + [1972] = {.lex_state = 155, .external_lex_state = 10}, + [1973] = {.lex_state = 155, .external_lex_state = 10}, + [1974] = {.lex_state = 155, .external_lex_state = 10}, + [1975] = {.lex_state = 155, .external_lex_state = 10}, + [1976] = {.lex_state = 155, .external_lex_state = 10}, + [1977] = {.lex_state = 49, .external_lex_state = 8}, + [1978] = {.lex_state = 155, .external_lex_state = 10}, + [1979] = {.lex_state = 155, .external_lex_state = 10}, + [1980] = {.lex_state = 155, .external_lex_state = 10}, + [1981] = {.lex_state = 155, .external_lex_state = 10}, + [1982] = {.lex_state = 155, .external_lex_state = 10}, + [1983] = {.lex_state = 155, .external_lex_state = 10}, + [1984] = {.lex_state = 155, .external_lex_state = 10}, + [1985] = {.lex_state = 155, .external_lex_state = 10}, + [1986] = {.lex_state = 155, .external_lex_state = 10}, + [1987] = {.lex_state = 155, .external_lex_state = 10}, + [1988] = {.lex_state = 49, .external_lex_state = 8}, + [1989] = {.lex_state = 49, .external_lex_state = 8}, + [1990] = {.lex_state = 153, .external_lex_state = 11}, + [1991] = {.lex_state = 153, .external_lex_state = 10}, + [1992] = {.lex_state = 153, .external_lex_state = 10}, + [1993] = {.lex_state = 153, .external_lex_state = 11}, + [1994] = {.lex_state = 153, .external_lex_state = 10}, + [1995] = {.lex_state = 153, .external_lex_state = 11}, + [1996] = {.lex_state = 153, .external_lex_state = 10}, + [1997] = {.lex_state = 155, .external_lex_state = 10}, + [1998] = {.lex_state = 60, .external_lex_state = 8}, + [1999] = {.lex_state = 153, .external_lex_state = 8}, + [2000] = {.lex_state = 155, .external_lex_state = 10}, + [2001] = {.lex_state = 155, .external_lex_state = 10}, + [2002] = {.lex_state = 155, .external_lex_state = 10}, + [2003] = {.lex_state = 153, .external_lex_state = 8}, + [2004] = {.lex_state = 155, .external_lex_state = 10}, + [2005] = {.lex_state = 155, .external_lex_state = 10}, + [2006] = {.lex_state = 155, .external_lex_state = 10}, + [2007] = {.lex_state = 155, .external_lex_state = 10}, + [2008] = {.lex_state = 155, .external_lex_state = 10}, + [2009] = {.lex_state = 155, .external_lex_state = 10}, + [2010] = {.lex_state = 155, .external_lex_state = 10}, + [2011] = {.lex_state = 155, .external_lex_state = 10}, + [2012] = {.lex_state = 155, .external_lex_state = 10}, + [2013] = {.lex_state = 155, .external_lex_state = 10}, + [2014] = {.lex_state = 155, .external_lex_state = 10}, + [2015] = {.lex_state = 155, .external_lex_state = 10}, + [2016] = {.lex_state = 155, .external_lex_state = 10}, + [2017] = {.lex_state = 153, .external_lex_state = 10}, + [2018] = {.lex_state = 153, .external_lex_state = 8}, + [2019] = {.lex_state = 153, .external_lex_state = 10}, + [2020] = {.lex_state = 153, .external_lex_state = 10}, + [2021] = {.lex_state = 153, .external_lex_state = 10}, + [2022] = {.lex_state = 153, .external_lex_state = 8}, + [2023] = {.lex_state = 153, .external_lex_state = 8}, + [2024] = {.lex_state = 153, .external_lex_state = 11}, + [2025] = {.lex_state = 153, .external_lex_state = 8}, + [2026] = {.lex_state = 49, .external_lex_state = 8}, + [2027] = {.lex_state = 153, .external_lex_state = 8}, + [2028] = {.lex_state = 153, .external_lex_state = 8}, + [2029] = {.lex_state = 153, .external_lex_state = 8}, + [2030] = {.lex_state = 153, .external_lex_state = 8}, + [2031] = {.lex_state = 155, .external_lex_state = 10}, + [2032] = {.lex_state = 153, .external_lex_state = 8}, + [2033] = {.lex_state = 153, .external_lex_state = 8}, + [2034] = {.lex_state = 153, .external_lex_state = 8}, + [2035] = {.lex_state = 153, .external_lex_state = 8}, + [2036] = {.lex_state = 153, .external_lex_state = 11}, + [2037] = {.lex_state = 153, .external_lex_state = 8}, + [2038] = {.lex_state = 153, .external_lex_state = 11}, + [2039] = {.lex_state = 49, .external_lex_state = 8}, + [2040] = {.lex_state = 153, .external_lex_state = 8}, + [2041] = {.lex_state = 60, .external_lex_state = 8}, + [2042] = {.lex_state = 60, .external_lex_state = 8}, + [2043] = {.lex_state = 60, .external_lex_state = 8}, + [2044] = {.lex_state = 60, .external_lex_state = 8}, + [2045] = {.lex_state = 60, .external_lex_state = 8}, + [2046] = {.lex_state = 60, .external_lex_state = 8}, + [2047] = {.lex_state = 60, .external_lex_state = 8}, + [2048] = {.lex_state = 60, .external_lex_state = 8}, + [2049] = {.lex_state = 60, .external_lex_state = 8}, + [2050] = {.lex_state = 60, .external_lex_state = 8}, + [2051] = {.lex_state = 153, .external_lex_state = 8}, + [2052] = {.lex_state = 153, .external_lex_state = 8}, + [2053] = {.lex_state = 60, .external_lex_state = 8}, + [2054] = {.lex_state = 60, .external_lex_state = 8}, + [2055] = {.lex_state = 60, .external_lex_state = 8}, + [2056] = {.lex_state = 153, .external_lex_state = 8}, + [2057] = {.lex_state = 60, .external_lex_state = 8}, + [2058] = {.lex_state = 153, .external_lex_state = 8}, + [2059] = {.lex_state = 153, .external_lex_state = 8}, + [2060] = {.lex_state = 153, .external_lex_state = 8}, + [2061] = {.lex_state = 153, .external_lex_state = 8}, + [2062] = {.lex_state = 153, .external_lex_state = 10}, + [2063] = {.lex_state = 153, .external_lex_state = 8}, + [2064] = {.lex_state = 153, .external_lex_state = 8}, + [2065] = {.lex_state = 49, .external_lex_state = 8}, + [2066] = {.lex_state = 153, .external_lex_state = 8}, + [2067] = {.lex_state = 49, .external_lex_state = 8}, + [2068] = {.lex_state = 153, .external_lex_state = 8}, + [2069] = {.lex_state = 153, .external_lex_state = 8}, + [2070] = {.lex_state = 49, .external_lex_state = 8}, + [2071] = {.lex_state = 153, .external_lex_state = 8}, + [2072] = {.lex_state = 60, .external_lex_state = 8}, + [2073] = {.lex_state = 153, .external_lex_state = 10}, + [2074] = {.lex_state = 60, .external_lex_state = 8}, + [2075] = {.lex_state = 153, .external_lex_state = 8}, + [2076] = {.lex_state = 153, .external_lex_state = 8}, + [2077] = {.lex_state = 60, .external_lex_state = 8}, + [2078] = {.lex_state = 60, .external_lex_state = 8}, + [2079] = {.lex_state = 60, .external_lex_state = 8}, + [2080] = {.lex_state = 60, .external_lex_state = 8}, + [2081] = {.lex_state = 60, .external_lex_state = 8}, + [2082] = {.lex_state = 60, .external_lex_state = 8}, + [2083] = {.lex_state = 60, .external_lex_state = 8}, + [2084] = {.lex_state = 60, .external_lex_state = 8}, + [2085] = {.lex_state = 60, .external_lex_state = 8}, + [2086] = {.lex_state = 60, .external_lex_state = 8}, + [2087] = {.lex_state = 60, .external_lex_state = 8}, + [2088] = {.lex_state = 60, .external_lex_state = 8}, + [2089] = {.lex_state = 60, .external_lex_state = 8}, + [2090] = {.lex_state = 60, .external_lex_state = 8}, + [2091] = {.lex_state = 60, .external_lex_state = 8}, + [2092] = {.lex_state = 153, .external_lex_state = 8}, + [2093] = {.lex_state = 60, .external_lex_state = 8}, + [2094] = {.lex_state = 60, .external_lex_state = 8}, + [2095] = {.lex_state = 60, .external_lex_state = 8}, + [2096] = {.lex_state = 60, .external_lex_state = 8}, + [2097] = {.lex_state = 153, .external_lex_state = 8}, + [2098] = {.lex_state = 153, .external_lex_state = 8}, + [2099] = {.lex_state = 60, .external_lex_state = 8}, + [2100] = {.lex_state = 49, .external_lex_state = 8}, + [2101] = {.lex_state = 49, .external_lex_state = 8}, + [2102] = {.lex_state = 49, .external_lex_state = 10}, + [2103] = {.lex_state = 49, .external_lex_state = 10}, + [2104] = {.lex_state = 153, .external_lex_state = 10}, + [2105] = {.lex_state = 153, .external_lex_state = 10}, + [2106] = {.lex_state = 49, .external_lex_state = 10}, + [2107] = {.lex_state = 49, .external_lex_state = 8}, + [2108] = {.lex_state = 153, .external_lex_state = 10}, + [2109] = {.lex_state = 153, .external_lex_state = 10}, + [2110] = {.lex_state = 153, .external_lex_state = 10}, + [2111] = {.lex_state = 153, .external_lex_state = 10}, + [2112] = {.lex_state = 153, .external_lex_state = 10}, + [2113] = {.lex_state = 153, .external_lex_state = 10}, + [2114] = {.lex_state = 153, .external_lex_state = 10}, + [2115] = {.lex_state = 153, .external_lex_state = 10}, + [2116] = {.lex_state = 153, .external_lex_state = 10}, + [2117] = {.lex_state = 153, .external_lex_state = 10}, + [2118] = {.lex_state = 153, .external_lex_state = 10}, + [2119] = {.lex_state = 153, .external_lex_state = 10}, + [2120] = {.lex_state = 153, .external_lex_state = 10}, + [2121] = {.lex_state = 153, .external_lex_state = 10}, + [2122] = {.lex_state = 153, .external_lex_state = 10}, + [2123] = {.lex_state = 49, .external_lex_state = 11}, + [2124] = {.lex_state = 153, .external_lex_state = 10}, + [2125] = {.lex_state = 153, .external_lex_state = 10}, + [2126] = {.lex_state = 153, .external_lex_state = 10}, + [2127] = {.lex_state = 153, .external_lex_state = 10}, + [2128] = {.lex_state = 153, .external_lex_state = 10}, + [2129] = {.lex_state = 153, .external_lex_state = 10}, + [2130] = {.lex_state = 153, .external_lex_state = 10}, + [2131] = {.lex_state = 153, .external_lex_state = 10}, + [2132] = {.lex_state = 153, .external_lex_state = 10}, + [2133] = {.lex_state = 153, .external_lex_state = 10}, + [2134] = {.lex_state = 153, .external_lex_state = 10}, + [2135] = {.lex_state = 153, .external_lex_state = 10}, + [2136] = {.lex_state = 153, .external_lex_state = 10}, + [2137] = {.lex_state = 153, .external_lex_state = 10}, + [2138] = {.lex_state = 153, .external_lex_state = 10}, + [2139] = {.lex_state = 153, .external_lex_state = 10}, + [2140] = {.lex_state = 153, .external_lex_state = 10}, + [2141] = {.lex_state = 153, .external_lex_state = 10}, + [2142] = {.lex_state = 153, .external_lex_state = 10}, + [2143] = {.lex_state = 153, .external_lex_state = 10}, + [2144] = {.lex_state = 153, .external_lex_state = 10}, + [2145] = {.lex_state = 153, .external_lex_state = 10}, + [2146] = {.lex_state = 153, .external_lex_state = 10}, + [2147] = {.lex_state = 153, .external_lex_state = 10}, + [2148] = {.lex_state = 153, .external_lex_state = 10}, + [2149] = {.lex_state = 153, .external_lex_state = 10}, + [2150] = {.lex_state = 153, .external_lex_state = 10}, + [2151] = {.lex_state = 153, .external_lex_state = 10}, + [2152] = {.lex_state = 153, .external_lex_state = 10}, + [2153] = {.lex_state = 153, .external_lex_state = 10}, + [2154] = {.lex_state = 153, .external_lex_state = 8}, + [2155] = {.lex_state = 153, .external_lex_state = 8}, + [2156] = {.lex_state = 153, .external_lex_state = 10}, + [2157] = {.lex_state = 153, .external_lex_state = 8}, + [2158] = {.lex_state = 49, .external_lex_state = 11}, + [2159] = {.lex_state = 153, .external_lex_state = 10}, + [2160] = {.lex_state = 153, .external_lex_state = 10}, + [2161] = {.lex_state = 153, .external_lex_state = 8}, + [2162] = {.lex_state = 153, .external_lex_state = 10}, + [2163] = {.lex_state = 153, .external_lex_state = 10}, + [2164] = {.lex_state = 153, .external_lex_state = 10}, + [2165] = {.lex_state = 153, .external_lex_state = 8}, + [2166] = {.lex_state = 62, .external_lex_state = 10}, + [2167] = {.lex_state = 153, .external_lex_state = 10}, + [2168] = {.lex_state = 153, .external_lex_state = 8}, + [2169] = {.lex_state = 153, .external_lex_state = 10}, + [2170] = {.lex_state = 62, .external_lex_state = 10}, + [2171] = {.lex_state = 62, .external_lex_state = 10}, + [2172] = {.lex_state = 62, .external_lex_state = 10}, + [2173] = {.lex_state = 62, .external_lex_state = 10}, + [2174] = {.lex_state = 62, .external_lex_state = 10}, + [2175] = {.lex_state = 62, .external_lex_state = 10}, + [2176] = {.lex_state = 62, .external_lex_state = 10}, + [2177] = {.lex_state = 62, .external_lex_state = 10}, + [2178] = {.lex_state = 62, .external_lex_state = 10}, + [2179] = {.lex_state = 62, .external_lex_state = 10}, + [2180] = {.lex_state = 62, .external_lex_state = 10}, + [2181] = {.lex_state = 62, .external_lex_state = 10}, + [2182] = {.lex_state = 62, .external_lex_state = 10}, + [2183] = {.lex_state = 62, .external_lex_state = 10}, + [2184] = {.lex_state = 62, .external_lex_state = 10}, + [2185] = {.lex_state = 62, .external_lex_state = 10}, + [2186] = {.lex_state = 62, .external_lex_state = 10}, + [2187] = {.lex_state = 62, .external_lex_state = 10}, + [2188] = {.lex_state = 62, .external_lex_state = 10}, + [2189] = {.lex_state = 62, .external_lex_state = 10}, + [2190] = {.lex_state = 62, .external_lex_state = 10}, + [2191] = {.lex_state = 62, .external_lex_state = 10}, + [2192] = {.lex_state = 62, .external_lex_state = 10}, + [2193] = {.lex_state = 62, .external_lex_state = 10}, + [2194] = {.lex_state = 62, .external_lex_state = 10}, + [2195] = {.lex_state = 62, .external_lex_state = 10}, + [2196] = {.lex_state = 62, .external_lex_state = 10}, + [2197] = {.lex_state = 62, .external_lex_state = 10}, + [2198] = {.lex_state = 62, .external_lex_state = 10}, + [2199] = {.lex_state = 62, .external_lex_state = 10}, + [2200] = {.lex_state = 62, .external_lex_state = 10}, + [2201] = {.lex_state = 62, .external_lex_state = 10}, + [2202] = {.lex_state = 62, .external_lex_state = 10}, + [2203] = {.lex_state = 153, .external_lex_state = 8}, + [2204] = {.lex_state = 153, .external_lex_state = 8}, + [2205] = {.lex_state = 153, .external_lex_state = 8}, + [2206] = {.lex_state = 153, .external_lex_state = 8}, + [2207] = {.lex_state = 153, .external_lex_state = 8}, + [2208] = {.lex_state = 153, .external_lex_state = 8}, + [2209] = {.lex_state = 153, .external_lex_state = 8}, + [2210] = {.lex_state = 62, .external_lex_state = 10}, + [2211] = {.lex_state = 62, .external_lex_state = 10}, + [2212] = {.lex_state = 62, .external_lex_state = 10}, + [2213] = {.lex_state = 62, .external_lex_state = 10}, + [2214] = {.lex_state = 153, .external_lex_state = 10}, + [2215] = {.lex_state = 153, .external_lex_state = 10}, + [2216] = {.lex_state = 153, .external_lex_state = 10}, + [2217] = {.lex_state = 153, .external_lex_state = 10}, + [2218] = {.lex_state = 62, .external_lex_state = 10}, + [2219] = {.lex_state = 62, .external_lex_state = 10}, + [2220] = {.lex_state = 62, .external_lex_state = 10}, + [2221] = {.lex_state = 153, .external_lex_state = 11}, + [2222] = {.lex_state = 49, .external_lex_state = 8}, + [2223] = {.lex_state = 49, .external_lex_state = 8}, + [2224] = {.lex_state = 153, .external_lex_state = 11}, + [2225] = {.lex_state = 49, .external_lex_state = 8}, + [2226] = {.lex_state = 153, .external_lex_state = 10}, + [2227] = {.lex_state = 49, .external_lex_state = 8}, + [2228] = {.lex_state = 49, .external_lex_state = 8}, + [2229] = {.lex_state = 153, .external_lex_state = 10}, + [2230] = {.lex_state = 153, .external_lex_state = 10}, + [2231] = {.lex_state = 153, .external_lex_state = 10}, + [2232] = {.lex_state = 153, .external_lex_state = 10}, + [2233] = {.lex_state = 153, .external_lex_state = 10}, + [2234] = {.lex_state = 49, .external_lex_state = 8}, + [2235] = {.lex_state = 49, .external_lex_state = 8}, + [2236] = {.lex_state = 153, .external_lex_state = 10}, + [2237] = {.lex_state = 49, .external_lex_state = 8}, + [2238] = {.lex_state = 49, .external_lex_state = 8}, + [2239] = {.lex_state = 49, .external_lex_state = 8}, + [2240] = {.lex_state = 153, .external_lex_state = 8}, + [2241] = {.lex_state = 153, .external_lex_state = 10}, + [2242] = {.lex_state = 49, .external_lex_state = 8}, + [2243] = {.lex_state = 153, .external_lex_state = 10}, + [2244] = {.lex_state = 153, .external_lex_state = 10}, + [2245] = {.lex_state = 49, .external_lex_state = 8}, + [2246] = {.lex_state = 153, .external_lex_state = 8}, + [2247] = {.lex_state = 49, .external_lex_state = 8}, + [2248] = {.lex_state = 49, .external_lex_state = 8}, + [2249] = {.lex_state = 49, .external_lex_state = 10}, + [2250] = {.lex_state = 49, .external_lex_state = 8}, + [2251] = {.lex_state = 153, .external_lex_state = 8}, + [2252] = {.lex_state = 49, .external_lex_state = 10}, + [2253] = {.lex_state = 49, .external_lex_state = 10}, + [2254] = {.lex_state = 49, .external_lex_state = 10}, + [2255] = {.lex_state = 49, .external_lex_state = 8}, + [2256] = {.lex_state = 49, .external_lex_state = 8}, + [2257] = {.lex_state = 49, .external_lex_state = 8}, + [2258] = {.lex_state = 153, .external_lex_state = 10}, + [2259] = {.lex_state = 153, .external_lex_state = 10}, + [2260] = {.lex_state = 153, .external_lex_state = 10}, + [2261] = {.lex_state = 153, .external_lex_state = 8}, + [2262] = {.lex_state = 153, .external_lex_state = 8}, + [2263] = {.lex_state = 153, .external_lex_state = 8}, + [2264] = {.lex_state = 153, .external_lex_state = 10}, + [2265] = {.lex_state = 153, .external_lex_state = 10}, + [2266] = {.lex_state = 49, .external_lex_state = 8}, + [2267] = {.lex_state = 153, .external_lex_state = 13}, + [2268] = {.lex_state = 49, .external_lex_state = 8}, + [2269] = {.lex_state = 49, .external_lex_state = 8}, + [2270] = {.lex_state = 49, .external_lex_state = 10}, + [2271] = {.lex_state = 49, .external_lex_state = 10}, + [2272] = {.lex_state = 49, .external_lex_state = 8}, + [2273] = {.lex_state = 153, .external_lex_state = 10}, + [2274] = {.lex_state = 153, .external_lex_state = 10}, + [2275] = {.lex_state = 153, .external_lex_state = 13}, + [2276] = {.lex_state = 49, .external_lex_state = 8}, + [2277] = {.lex_state = 49, .external_lex_state = 8}, + [2278] = {.lex_state = 49, .external_lex_state = 8}, + [2279] = {.lex_state = 49, .external_lex_state = 8}, + [2280] = {.lex_state = 49, .external_lex_state = 8}, + [2281] = {.lex_state = 49, .external_lex_state = 8}, + [2282] = {.lex_state = 153, .external_lex_state = 10}, + [2283] = {.lex_state = 49, .external_lex_state = 10}, + [2284] = {.lex_state = 49, .external_lex_state = 8}, + [2285] = {.lex_state = 49, .external_lex_state = 10}, + [2286] = {.lex_state = 153, .external_lex_state = 8}, + [2287] = {.lex_state = 49, .external_lex_state = 8}, + [2288] = {.lex_state = 49, .external_lex_state = 8}, + [2289] = {.lex_state = 49, .external_lex_state = 8}, + [2290] = {.lex_state = 49, .external_lex_state = 8}, + [2291] = {.lex_state = 49, .external_lex_state = 8}, + [2292] = {.lex_state = 49, .external_lex_state = 8}, + [2293] = {.lex_state = 49, .external_lex_state = 8}, + [2294] = {.lex_state = 153, .external_lex_state = 10}, + [2295] = {.lex_state = 153, .external_lex_state = 8}, + [2296] = {.lex_state = 62, .external_lex_state = 10}, + [2297] = {.lex_state = 62, .external_lex_state = 10}, + [2298] = {.lex_state = 62, .external_lex_state = 10}, + [2299] = {.lex_state = 62, .external_lex_state = 10}, + [2300] = {.lex_state = 155, .external_lex_state = 10}, + [2301] = {.lex_state = 155, .external_lex_state = 10}, + [2302] = {.lex_state = 155, .external_lex_state = 10}, + [2303] = {.lex_state = 155, .external_lex_state = 10}, + [2304] = {.lex_state = 155, .external_lex_state = 10}, + [2305] = {.lex_state = 155, .external_lex_state = 10}, + [2306] = {.lex_state = 62, .external_lex_state = 10}, + [2307] = {.lex_state = 62, .external_lex_state = 10}, + [2308] = {.lex_state = 155, .external_lex_state = 10}, + [2309] = {.lex_state = 155, .external_lex_state = 10}, + [2310] = {.lex_state = 155, .external_lex_state = 10}, + [2311] = {.lex_state = 155, .external_lex_state = 10}, + [2312] = {.lex_state = 155, .external_lex_state = 10}, + [2313] = {.lex_state = 62, .external_lex_state = 10}, + [2314] = {.lex_state = 62, .external_lex_state = 10}, + [2315] = {.lex_state = 62, .external_lex_state = 10}, + [2316] = {.lex_state = 62, .external_lex_state = 10}, + [2317] = {.lex_state = 62, .external_lex_state = 10}, + [2318] = {.lex_state = 62, .external_lex_state = 10}, + [2319] = {.lex_state = 62, .external_lex_state = 10}, + [2320] = {.lex_state = 62, .external_lex_state = 10}, + [2321] = {.lex_state = 62, .external_lex_state = 10}, + [2322] = {.lex_state = 62, .external_lex_state = 10}, + [2323] = {.lex_state = 155, .external_lex_state = 10}, + [2324] = {.lex_state = 153, .external_lex_state = 10}, + [2325] = {.lex_state = 64, .external_lex_state = 11}, + [2326] = {.lex_state = 153, .external_lex_state = 10}, + [2327] = {.lex_state = 155, .external_lex_state = 10}, + [2328] = {.lex_state = 153, .external_lex_state = 10}, + [2329] = {.lex_state = 155, .external_lex_state = 10}, + [2330] = {.lex_state = 153, .external_lex_state = 8}, + [2331] = {.lex_state = 155, .external_lex_state = 10}, + [2332] = {.lex_state = 153, .external_lex_state = 10}, + [2333] = {.lex_state = 153, .external_lex_state = 10}, + [2334] = {.lex_state = 153, .external_lex_state = 10}, + [2335] = {.lex_state = 62, .external_lex_state = 10}, + [2336] = {.lex_state = 62, .external_lex_state = 10}, + [2337] = {.lex_state = 62, .external_lex_state = 10}, + [2338] = {.lex_state = 62, .external_lex_state = 10}, + [2339] = {.lex_state = 62, .external_lex_state = 10}, + [2340] = {.lex_state = 62, .external_lex_state = 10}, + [2341] = {.lex_state = 62, .external_lex_state = 10}, + [2342] = {.lex_state = 62, .external_lex_state = 10}, + [2343] = {.lex_state = 62, .external_lex_state = 10}, + [2344] = {.lex_state = 62, .external_lex_state = 10}, + [2345] = {.lex_state = 62, .external_lex_state = 10}, + [2346] = {.lex_state = 62, .external_lex_state = 10}, + [2347] = {.lex_state = 62, .external_lex_state = 10}, + [2348] = {.lex_state = 62, .external_lex_state = 10}, + [2349] = {.lex_state = 62, .external_lex_state = 10}, + [2350] = {.lex_state = 62, .external_lex_state = 10}, + [2351] = {.lex_state = 153, .external_lex_state = 10}, + [2352] = {.lex_state = 153, .external_lex_state = 10}, + [2353] = {.lex_state = 155, .external_lex_state = 10}, + [2354] = {.lex_state = 153, .external_lex_state = 10}, + [2355] = {.lex_state = 153, .external_lex_state = 8}, + [2356] = {.lex_state = 153, .external_lex_state = 10}, + [2357] = {.lex_state = 153, .external_lex_state = 10}, + [2358] = {.lex_state = 64, .external_lex_state = 11}, + [2359] = {.lex_state = 49, .external_lex_state = 10}, + [2360] = {.lex_state = 153, .external_lex_state = 10}, + [2361] = {.lex_state = 153, .external_lex_state = 10}, + [2362] = {.lex_state = 153, .external_lex_state = 10}, + [2363] = {.lex_state = 153, .external_lex_state = 10}, + [2364] = {.lex_state = 155, .external_lex_state = 10}, + [2365] = {.lex_state = 155, .external_lex_state = 10}, + [2366] = {.lex_state = 155, .external_lex_state = 10}, + [2367] = {.lex_state = 155, .external_lex_state = 10}, + [2368] = {.lex_state = 155, .external_lex_state = 10}, + [2369] = {.lex_state = 155, .external_lex_state = 10}, + [2370] = {.lex_state = 155, .external_lex_state = 10}, + [2371] = {.lex_state = 155, .external_lex_state = 10}, + [2372] = {.lex_state = 155, .external_lex_state = 10}, + [2373] = {.lex_state = 155, .external_lex_state = 10}, + [2374] = {.lex_state = 155, .external_lex_state = 10}, + [2375] = {.lex_state = 155, .external_lex_state = 10}, + [2376] = {.lex_state = 157, .external_lex_state = 8}, + [2377] = {.lex_state = 155, .external_lex_state = 10}, + [2378] = {.lex_state = 155, .external_lex_state = 10}, + [2379] = {.lex_state = 155, .external_lex_state = 10}, + [2380] = {.lex_state = 155, .external_lex_state = 10}, + [2381] = {.lex_state = 153, .external_lex_state = 10}, + [2382] = {.lex_state = 153, .external_lex_state = 10}, + [2383] = {.lex_state = 153, .external_lex_state = 10}, + [2384] = {.lex_state = 67, .external_lex_state = 10}, + [2385] = {.lex_state = 62, .external_lex_state = 10}, + [2386] = {.lex_state = 67, .external_lex_state = 10}, + [2387] = {.lex_state = 67, .external_lex_state = 10}, + [2388] = {.lex_state = 67, .external_lex_state = 10}, + [2389] = {.lex_state = 155, .external_lex_state = 10}, + [2390] = {.lex_state = 155, .external_lex_state = 10}, + [2391] = {.lex_state = 155, .external_lex_state = 10}, + [2392] = {.lex_state = 155, .external_lex_state = 10}, + [2393] = {.lex_state = 153, .external_lex_state = 10}, + [2394] = {.lex_state = 62, .external_lex_state = 10}, + [2395] = {.lex_state = 62, .external_lex_state = 10}, + [2396] = {.lex_state = 62, .external_lex_state = 10}, + [2397] = {.lex_state = 62, .external_lex_state = 10}, + [2398] = {.lex_state = 49, .external_lex_state = 10}, + [2399] = {.lex_state = 153, .external_lex_state = 11}, + [2400] = {.lex_state = 153, .external_lex_state = 11}, + [2401] = {.lex_state = 155, .external_lex_state = 10}, + [2402] = {.lex_state = 153, .external_lex_state = 11}, + [2403] = {.lex_state = 153, .external_lex_state = 11}, + [2404] = {.lex_state = 49, .external_lex_state = 10}, + [2405] = {.lex_state = 64, .external_lex_state = 10}, + [2406] = {.lex_state = 153, .external_lex_state = 10}, + [2407] = {.lex_state = 49, .external_lex_state = 10}, + [2408] = {.lex_state = 155, .external_lex_state = 10}, + [2409] = {.lex_state = 64, .external_lex_state = 10}, + [2410] = {.lex_state = 155, .external_lex_state = 10}, + [2411] = {.lex_state = 155, .external_lex_state = 10}, + [2412] = {.lex_state = 155, .external_lex_state = 10}, + [2413] = {.lex_state = 153, .external_lex_state = 10}, + [2414] = {.lex_state = 153, .external_lex_state = 10}, + [2415] = {.lex_state = 49, .external_lex_state = 10}, + [2416] = {.lex_state = 49, .external_lex_state = 10}, + [2417] = {.lex_state = 64, .external_lex_state = 10}, + [2418] = {.lex_state = 67, .external_lex_state = 10}, + [2419] = {.lex_state = 67, .external_lex_state = 10}, + [2420] = {.lex_state = 64, .external_lex_state = 10}, + [2421] = {.lex_state = 153, .external_lex_state = 11}, + [2422] = {.lex_state = 67, .external_lex_state = 10}, + [2423] = {.lex_state = 153, .external_lex_state = 10}, + [2424] = {.lex_state = 67, .external_lex_state = 10}, + [2425] = {.lex_state = 153, .external_lex_state = 11}, + [2426] = {.lex_state = 153, .external_lex_state = 11}, + [2427] = {.lex_state = 153, .external_lex_state = 10}, + [2428] = {.lex_state = 155, .external_lex_state = 10}, + [2429] = {.lex_state = 64, .external_lex_state = 10}, + [2430] = {.lex_state = 155, .external_lex_state = 10}, + [2431] = {.lex_state = 153, .external_lex_state = 11}, + [2432] = {.lex_state = 153, .external_lex_state = 10}, + [2433] = {.lex_state = 155, .external_lex_state = 10}, + [2434] = {.lex_state = 155, .external_lex_state = 10}, + [2435] = {.lex_state = 153, .external_lex_state = 8}, + [2436] = {.lex_state = 153, .external_lex_state = 11}, + [2437] = {.lex_state = 153, .external_lex_state = 8}, + [2438] = {.lex_state = 153, .external_lex_state = 8}, + [2439] = {.lex_state = 157, .external_lex_state = 8}, + [2440] = {.lex_state = 157, .external_lex_state = 8}, + [2441] = {.lex_state = 153, .external_lex_state = 8}, + [2442] = {.lex_state = 153, .external_lex_state = 8}, + [2443] = {.lex_state = 157, .external_lex_state = 8}, + [2444] = {.lex_state = 157, .external_lex_state = 8}, + [2445] = {.lex_state = 49, .external_lex_state = 10}, + [2446] = {.lex_state = 153, .external_lex_state = 8}, + [2447] = {.lex_state = 153, .external_lex_state = 8}, + [2448] = {.lex_state = 153, .external_lex_state = 8}, + [2449] = {.lex_state = 153, .external_lex_state = 8}, + [2450] = {.lex_state = 62, .external_lex_state = 10}, + [2451] = {.lex_state = 62, .external_lex_state = 10}, + [2452] = {.lex_state = 153, .external_lex_state = 8}, + [2453] = {.lex_state = 153, .external_lex_state = 8}, + [2454] = {.lex_state = 62, .external_lex_state = 10}, + [2455] = {.lex_state = 62, .external_lex_state = 10}, + [2456] = {.lex_state = 49, .external_lex_state = 10}, + [2457] = {.lex_state = 153, .external_lex_state = 8}, + [2458] = {.lex_state = 49, .external_lex_state = 10}, + [2459] = {.lex_state = 153, .external_lex_state = 8}, + [2460] = {.lex_state = 49, .external_lex_state = 10}, + [2461] = {.lex_state = 153, .external_lex_state = 8}, + [2462] = {.lex_state = 153, .external_lex_state = 8}, + [2463] = {.lex_state = 153, .external_lex_state = 8}, + [2464] = {.lex_state = 157, .external_lex_state = 8}, + [2465] = {.lex_state = 157, .external_lex_state = 8}, + [2466] = {.lex_state = 153, .external_lex_state = 8}, + [2467] = {.lex_state = 157, .external_lex_state = 8}, + [2468] = {.lex_state = 157, .external_lex_state = 8}, + [2469] = {.lex_state = 157, .external_lex_state = 8}, + [2470] = {.lex_state = 157, .external_lex_state = 8}, + [2471] = {.lex_state = 153, .external_lex_state = 8}, + [2472] = {.lex_state = 153, .external_lex_state = 13}, + [2473] = {.lex_state = 49, .external_lex_state = 10}, + [2474] = {.lex_state = 49, .external_lex_state = 10}, + [2475] = {.lex_state = 49, .external_lex_state = 10}, + [2476] = {.lex_state = 153, .external_lex_state = 10}, + [2477] = {.lex_state = 153, .external_lex_state = 10}, + [2478] = {.lex_state = 153, .external_lex_state = 10}, + [2479] = {.lex_state = 49, .external_lex_state = 10}, + [2480] = {.lex_state = 49, .external_lex_state = 10}, + [2481] = {.lex_state = 153, .external_lex_state = 8}, + [2482] = {.lex_state = 153, .external_lex_state = 8}, + [2483] = {.lex_state = 153, .external_lex_state = 10}, + [2484] = {.lex_state = 153, .external_lex_state = 13}, + [2485] = {.lex_state = 153, .external_lex_state = 13}, + [2486] = {.lex_state = 153, .external_lex_state = 10}, + [2487] = {.lex_state = 49, .external_lex_state = 11}, + [2488] = {.lex_state = 49, .external_lex_state = 11}, + [2489] = {.lex_state = 49, .external_lex_state = 11}, + [2490] = {.lex_state = 157, .external_lex_state = 8}, + [2491] = {.lex_state = 157, .external_lex_state = 8}, + [2492] = {.lex_state = 157, .external_lex_state = 8}, + [2493] = {.lex_state = 157, .external_lex_state = 8}, + [2494] = {.lex_state = 49, .external_lex_state = 11}, + [2495] = {.lex_state = 153, .external_lex_state = 13}, + [2496] = {.lex_state = 49, .external_lex_state = 11}, + [2497] = {.lex_state = 49, .external_lex_state = 10}, + [2498] = {.lex_state = 153, .external_lex_state = 10}, + [2499] = {.lex_state = 49, .external_lex_state = 10}, + [2500] = {.lex_state = 49, .external_lex_state = 10}, + [2501] = {.lex_state = 153, .external_lex_state = 13}, + [2502] = {.lex_state = 49, .external_lex_state = 10}, + [2503] = {.lex_state = 49, .external_lex_state = 10}, + [2504] = {.lex_state = 49, .external_lex_state = 10}, + [2505] = {.lex_state = 49, .external_lex_state = 10}, + [2506] = {.lex_state = 49, .external_lex_state = 10}, + [2507] = {.lex_state = 49, .external_lex_state = 10}, + [2508] = {.lex_state = 49, .external_lex_state = 10}, + [2509] = {.lex_state = 49, .external_lex_state = 10}, + [2510] = {.lex_state = 49, .external_lex_state = 10}, + [2511] = {.lex_state = 49, .external_lex_state = 10}, + [2512] = {.lex_state = 49, .external_lex_state = 10}, + [2513] = {.lex_state = 49, .external_lex_state = 10}, + [2514] = {.lex_state = 49, .external_lex_state = 10}, + [2515] = {.lex_state = 49, .external_lex_state = 10}, + [2516] = {.lex_state = 49, .external_lex_state = 10}, + [2517] = {.lex_state = 49, .external_lex_state = 10}, + [2518] = {.lex_state = 153, .external_lex_state = 10}, + [2519] = {.lex_state = 49, .external_lex_state = 10}, + [2520] = {.lex_state = 49, .external_lex_state = 10}, + [2521] = {.lex_state = 153, .external_lex_state = 10}, + [2522] = {.lex_state = 155, .external_lex_state = 10}, + [2523] = {.lex_state = 153, .external_lex_state = 13}, + [2524] = {.lex_state = 153, .external_lex_state = 13}, + [2525] = {.lex_state = 155, .external_lex_state = 10}, + [2526] = {.lex_state = 157, .external_lex_state = 8}, + [2527] = {.lex_state = 157, .external_lex_state = 8}, + [2528] = {.lex_state = 157, .external_lex_state = 8}, + [2529] = {.lex_state = 157, .external_lex_state = 8}, + [2530] = {.lex_state = 153, .external_lex_state = 10}, + [2531] = {.lex_state = 157, .external_lex_state = 8}, + [2532] = {.lex_state = 153, .external_lex_state = 10}, + [2533] = {.lex_state = 157, .external_lex_state = 8}, + [2534] = {.lex_state = 155, .external_lex_state = 10}, + [2535] = {.lex_state = 155, .external_lex_state = 10}, + [2536] = {.lex_state = 153, .external_lex_state = 8}, + [2537] = {.lex_state = 153, .external_lex_state = 8}, + [2538] = {.lex_state = 153, .external_lex_state = 10}, + [2539] = {.lex_state = 153, .external_lex_state = 10}, + [2540] = {.lex_state = 153, .external_lex_state = 10}, + [2541] = {.lex_state = 153, .external_lex_state = 8}, + [2542] = {.lex_state = 153, .external_lex_state = 10}, + [2543] = {.lex_state = 153, .external_lex_state = 8}, + [2544] = {.lex_state = 153, .external_lex_state = 10}, + [2545] = {.lex_state = 157, .external_lex_state = 8}, + [2546] = {.lex_state = 157, .external_lex_state = 8}, + [2547] = {.lex_state = 157, .external_lex_state = 8}, + [2548] = {.lex_state = 153, .external_lex_state = 10}, + [2549] = {.lex_state = 153, .external_lex_state = 10}, + [2550] = {.lex_state = 153, .external_lex_state = 10}, + [2551] = {.lex_state = 153, .external_lex_state = 10}, + [2552] = {.lex_state = 153, .external_lex_state = 10}, + [2553] = {.lex_state = 153, .external_lex_state = 10}, + [2554] = {.lex_state = 49, .external_lex_state = 10}, + [2555] = {.lex_state = 153, .external_lex_state = 10}, + [2556] = {.lex_state = 153, .external_lex_state = 10}, + [2557] = {.lex_state = 157, .external_lex_state = 8}, + [2558] = {.lex_state = 153, .external_lex_state = 10}, + [2559] = {.lex_state = 153, .external_lex_state = 10}, + [2560] = {.lex_state = 49, .external_lex_state = 10}, + [2561] = {.lex_state = 153, .external_lex_state = 10}, + [2562] = {.lex_state = 153, .external_lex_state = 10}, + [2563] = {.lex_state = 153, .external_lex_state = 10}, + [2564] = {.lex_state = 153, .external_lex_state = 10}, + [2565] = {.lex_state = 153, .external_lex_state = 10}, + [2566] = {.lex_state = 153, .external_lex_state = 10}, + [2567] = {.lex_state = 153, .external_lex_state = 10}, + [2568] = {.lex_state = 49, .external_lex_state = 10}, + [2569] = {.lex_state = 49, .external_lex_state = 10}, + [2570] = {.lex_state = 49, .external_lex_state = 10}, + [2571] = {.lex_state = 49, .external_lex_state = 10}, + [2572] = {.lex_state = 157, .external_lex_state = 8}, + [2573] = {.lex_state = 153, .external_lex_state = 13}, + [2574] = {.lex_state = 153, .external_lex_state = 13}, + [2575] = {.lex_state = 153, .external_lex_state = 8}, + [2576] = {.lex_state = 49, .external_lex_state = 10}, + [2577] = {.lex_state = 49, .external_lex_state = 10}, + [2578] = {.lex_state = 157, .external_lex_state = 8}, + [2579] = {.lex_state = 49, .external_lex_state = 11}, + [2580] = {.lex_state = 49, .external_lex_state = 11}, + [2581] = {.lex_state = 49, .external_lex_state = 10}, + [2582] = {.lex_state = 49, .external_lex_state = 10}, + [2583] = {.lex_state = 157, .external_lex_state = 8}, + [2584] = {.lex_state = 49, .external_lex_state = 11}, + [2585] = {.lex_state = 49, .external_lex_state = 11}, + [2586] = {.lex_state = 153, .external_lex_state = 8}, + [2587] = {.lex_state = 153, .external_lex_state = 8}, + [2588] = {.lex_state = 155, .external_lex_state = 10}, + [2589] = {.lex_state = 155, .external_lex_state = 10}, + [2590] = {.lex_state = 155, .external_lex_state = 10}, + [2591] = {.lex_state = 155, .external_lex_state = 10}, + [2592] = {.lex_state = 155, .external_lex_state = 10}, + [2593] = {.lex_state = 155, .external_lex_state = 10}, + [2594] = {.lex_state = 155, .external_lex_state = 10}, + [2595] = {.lex_state = 155, .external_lex_state = 10}, + [2596] = {.lex_state = 155, .external_lex_state = 10}, + [2597] = {.lex_state = 155, .external_lex_state = 10}, + [2598] = {.lex_state = 155, .external_lex_state = 10}, + [2599] = {.lex_state = 155, .external_lex_state = 10}, + [2600] = {.lex_state = 155, .external_lex_state = 10}, + [2601] = {.lex_state = 155, .external_lex_state = 10}, + [2602] = {.lex_state = 155, .external_lex_state = 10}, + [2603] = {.lex_state = 155, .external_lex_state = 10}, + [2604] = {.lex_state = 155, .external_lex_state = 10}, + [2605] = {.lex_state = 155, .external_lex_state = 10}, + [2606] = {.lex_state = 155, .external_lex_state = 10}, + [2607] = {.lex_state = 155, .external_lex_state = 10}, + [2608] = {.lex_state = 155, .external_lex_state = 10}, + [2609] = {.lex_state = 155, .external_lex_state = 10}, + [2610] = {.lex_state = 155, .external_lex_state = 10}, + [2611] = {.lex_state = 155, .external_lex_state = 10}, + [2612] = {.lex_state = 155, .external_lex_state = 10}, + [2613] = {.lex_state = 155, .external_lex_state = 10}, + [2614] = {.lex_state = 155, .external_lex_state = 10}, + [2615] = {.lex_state = 155, .external_lex_state = 10}, + [2616] = {.lex_state = 155, .external_lex_state = 10}, + [2617] = {.lex_state = 155, .external_lex_state = 10}, + [2618] = {.lex_state = 155, .external_lex_state = 10}, + [2619] = {.lex_state = 155, .external_lex_state = 10}, + [2620] = {.lex_state = 155, .external_lex_state = 10}, + [2621] = {.lex_state = 157, .external_lex_state = 8}, + [2622] = {.lex_state = 157, .external_lex_state = 8}, + [2623] = {.lex_state = 153, .external_lex_state = 8}, + [2624] = {.lex_state = 153, .external_lex_state = 8}, + [2625] = {.lex_state = 157, .external_lex_state = 8}, + [2626] = {.lex_state = 157, .external_lex_state = 8}, + [2627] = {.lex_state = 157, .external_lex_state = 8}, + [2628] = {.lex_state = 157, .external_lex_state = 8}, + [2629] = {.lex_state = 157, .external_lex_state = 8}, + [2630] = {.lex_state = 157, .external_lex_state = 8}, + [2631] = {.lex_state = 157, .external_lex_state = 8}, + [2632] = {.lex_state = 157, .external_lex_state = 8}, + [2633] = {.lex_state = 157, .external_lex_state = 8}, + [2634] = {.lex_state = 157, .external_lex_state = 8}, + [2635] = {.lex_state = 67, .external_lex_state = 10}, + [2636] = {.lex_state = 67, .external_lex_state = 10}, + [2637] = {.lex_state = 67, .external_lex_state = 10}, + [2638] = {.lex_state = 67, .external_lex_state = 10}, + [2639] = {.lex_state = 67, .external_lex_state = 10}, + [2640] = {.lex_state = 67, .external_lex_state = 10}, + [2641] = {.lex_state = 67, .external_lex_state = 10}, + [2642] = {.lex_state = 67, .external_lex_state = 10}, + [2643] = {.lex_state = 67, .external_lex_state = 10}, + [2644] = {.lex_state = 67, .external_lex_state = 10}, + [2645] = {.lex_state = 67, .external_lex_state = 10}, + [2646] = {.lex_state = 67, .external_lex_state = 10}, + [2647] = {.lex_state = 67, .external_lex_state = 10}, + [2648] = {.lex_state = 67, .external_lex_state = 10}, + [2649] = {.lex_state = 67, .external_lex_state = 10}, + [2650] = {.lex_state = 67, .external_lex_state = 10}, + [2651] = {.lex_state = 67, .external_lex_state = 10}, + [2652] = {.lex_state = 67, .external_lex_state = 10}, + [2653] = {.lex_state = 67, .external_lex_state = 10}, + [2654] = {.lex_state = 67, .external_lex_state = 10}, + [2655] = {.lex_state = 67, .external_lex_state = 10}, + [2656] = {.lex_state = 67, .external_lex_state = 10}, + [2657] = {.lex_state = 67, .external_lex_state = 10}, + [2658] = {.lex_state = 67, .external_lex_state = 10}, + [2659] = {.lex_state = 67, .external_lex_state = 10}, + [2660] = {.lex_state = 67, .external_lex_state = 10}, + [2661] = {.lex_state = 67, .external_lex_state = 10}, + [2662] = {.lex_state = 67, .external_lex_state = 10}, + [2663] = {.lex_state = 67, .external_lex_state = 10}, + [2664] = {.lex_state = 67, .external_lex_state = 10}, + [2665] = {.lex_state = 67, .external_lex_state = 10}, + [2666] = {.lex_state = 67, .external_lex_state = 10}, + [2667] = {.lex_state = 67, .external_lex_state = 10}, + [2668] = {.lex_state = 157, .external_lex_state = 8}, + [2669] = {.lex_state = 49, .external_lex_state = 10}, + [2670] = {.lex_state = 153, .external_lex_state = 8}, + [2671] = {.lex_state = 49, .external_lex_state = 10}, + [2672] = {.lex_state = 49, .external_lex_state = 10}, + [2673] = {.lex_state = 49, .external_lex_state = 10}, + [2674] = {.lex_state = 153, .external_lex_state = 8}, + [2675] = {.lex_state = 64, .external_lex_state = 11}, + [2676] = {.lex_state = 64, .external_lex_state = 11}, + [2677] = {.lex_state = 153, .external_lex_state = 8}, + [2678] = {.lex_state = 153, .external_lex_state = 10}, + [2679] = {.lex_state = 64, .external_lex_state = 11}, + [2680] = {.lex_state = 64, .external_lex_state = 11}, + [2681] = {.lex_state = 153, .external_lex_state = 10}, + [2682] = {.lex_state = 153, .external_lex_state = 8}, + [2683] = {.lex_state = 49, .external_lex_state = 10}, + [2684] = {.lex_state = 49, .external_lex_state = 10}, + [2685] = {.lex_state = 69, .external_lex_state = 8}, + [2686] = {.lex_state = 49, .external_lex_state = 10}, + [2687] = {.lex_state = 69, .external_lex_state = 8}, + [2688] = {.lex_state = 153, .external_lex_state = 10}, + [2689] = {.lex_state = 49, .external_lex_state = 8}, + [2690] = {.lex_state = 49, .external_lex_state = 10}, + [2691] = {.lex_state = 49, .external_lex_state = 10}, + [2692] = {.lex_state = 49, .external_lex_state = 10}, + [2693] = {.lex_state = 49, .external_lex_state = 10}, + [2694] = {.lex_state = 49, .external_lex_state = 10}, + [2695] = {.lex_state = 69, .external_lex_state = 8}, + [2696] = {.lex_state = 49, .external_lex_state = 10}, + [2697] = {.lex_state = 49, .external_lex_state = 10}, + [2698] = {.lex_state = 69, .external_lex_state = 8}, + [2699] = {.lex_state = 49, .external_lex_state = 10}, + [2700] = {.lex_state = 49, .external_lex_state = 10}, + [2701] = {.lex_state = 49, .external_lex_state = 10}, + [2702] = {.lex_state = 49, .external_lex_state = 10}, + [2703] = {.lex_state = 49, .external_lex_state = 10}, + [2704] = {.lex_state = 49, .external_lex_state = 10}, + [2705] = {.lex_state = 49, .external_lex_state = 8}, + [2706] = {.lex_state = 49, .external_lex_state = 10}, + [2707] = {.lex_state = 49, .external_lex_state = 10}, + [2708] = {.lex_state = 49, .external_lex_state = 10}, + [2709] = {.lex_state = 49, .external_lex_state = 10}, + [2710] = {.lex_state = 49, .external_lex_state = 10}, + [2711] = {.lex_state = 49, .external_lex_state = 8}, + [2712] = {.lex_state = 153, .external_lex_state = 8}, + [2713] = {.lex_state = 153, .external_lex_state = 10}, + [2714] = {.lex_state = 153, .external_lex_state = 10}, + [2715] = {.lex_state = 153, .external_lex_state = 10}, + [2716] = {.lex_state = 49, .external_lex_state = 10}, + [2717] = {.lex_state = 49, .external_lex_state = 10}, + [2718] = {.lex_state = 49, .external_lex_state = 10}, + [2719] = {.lex_state = 49, .external_lex_state = 10}, + [2720] = {.lex_state = 49, .external_lex_state = 10}, + [2721] = {.lex_state = 49, .external_lex_state = 10}, + [2722] = {.lex_state = 49, .external_lex_state = 10}, + [2723] = {.lex_state = 49, .external_lex_state = 10}, + [2724] = {.lex_state = 49, .external_lex_state = 10}, + [2725] = {.lex_state = 49, .external_lex_state = 10}, + [2726] = {.lex_state = 153, .external_lex_state = 10}, + [2727] = {.lex_state = 153, .external_lex_state = 10}, + [2728] = {.lex_state = 153, .external_lex_state = 10}, + [2729] = {.lex_state = 49, .external_lex_state = 10}, + [2730] = {.lex_state = 49, .external_lex_state = 10}, + [2731] = {.lex_state = 49, .external_lex_state = 10}, + [2732] = {.lex_state = 49, .external_lex_state = 10}, + [2733] = {.lex_state = 49, .external_lex_state = 10}, + [2734] = {.lex_state = 49, .external_lex_state = 10}, + [2735] = {.lex_state = 49, .external_lex_state = 10}, + [2736] = {.lex_state = 64, .external_lex_state = 10}, + [2737] = {.lex_state = 153, .external_lex_state = 10}, + [2738] = {.lex_state = 49, .external_lex_state = 8}, + [2739] = {.lex_state = 64, .external_lex_state = 10}, + [2740] = {.lex_state = 49, .external_lex_state = 10}, + [2741] = {.lex_state = 49, .external_lex_state = 10}, + [2742] = {.lex_state = 49, .external_lex_state = 10}, + [2743] = {.lex_state = 49, .external_lex_state = 10}, + [2744] = {.lex_state = 49, .external_lex_state = 10}, + [2745] = {.lex_state = 49, .external_lex_state = 10}, + [2746] = {.lex_state = 49, .external_lex_state = 10}, + [2747] = {.lex_state = 49, .external_lex_state = 10}, + [2748] = {.lex_state = 49, .external_lex_state = 10}, + [2749] = {.lex_state = 49, .external_lex_state = 10}, + [2750] = {.lex_state = 71, .external_lex_state = 10}, + [2751] = {.lex_state = 49, .external_lex_state = 10}, + [2752] = {.lex_state = 49, .external_lex_state = 10}, + [2753] = {.lex_state = 49, .external_lex_state = 10}, + [2754] = {.lex_state = 153, .external_lex_state = 8}, + [2755] = {.lex_state = 153, .external_lex_state = 8}, + [2756] = {.lex_state = 49, .external_lex_state = 10}, + [2757] = {.lex_state = 49, .external_lex_state = 10}, + [2758] = {.lex_state = 153, .external_lex_state = 8}, + [2759] = {.lex_state = 153, .external_lex_state = 8}, + [2760] = {.lex_state = 153, .external_lex_state = 8}, + [2761] = {.lex_state = 64, .external_lex_state = 11}, + [2762] = {.lex_state = 64, .external_lex_state = 11}, + [2763] = {.lex_state = 64, .external_lex_state = 11}, + [2764] = {.lex_state = 49, .external_lex_state = 10}, + [2765] = {.lex_state = 64, .external_lex_state = 11}, + [2766] = {.lex_state = 64, .external_lex_state = 11}, + [2767] = {.lex_state = 153, .external_lex_state = 8}, + [2768] = {.lex_state = 153, .external_lex_state = 8}, + [2769] = {.lex_state = 153, .external_lex_state = 8}, + [2770] = {.lex_state = 153, .external_lex_state = 8}, + [2771] = {.lex_state = 153, .external_lex_state = 10}, + [2772] = {.lex_state = 153, .external_lex_state = 8}, + [2773] = {.lex_state = 153, .external_lex_state = 8}, + [2774] = {.lex_state = 49, .external_lex_state = 10}, + [2775] = {.lex_state = 153, .external_lex_state = 10}, + [2776] = {.lex_state = 49, .external_lex_state = 10}, + [2777] = {.lex_state = 49, .external_lex_state = 10}, + [2778] = {.lex_state = 71, .external_lex_state = 10}, + [2779] = {.lex_state = 71, .external_lex_state = 10}, + [2780] = {.lex_state = 71, .external_lex_state = 10}, + [2781] = {.lex_state = 71, .external_lex_state = 10}, + [2782] = {.lex_state = 71, .external_lex_state = 10}, + [2783] = {.lex_state = 71, .external_lex_state = 10}, + [2784] = {.lex_state = 71, .external_lex_state = 10}, + [2785] = {.lex_state = 71, .external_lex_state = 10}, + [2786] = {.lex_state = 71, .external_lex_state = 10}, + [2787] = {.lex_state = 71, .external_lex_state = 10}, + [2788] = {.lex_state = 71, .external_lex_state = 10}, + [2789] = {.lex_state = 71, .external_lex_state = 10}, + [2790] = {.lex_state = 71, .external_lex_state = 10}, + [2791] = {.lex_state = 71, .external_lex_state = 10}, + [2792] = {.lex_state = 71, .external_lex_state = 10}, + [2793] = {.lex_state = 71, .external_lex_state = 10}, + [2794] = {.lex_state = 49, .external_lex_state = 10}, + [2795] = {.lex_state = 153, .external_lex_state = 10}, + [2796] = {.lex_state = 49, .external_lex_state = 10}, + [2797] = {.lex_state = 153, .external_lex_state = 10}, + [2798] = {.lex_state = 49, .external_lex_state = 10}, + [2799] = {.lex_state = 49, .external_lex_state = 10}, + [2800] = {.lex_state = 153, .external_lex_state = 10}, + [2801] = {.lex_state = 71, .external_lex_state = 10}, + [2802] = {.lex_state = 71, .external_lex_state = 10}, + [2803] = {.lex_state = 71, .external_lex_state = 10}, + [2804] = {.lex_state = 153, .external_lex_state = 10}, + [2805] = {.lex_state = 153, .external_lex_state = 8}, + [2806] = {.lex_state = 71, .external_lex_state = 10}, + [2807] = {.lex_state = 153, .external_lex_state = 10}, + [2808] = {.lex_state = 71, .external_lex_state = 10}, + [2809] = {.lex_state = 153, .external_lex_state = 10}, + [2810] = {.lex_state = 153, .external_lex_state = 10}, + [2811] = {.lex_state = 71, .external_lex_state = 10}, + [2812] = {.lex_state = 153, .external_lex_state = 13}, + [2813] = {.lex_state = 153, .external_lex_state = 10}, + [2814] = {.lex_state = 153, .external_lex_state = 10}, + [2815] = {.lex_state = 71, .external_lex_state = 10}, + [2816] = {.lex_state = 71, .external_lex_state = 10}, + [2817] = {.lex_state = 49, .external_lex_state = 13}, + [2818] = {.lex_state = 71, .external_lex_state = 10}, + [2819] = {.lex_state = 71, .external_lex_state = 10}, + [2820] = {.lex_state = 49, .external_lex_state = 10}, + [2821] = {.lex_state = 153, .external_lex_state = 8}, + [2822] = {.lex_state = 69, .external_lex_state = 8}, + [2823] = {.lex_state = 153, .external_lex_state = 10}, + [2824] = {.lex_state = 71, .external_lex_state = 10}, + [2825] = {.lex_state = 153, .external_lex_state = 10}, + [2826] = {.lex_state = 71, .external_lex_state = 10}, + [2827] = {.lex_state = 69, .external_lex_state = 8}, + [2828] = {.lex_state = 69, .external_lex_state = 8}, + [2829] = {.lex_state = 153, .external_lex_state = 13}, + [2830] = {.lex_state = 71, .external_lex_state = 10}, + [2831] = {.lex_state = 69, .external_lex_state = 8}, + [2832] = {.lex_state = 69, .external_lex_state = 8}, + [2833] = {.lex_state = 49, .external_lex_state = 13}, + [2834] = {.lex_state = 71, .external_lex_state = 10}, + [2835] = {.lex_state = 49, .external_lex_state = 10}, + [2836] = {.lex_state = 49, .external_lex_state = 10}, + [2837] = {.lex_state = 49, .external_lex_state = 10}, + [2838] = {.lex_state = 71, .external_lex_state = 10}, + [2839] = {.lex_state = 153, .external_lex_state = 8}, + [2840] = {.lex_state = 49, .external_lex_state = 10}, + [2841] = {.lex_state = 153, .external_lex_state = 10}, + [2842] = {.lex_state = 153, .external_lex_state = 8}, + [2843] = {.lex_state = 49, .external_lex_state = 10}, + [2844] = {.lex_state = 49, .external_lex_state = 10}, + [2845] = {.lex_state = 153, .external_lex_state = 10}, + [2846] = {.lex_state = 153, .external_lex_state = 10}, + [2847] = {.lex_state = 153, .external_lex_state = 10}, + [2848] = {.lex_state = 153, .external_lex_state = 10}, + [2849] = {.lex_state = 153, .external_lex_state = 10}, + [2850] = {.lex_state = 153, .external_lex_state = 10}, + [2851] = {.lex_state = 153, .external_lex_state = 10}, + [2852] = {.lex_state = 153, .external_lex_state = 10}, + [2853] = {.lex_state = 71, .external_lex_state = 10}, + [2854] = {.lex_state = 71, .external_lex_state = 10}, + [2855] = {.lex_state = 153, .external_lex_state = 10}, + [2856] = {.lex_state = 153, .external_lex_state = 10}, + [2857] = {.lex_state = 71, .external_lex_state = 10}, + [2858] = {.lex_state = 71, .external_lex_state = 10}, + [2859] = {.lex_state = 153, .external_lex_state = 10}, + [2860] = {.lex_state = 153, .external_lex_state = 8}, + [2861] = {.lex_state = 153, .external_lex_state = 10}, + [2862] = {.lex_state = 153, .external_lex_state = 10}, + [2863] = {.lex_state = 153, .external_lex_state = 10}, + [2864] = {.lex_state = 153, .external_lex_state = 8}, + [2865] = {.lex_state = 153, .external_lex_state = 10}, + [2866] = {.lex_state = 153, .external_lex_state = 10}, + [2867] = {.lex_state = 49, .external_lex_state = 10}, + [2868] = {.lex_state = 153, .external_lex_state = 10}, + [2869] = {.lex_state = 153, .external_lex_state = 8}, + [2870] = {.lex_state = 71, .external_lex_state = 10}, + [2871] = {.lex_state = 153, .external_lex_state = 8}, + [2872] = {.lex_state = 153, .external_lex_state = 8}, + [2873] = {.lex_state = 153, .external_lex_state = 8}, + [2874] = {.lex_state = 153, .external_lex_state = 8}, + [2875] = {.lex_state = 69, .external_lex_state = 8}, + [2876] = {.lex_state = 49, .external_lex_state = 10}, + [2877] = {.lex_state = 153, .external_lex_state = 8}, + [2878] = {.lex_state = 49, .external_lex_state = 10}, + [2879] = {.lex_state = 153, .external_lex_state = 8}, + [2880] = {.lex_state = 69, .external_lex_state = 8}, + [2881] = {.lex_state = 69, .external_lex_state = 8}, + [2882] = {.lex_state = 69, .external_lex_state = 8}, + [2883] = {.lex_state = 64, .external_lex_state = 10}, + [2884] = {.lex_state = 64, .external_lex_state = 10}, + [2885] = {.lex_state = 69, .external_lex_state = 8}, + [2886] = {.lex_state = 64, .external_lex_state = 10}, + [2887] = {.lex_state = 64, .external_lex_state = 10}, + [2888] = {.lex_state = 69, .external_lex_state = 8}, + [2889] = {.lex_state = 69, .external_lex_state = 8}, + [2890] = {.lex_state = 153, .external_lex_state = 10}, + [2891] = {.lex_state = 49, .external_lex_state = 10}, + [2892] = {.lex_state = 49, .external_lex_state = 10}, + [2893] = {.lex_state = 69, .external_lex_state = 8}, + [2894] = {.lex_state = 153, .external_lex_state = 10}, + [2895] = {.lex_state = 49, .external_lex_state = 10}, + [2896] = {.lex_state = 49, .external_lex_state = 10}, + [2897] = {.lex_state = 153, .external_lex_state = 10}, + [2898] = {.lex_state = 153, .external_lex_state = 10}, + [2899] = {.lex_state = 153, .external_lex_state = 10}, + [2900] = {.lex_state = 153, .external_lex_state = 10}, + [2901] = {.lex_state = 49, .external_lex_state = 10}, + [2902] = {.lex_state = 153, .external_lex_state = 10}, + [2903] = {.lex_state = 153, .external_lex_state = 10}, + [2904] = {.lex_state = 153, .external_lex_state = 10}, + [2905] = {.lex_state = 153, .external_lex_state = 10}, + [2906] = {.lex_state = 153, .external_lex_state = 10}, + [2907] = {.lex_state = 153, .external_lex_state = 10}, + [2908] = {.lex_state = 153, .external_lex_state = 10}, + [2909] = {.lex_state = 153, .external_lex_state = 10}, + [2910] = {.lex_state = 153, .external_lex_state = 10}, + [2911] = {.lex_state = 153, .external_lex_state = 10}, + [2912] = {.lex_state = 153, .external_lex_state = 10}, + [2913] = {.lex_state = 64, .external_lex_state = 10}, + [2914] = {.lex_state = 64, .external_lex_state = 10}, + [2915] = {.lex_state = 49, .external_lex_state = 10}, + [2916] = {.lex_state = 69, .external_lex_state = 8}, + [2917] = {.lex_state = 69, .external_lex_state = 8}, + [2918] = {.lex_state = 69, .external_lex_state = 8}, + [2919] = {.lex_state = 49, .external_lex_state = 10}, + [2920] = {.lex_state = 64, .external_lex_state = 10}, + [2921] = {.lex_state = 69, .external_lex_state = 8}, + [2922] = {.lex_state = 64, .external_lex_state = 10}, + [2923] = {.lex_state = 64, .external_lex_state = 10}, + [2924] = {.lex_state = 153, .external_lex_state = 10}, + [2925] = {.lex_state = 153, .external_lex_state = 10}, + [2926] = {.lex_state = 153, .external_lex_state = 10}, + [2927] = {.lex_state = 153, .external_lex_state = 10}, + [2928] = {.lex_state = 153, .external_lex_state = 10}, + [2929] = {.lex_state = 153, .external_lex_state = 10}, + [2930] = {.lex_state = 64, .external_lex_state = 10}, + [2931] = {.lex_state = 69, .external_lex_state = 8}, + [2932] = {.lex_state = 49, .external_lex_state = 10}, + [2933] = {.lex_state = 64, .external_lex_state = 10}, + [2934] = {.lex_state = 64, .external_lex_state = 10}, + [2935] = {.lex_state = 69, .external_lex_state = 8}, + [2936] = {.lex_state = 69, .external_lex_state = 8}, + [2937] = {.lex_state = 69, .external_lex_state = 8}, + [2938] = {.lex_state = 64, .external_lex_state = 10}, + [2939] = {.lex_state = 153, .external_lex_state = 10}, + [2940] = {.lex_state = 153, .external_lex_state = 10}, + [2941] = {.lex_state = 153, .external_lex_state = 10}, + [2942] = {.lex_state = 153, .external_lex_state = 10}, + [2943] = {.lex_state = 69, .external_lex_state = 8}, + [2944] = {.lex_state = 69, .external_lex_state = 8}, + [2945] = {.lex_state = 69, .external_lex_state = 8}, + [2946] = {.lex_state = 69, .external_lex_state = 8}, + [2947] = {.lex_state = 71, .external_lex_state = 10}, + [2948] = {.lex_state = 71, .external_lex_state = 10}, + [2949] = {.lex_state = 71, .external_lex_state = 10}, + [2950] = {.lex_state = 71, .external_lex_state = 10}, + [2951] = {.lex_state = 153, .external_lex_state = 10}, + [2952] = {.lex_state = 153, .external_lex_state = 10}, + [2953] = {.lex_state = 153, .external_lex_state = 10}, + [2954] = {.lex_state = 49, .external_lex_state = 10}, + [2955] = {.lex_state = 69, .external_lex_state = 8}, + [2956] = {.lex_state = 69, .external_lex_state = 8}, + [2957] = {.lex_state = 49, .external_lex_state = 10}, + [2958] = {.lex_state = 69, .external_lex_state = 8}, + [2959] = {.lex_state = 69, .external_lex_state = 8}, + [2960] = {.lex_state = 69, .external_lex_state = 8}, + [2961] = {.lex_state = 69, .external_lex_state = 8}, + [2962] = {.lex_state = 153, .external_lex_state = 8}, + [2963] = {.lex_state = 153, .external_lex_state = 8}, + [2964] = {.lex_state = 153, .external_lex_state = 10}, + [2965] = {.lex_state = 153, .external_lex_state = 8}, + [2966] = {.lex_state = 153, .external_lex_state = 10}, + [2967] = {.lex_state = 153, .external_lex_state = 10}, + [2968] = {.lex_state = 153, .external_lex_state = 8}, + [2969] = {.lex_state = 153, .external_lex_state = 10}, + [2970] = {.lex_state = 153, .external_lex_state = 10}, + [2971] = {.lex_state = 69, .external_lex_state = 8}, + [2972] = {.lex_state = 153, .external_lex_state = 8}, + [2973] = {.lex_state = 69, .external_lex_state = 8}, + [2974] = {.lex_state = 153, .external_lex_state = 8}, + [2975] = {.lex_state = 153, .external_lex_state = 8}, + [2976] = {.lex_state = 153, .external_lex_state = 10}, + [2977] = {.lex_state = 153, .external_lex_state = 8}, + [2978] = {.lex_state = 153, .external_lex_state = 10}, + [2979] = {.lex_state = 153, .external_lex_state = 10}, + [2980] = {.lex_state = 153, .external_lex_state = 10}, + [2981] = {.lex_state = 153, .external_lex_state = 8}, + [2982] = {.lex_state = 153, .external_lex_state = 8}, + [2983] = {.lex_state = 153, .external_lex_state = 8}, + [2984] = {.lex_state = 153, .external_lex_state = 8}, + [2985] = {.lex_state = 153, .external_lex_state = 10}, + [2986] = {.lex_state = 153, .external_lex_state = 8}, + [2987] = {.lex_state = 153, .external_lex_state = 8}, + [2988] = {.lex_state = 69, .external_lex_state = 8}, + [2989] = {.lex_state = 69, .external_lex_state = 8}, + [2990] = {.lex_state = 69, .external_lex_state = 8}, + [2991] = {.lex_state = 153, .external_lex_state = 8}, + [2992] = {.lex_state = 153, .external_lex_state = 8}, + [2993] = {.lex_state = 153, .external_lex_state = 10}, + [2994] = {.lex_state = 153, .external_lex_state = 8}, + [2995] = {.lex_state = 153, .external_lex_state = 8}, + [2996] = {.lex_state = 153, .external_lex_state = 10}, + [2997] = {.lex_state = 153, .external_lex_state = 10}, + [2998] = {.lex_state = 153, .external_lex_state = 8}, + [2999] = {.lex_state = 153, .external_lex_state = 10}, + [3000] = {.lex_state = 153, .external_lex_state = 10}, + [3001] = {.lex_state = 153, .external_lex_state = 10}, + [3002] = {.lex_state = 153, .external_lex_state = 10}, + [3003] = {.lex_state = 153, .external_lex_state = 8}, + [3004] = {.lex_state = 153, .external_lex_state = 8}, + [3005] = {.lex_state = 153, .external_lex_state = 10}, + [3006] = {.lex_state = 153, .external_lex_state = 10}, + [3007] = {.lex_state = 153, .external_lex_state = 10}, + [3008] = {.lex_state = 64, .external_lex_state = 10}, + [3009] = {.lex_state = 153, .external_lex_state = 10}, + [3010] = {.lex_state = 64, .external_lex_state = 10}, + [3011] = {.lex_state = 153, .external_lex_state = 10}, + [3012] = {.lex_state = 153, .external_lex_state = 10}, + [3013] = {.lex_state = 153, .external_lex_state = 10}, + [3014] = {.lex_state = 153, .external_lex_state = 8}, + [3015] = {.lex_state = 64, .external_lex_state = 10}, + [3016] = {.lex_state = 153, .external_lex_state = 10}, + [3017] = {.lex_state = 64, .external_lex_state = 10}, + [3018] = {.lex_state = 153, .external_lex_state = 10}, + [3019] = {.lex_state = 153, .external_lex_state = 8}, + [3020] = {.lex_state = 153, .external_lex_state = 10}, + [3021] = {.lex_state = 153, .external_lex_state = 10}, + [3022] = {.lex_state = 153, .external_lex_state = 10}, + [3023] = {.lex_state = 153, .external_lex_state = 10}, + [3024] = {.lex_state = 153, .external_lex_state = 10}, + [3025] = {.lex_state = 153, .external_lex_state = 10}, + [3026] = {.lex_state = 153, .external_lex_state = 10}, + [3027] = {.lex_state = 153, .external_lex_state = 10}, + [3028] = {.lex_state = 153, .external_lex_state = 10}, + [3029] = {.lex_state = 153, .external_lex_state = 10}, + [3030] = {.lex_state = 153, .external_lex_state = 10}, + [3031] = {.lex_state = 153, .external_lex_state = 10}, + [3032] = {.lex_state = 153, .external_lex_state = 10}, + [3033] = {.lex_state = 153, .external_lex_state = 10}, + [3034] = {.lex_state = 153, .external_lex_state = 10}, + [3035] = {.lex_state = 153, .external_lex_state = 10}, + [3036] = {.lex_state = 153, .external_lex_state = 10}, + [3037] = {.lex_state = 153, .external_lex_state = 8}, + [3038] = {.lex_state = 64, .external_lex_state = 10}, + [3039] = {.lex_state = 153, .external_lex_state = 10}, + [3040] = {.lex_state = 153, .external_lex_state = 8}, + [3041] = {.lex_state = 153, .external_lex_state = 10}, + [3042] = {.lex_state = 153, .external_lex_state = 10}, + [3043] = {.lex_state = 153, .external_lex_state = 10}, + [3044] = {.lex_state = 153, .external_lex_state = 10}, + [3045] = {.lex_state = 153, .external_lex_state = 10}, + [3046] = {.lex_state = 153, .external_lex_state = 10}, + [3047] = {.lex_state = 153, .external_lex_state = 8}, + [3048] = {.lex_state = 153, .external_lex_state = 10}, + [3049] = {.lex_state = 153, .external_lex_state = 8}, + [3050] = {.lex_state = 153, .external_lex_state = 10}, + [3051] = {.lex_state = 153, .external_lex_state = 10}, + [3052] = {.lex_state = 64, .external_lex_state = 10}, + [3053] = {.lex_state = 153, .external_lex_state = 8}, + [3054] = {.lex_state = 153, .external_lex_state = 10}, + [3055] = {.lex_state = 153, .external_lex_state = 10}, + [3056] = {.lex_state = 153, .external_lex_state = 8}, + [3057] = {.lex_state = 49, .external_lex_state = 10}, + [3058] = {.lex_state = 153, .external_lex_state = 8}, + [3059] = {.lex_state = 153, .external_lex_state = 10}, + [3060] = {.lex_state = 153, .external_lex_state = 10}, + [3061] = {.lex_state = 64, .external_lex_state = 10}, + [3062] = {.lex_state = 153, .external_lex_state = 10}, + [3063] = {.lex_state = 153, .external_lex_state = 10}, + [3064] = {.lex_state = 64, .external_lex_state = 10}, + [3065] = {.lex_state = 64, .external_lex_state = 10}, + [3066] = {.lex_state = 153, .external_lex_state = 8}, + [3067] = {.lex_state = 153, .external_lex_state = 8}, + [3068] = {.lex_state = 153, .external_lex_state = 8}, + [3069] = {.lex_state = 153, .external_lex_state = 8}, + [3070] = {.lex_state = 153, .external_lex_state = 10}, + [3071] = {.lex_state = 153, .external_lex_state = 8}, + [3072] = {.lex_state = 69, .external_lex_state = 8}, + [3073] = {.lex_state = 153, .external_lex_state = 8}, + [3074] = {.lex_state = 153, .external_lex_state = 10}, + [3075] = {.lex_state = 153, .external_lex_state = 8}, + [3076] = {.lex_state = 153, .external_lex_state = 8}, + [3077] = {.lex_state = 64, .external_lex_state = 10}, + [3078] = {.lex_state = 153, .external_lex_state = 8}, + [3079] = {.lex_state = 153, .external_lex_state = 8}, + [3080] = {.lex_state = 153, .external_lex_state = 8}, + [3081] = {.lex_state = 64, .external_lex_state = 10}, + [3082] = {.lex_state = 153, .external_lex_state = 8}, + [3083] = {.lex_state = 69, .external_lex_state = 8}, + [3084] = {.lex_state = 64, .external_lex_state = 10}, + [3085] = {.lex_state = 153, .external_lex_state = 8}, + [3086] = {.lex_state = 153, .external_lex_state = 8}, + [3087] = {.lex_state = 153, .external_lex_state = 8}, + [3088] = {.lex_state = 153, .external_lex_state = 8}, + [3089] = {.lex_state = 153, .external_lex_state = 8}, + [3090] = {.lex_state = 64, .external_lex_state = 10}, + [3091] = {.lex_state = 64, .external_lex_state = 10}, + [3092] = {.lex_state = 64, .external_lex_state = 10}, + [3093] = {.lex_state = 153, .external_lex_state = 8}, + [3094] = {.lex_state = 153, .external_lex_state = 8}, + [3095] = {.lex_state = 49, .external_lex_state = 8}, + [3096] = {.lex_state = 157, .external_lex_state = 8}, + [3097] = {.lex_state = 157, .external_lex_state = 8}, + [3098] = {.lex_state = 64, .external_lex_state = 10}, + [3099] = {.lex_state = 157, .external_lex_state = 8}, + [3100] = {.lex_state = 153, .external_lex_state = 13}, + [3101] = {.lex_state = 64, .external_lex_state = 10}, + [3102] = {.lex_state = 64, .external_lex_state = 10}, + [3103] = {.lex_state = 157, .external_lex_state = 8}, + [3104] = {.lex_state = 64, .external_lex_state = 10}, + [3105] = {.lex_state = 157, .external_lex_state = 8}, + [3106] = {.lex_state = 153, .external_lex_state = 8}, + [3107] = {.lex_state = 157, .external_lex_state = 8}, + [3108] = {.lex_state = 64, .external_lex_state = 10}, + [3109] = {.lex_state = 157, .external_lex_state = 8}, + [3110] = {.lex_state = 69, .external_lex_state = 8}, + [3111] = {.lex_state = 157, .external_lex_state = 8}, + [3112] = {.lex_state = 157, .external_lex_state = 8}, + [3113] = {.lex_state = 157, .external_lex_state = 8}, + [3114] = {.lex_state = 153, .external_lex_state = 8}, + [3115] = {.lex_state = 153, .external_lex_state = 10}, + [3116] = {.lex_state = 64, .external_lex_state = 10}, + [3117] = {.lex_state = 64, .external_lex_state = 10}, + [3118] = {.lex_state = 64, .external_lex_state = 10}, + [3119] = {.lex_state = 64, .external_lex_state = 10}, + [3120] = {.lex_state = 64, .external_lex_state = 10}, + [3121] = {.lex_state = 64, .external_lex_state = 10}, + [3122] = {.lex_state = 157, .external_lex_state = 8}, + [3123] = {.lex_state = 49, .external_lex_state = 8}, + [3124] = {.lex_state = 157, .external_lex_state = 8}, + [3125] = {.lex_state = 49, .external_lex_state = 13}, + [3126] = {.lex_state = 157, .external_lex_state = 8}, + [3127] = {.lex_state = 49, .external_lex_state = 13}, + [3128] = {.lex_state = 49, .external_lex_state = 8}, + [3129] = {.lex_state = 153, .external_lex_state = 8}, + [3130] = {.lex_state = 49, .external_lex_state = 13}, + [3131] = {.lex_state = 49, .external_lex_state = 13}, + [3132] = {.lex_state = 157, .external_lex_state = 8}, + [3133] = {.lex_state = 153, .external_lex_state = 8}, + [3134] = {.lex_state = 157, .external_lex_state = 8}, + [3135] = {.lex_state = 157, .external_lex_state = 8}, + [3136] = {.lex_state = 157, .external_lex_state = 8}, + [3137] = {.lex_state = 157, .external_lex_state = 8}, + [3138] = {.lex_state = 157, .external_lex_state = 8}, + [3139] = {.lex_state = 153, .external_lex_state = 8}, + [3140] = {.lex_state = 49, .external_lex_state = 13}, + [3141] = {.lex_state = 64, .external_lex_state = 10}, + [3142] = {.lex_state = 64, .external_lex_state = 10}, + [3143] = {.lex_state = 64, .external_lex_state = 10}, + [3144] = {.lex_state = 157, .external_lex_state = 8}, + [3145] = {.lex_state = 157, .external_lex_state = 8}, + [3146] = {.lex_state = 157, .external_lex_state = 8}, + [3147] = {.lex_state = 64, .external_lex_state = 10}, + [3148] = {.lex_state = 157, .external_lex_state = 8}, + [3149] = {.lex_state = 157, .external_lex_state = 8}, + [3150] = {.lex_state = 64, .external_lex_state = 10}, + [3151] = {.lex_state = 64, .external_lex_state = 10}, + [3152] = {.lex_state = 64, .external_lex_state = 10}, + [3153] = {.lex_state = 64, .external_lex_state = 10}, + [3154] = {.lex_state = 64, .external_lex_state = 10}, + [3155] = {.lex_state = 64, .external_lex_state = 10}, + [3156] = {.lex_state = 157, .external_lex_state = 8}, + [3157] = {.lex_state = 157, .external_lex_state = 8}, + [3158] = {.lex_state = 64, .external_lex_state = 10}, + [3159] = {.lex_state = 157, .external_lex_state = 8}, + [3160] = {.lex_state = 157, .external_lex_state = 8}, + [3161] = {.lex_state = 64, .external_lex_state = 10}, + [3162] = {.lex_state = 157, .external_lex_state = 8}, + [3163] = {.lex_state = 64, .external_lex_state = 10}, + [3164] = {.lex_state = 157, .external_lex_state = 8}, + [3165] = {.lex_state = 64, .external_lex_state = 10}, + [3166] = {.lex_state = 153, .external_lex_state = 8}, + [3167] = {.lex_state = 153, .external_lex_state = 8}, + [3168] = {.lex_state = 64, .external_lex_state = 10}, + [3169] = {.lex_state = 64, .external_lex_state = 10}, + [3170] = {.lex_state = 64, .external_lex_state = 10}, + [3171] = {.lex_state = 153, .external_lex_state = 8}, + [3172] = {.lex_state = 64, .external_lex_state = 10}, + [3173] = {.lex_state = 64, .external_lex_state = 10}, + [3174] = {.lex_state = 64, .external_lex_state = 10}, + [3175] = {.lex_state = 64, .external_lex_state = 10}, + [3176] = {.lex_state = 64, .external_lex_state = 10}, + [3177] = {.lex_state = 64, .external_lex_state = 10}, + [3178] = {.lex_state = 64, .external_lex_state = 10}, + [3179] = {.lex_state = 64, .external_lex_state = 10}, + [3180] = {.lex_state = 153, .external_lex_state = 8}, + [3181] = {.lex_state = 64, .external_lex_state = 10}, + [3182] = {.lex_state = 64, .external_lex_state = 10}, + [3183] = {.lex_state = 49, .external_lex_state = 8}, + [3184] = {.lex_state = 157, .external_lex_state = 8}, + [3185] = {.lex_state = 157, .external_lex_state = 8}, + [3186] = {.lex_state = 64, .external_lex_state = 10}, + [3187] = {.lex_state = 64, .external_lex_state = 10}, + [3188] = {.lex_state = 64, .external_lex_state = 10}, + [3189] = {.lex_state = 64, .external_lex_state = 10}, + [3190] = {.lex_state = 73, .external_lex_state = 8}, + [3191] = {.lex_state = 153, .external_lex_state = 10}, + [3192] = {.lex_state = 153, .external_lex_state = 8}, + [3193] = {.lex_state = 153, .external_lex_state = 10}, + [3194] = {.lex_state = 157, .external_lex_state = 8}, + [3195] = {.lex_state = 73, .external_lex_state = 8}, + [3196] = {.lex_state = 73, .external_lex_state = 8}, + [3197] = {.lex_state = 73, .external_lex_state = 8}, + [3198] = {.lex_state = 73, .external_lex_state = 8}, + [3199] = {.lex_state = 153, .external_lex_state = 8}, + [3200] = {.lex_state = 157, .external_lex_state = 8}, + [3201] = {.lex_state = 157, .external_lex_state = 8}, + [3202] = {.lex_state = 153, .external_lex_state = 8}, + [3203] = {.lex_state = 64, .external_lex_state = 10}, + [3204] = {.lex_state = 49, .external_lex_state = 8}, + [3205] = {.lex_state = 153, .external_lex_state = 8}, + [3206] = {.lex_state = 64, .external_lex_state = 10}, + [3207] = {.lex_state = 64, .external_lex_state = 10}, + [3208] = {.lex_state = 49, .external_lex_state = 8}, + [3209] = {.lex_state = 157, .external_lex_state = 8}, + [3210] = {.lex_state = 64, .external_lex_state = 10}, + [3211] = {.lex_state = 153, .external_lex_state = 8}, + [3212] = {.lex_state = 64, .external_lex_state = 10}, + [3213] = {.lex_state = 64, .external_lex_state = 10}, + [3214] = {.lex_state = 64, .external_lex_state = 10}, + [3215] = {.lex_state = 157, .external_lex_state = 8}, + [3216] = {.lex_state = 153, .external_lex_state = 8}, + [3217] = {.lex_state = 64, .external_lex_state = 10}, + [3218] = {.lex_state = 64, .external_lex_state = 10}, + [3219] = {.lex_state = 64, .external_lex_state = 10}, + [3220] = {.lex_state = 64, .external_lex_state = 10}, + [3221] = {.lex_state = 64, .external_lex_state = 10}, + [3222] = {.lex_state = 64, .external_lex_state = 10}, + [3223] = {.lex_state = 64, .external_lex_state = 10}, + [3224] = {.lex_state = 64, .external_lex_state = 10}, + [3225] = {.lex_state = 153, .external_lex_state = 8}, + [3226] = {.lex_state = 64, .external_lex_state = 10}, + [3227] = {.lex_state = 64, .external_lex_state = 10}, + [3228] = {.lex_state = 64, .external_lex_state = 10}, + [3229] = {.lex_state = 64, .external_lex_state = 10}, + [3230] = {.lex_state = 64, .external_lex_state = 10}, + [3231] = {.lex_state = 153, .external_lex_state = 8}, + [3232] = {.lex_state = 49, .external_lex_state = 8}, + [3233] = {.lex_state = 64, .external_lex_state = 10}, + [3234] = {.lex_state = 157, .external_lex_state = 8}, + [3235] = {.lex_state = 157, .external_lex_state = 8}, + [3236] = {.lex_state = 157, .external_lex_state = 8}, + [3237] = {.lex_state = 157, .external_lex_state = 8}, + [3238] = {.lex_state = 157, .external_lex_state = 8}, + [3239] = {.lex_state = 49, .external_lex_state = 8}, + [3240] = {.lex_state = 49, .external_lex_state = 8}, + [3241] = {.lex_state = 157, .external_lex_state = 8}, + [3242] = {.lex_state = 69, .external_lex_state = 8}, + [3243] = {.lex_state = 69, .external_lex_state = 8}, + [3244] = {.lex_state = 153, .external_lex_state = 8}, + [3245] = {.lex_state = 69, .external_lex_state = 8}, + [3246] = {.lex_state = 153, .external_lex_state = 13}, + [3247] = {.lex_state = 69, .external_lex_state = 8}, + [3248] = {.lex_state = 69, .external_lex_state = 8}, + [3249] = {.lex_state = 69, .external_lex_state = 8}, + [3250] = {.lex_state = 64, .external_lex_state = 10}, + [3251] = {.lex_state = 64, .external_lex_state = 10}, + [3252] = {.lex_state = 64, .external_lex_state = 10}, + [3253] = {.lex_state = 157, .external_lex_state = 8}, + [3254] = {.lex_state = 64, .external_lex_state = 10}, + [3255] = {.lex_state = 153, .external_lex_state = 8}, + [3256] = {.lex_state = 153, .external_lex_state = 13}, + [3257] = {.lex_state = 64, .external_lex_state = 10}, + [3258] = {.lex_state = 64, .external_lex_state = 10}, + [3259] = {.lex_state = 153, .external_lex_state = 8}, + [3260] = {.lex_state = 64, .external_lex_state = 13}, + [3261] = {.lex_state = 64, .external_lex_state = 10}, + [3262] = {.lex_state = 64, .external_lex_state = 10}, + [3263] = {.lex_state = 69, .external_lex_state = 8}, + [3264] = {.lex_state = 69, .external_lex_state = 8}, + [3265] = {.lex_state = 69, .external_lex_state = 8}, + [3266] = {.lex_state = 69, .external_lex_state = 8}, + [3267] = {.lex_state = 69, .external_lex_state = 8}, + [3268] = {.lex_state = 69, .external_lex_state = 8}, + [3269] = {.lex_state = 69, .external_lex_state = 8}, + [3270] = {.lex_state = 69, .external_lex_state = 8}, + [3271] = {.lex_state = 69, .external_lex_state = 8}, + [3272] = {.lex_state = 69, .external_lex_state = 8}, + [3273] = {.lex_state = 64, .external_lex_state = 10}, + [3274] = {.lex_state = 157, .external_lex_state = 8}, + [3275] = {.lex_state = 49, .external_lex_state = 8}, + [3276] = {.lex_state = 157, .external_lex_state = 8}, + [3277] = {.lex_state = 157, .external_lex_state = 8}, + [3278] = {.lex_state = 49, .external_lex_state = 8}, + [3279] = {.lex_state = 49, .external_lex_state = 8}, + [3280] = {.lex_state = 64, .external_lex_state = 10}, + [3281] = {.lex_state = 157, .external_lex_state = 8}, + [3282] = {.lex_state = 64, .external_lex_state = 10}, + [3283] = {.lex_state = 73, .external_lex_state = 8}, + [3284] = {.lex_state = 49, .external_lex_state = 8}, + [3285] = {.lex_state = 157, .external_lex_state = 8}, + [3286] = {.lex_state = 157, .external_lex_state = 8}, + [3287] = {.lex_state = 49, .external_lex_state = 8}, + [3288] = {.lex_state = 73, .external_lex_state = 8}, + [3289] = {.lex_state = 73, .external_lex_state = 8}, + [3290] = {.lex_state = 69, .external_lex_state = 8}, + [3291] = {.lex_state = 73, .external_lex_state = 8}, + [3292] = {.lex_state = 73, .external_lex_state = 8}, + [3293] = {.lex_state = 73, .external_lex_state = 8}, + [3294] = {.lex_state = 69, .external_lex_state = 8}, + [3295] = {.lex_state = 153, .external_lex_state = 10}, + [3296] = {.lex_state = 153, .external_lex_state = 10}, + [3297] = {.lex_state = 153, .external_lex_state = 10}, + [3298] = {.lex_state = 153, .external_lex_state = 10}, + [3299] = {.lex_state = 153, .external_lex_state = 10}, + [3300] = {.lex_state = 153, .external_lex_state = 10}, + [3301] = {.lex_state = 153, .external_lex_state = 10}, + [3302] = {.lex_state = 153, .external_lex_state = 10}, + [3303] = {.lex_state = 153, .external_lex_state = 10}, + [3304] = {.lex_state = 153, .external_lex_state = 10}, + [3305] = {.lex_state = 153, .external_lex_state = 10}, + [3306] = {.lex_state = 153, .external_lex_state = 10}, + [3307] = {.lex_state = 153, .external_lex_state = 10}, + [3308] = {.lex_state = 153, .external_lex_state = 10}, + [3309] = {.lex_state = 153, .external_lex_state = 10}, + [3310] = {.lex_state = 153, .external_lex_state = 10}, + [3311] = {.lex_state = 153, .external_lex_state = 10}, + [3312] = {.lex_state = 73, .external_lex_state = 8}, + [3313] = {.lex_state = 73, .external_lex_state = 8}, + [3314] = {.lex_state = 73, .external_lex_state = 8}, + [3315] = {.lex_state = 69, .external_lex_state = 8}, + [3316] = {.lex_state = 64, .external_lex_state = 10}, + [3317] = {.lex_state = 69, .external_lex_state = 8}, + [3318] = {.lex_state = 64, .external_lex_state = 10}, + [3319] = {.lex_state = 64, .external_lex_state = 13}, + [3320] = {.lex_state = 49, .external_lex_state = 8}, + [3321] = {.lex_state = 49, .external_lex_state = 8}, + [3322] = {.lex_state = 49, .external_lex_state = 8}, + [3323] = {.lex_state = 49, .external_lex_state = 8}, + [3324] = {.lex_state = 49, .external_lex_state = 8}, + [3325] = {.lex_state = 49, .external_lex_state = 8}, + [3326] = {.lex_state = 49, .external_lex_state = 8}, + [3327] = {.lex_state = 49, .external_lex_state = 8}, + [3328] = {.lex_state = 49, .external_lex_state = 8}, + [3329] = {.lex_state = 49, .external_lex_state = 8}, + [3330] = {.lex_state = 49, .external_lex_state = 8}, + [3331] = {.lex_state = 49, .external_lex_state = 8}, + [3332] = {.lex_state = 49, .external_lex_state = 8}, + [3333] = {.lex_state = 49, .external_lex_state = 8}, + [3334] = {.lex_state = 69, .external_lex_state = 8}, + [3335] = {.lex_state = 64, .external_lex_state = 10}, + [3336] = {.lex_state = 64, .external_lex_state = 10}, + [3337] = {.lex_state = 64, .external_lex_state = 10}, + [3338] = {.lex_state = 73, .external_lex_state = 8}, + [3339] = {.lex_state = 153, .external_lex_state = 8}, + [3340] = {.lex_state = 73, .external_lex_state = 8}, + [3341] = {.lex_state = 73, .external_lex_state = 8}, + [3342] = {.lex_state = 73, .external_lex_state = 8}, + [3343] = {.lex_state = 73, .external_lex_state = 8}, + [3344] = {.lex_state = 69, .external_lex_state = 8}, + [3345] = {.lex_state = 69, .external_lex_state = 8}, + [3346] = {.lex_state = 69, .external_lex_state = 8}, + [3347] = {.lex_state = 69, .external_lex_state = 8}, + [3348] = {.lex_state = 69, .external_lex_state = 8}, + [3349] = {.lex_state = 49, .external_lex_state = 8}, + [3350] = {.lex_state = 73, .external_lex_state = 8}, + [3351] = {.lex_state = 69, .external_lex_state = 8}, + [3352] = {.lex_state = 73, .external_lex_state = 8}, + [3353] = {.lex_state = 73, .external_lex_state = 8}, + [3354] = {.lex_state = 73, .external_lex_state = 8}, + [3355] = {.lex_state = 73, .external_lex_state = 8}, + [3356] = {.lex_state = 73, .external_lex_state = 8}, + [3357] = {.lex_state = 73, .external_lex_state = 8}, + [3358] = {.lex_state = 49, .external_lex_state = 8}, + [3359] = {.lex_state = 157, .external_lex_state = 8}, + [3360] = {.lex_state = 157, .external_lex_state = 8}, + [3361] = {.lex_state = 73, .external_lex_state = 8}, + [3362] = {.lex_state = 69, .external_lex_state = 8}, + [3363] = {.lex_state = 73, .external_lex_state = 8}, + [3364] = {.lex_state = 49, .external_lex_state = 8}, + [3365] = {.lex_state = 153, .external_lex_state = 8}, + [3366] = {.lex_state = 69, .external_lex_state = 8}, + [3367] = {.lex_state = 69, .external_lex_state = 8}, + [3368] = {.lex_state = 153, .external_lex_state = 8}, + [3369] = {.lex_state = 153, .external_lex_state = 8}, + [3370] = {.lex_state = 157, .external_lex_state = 8}, + [3371] = {.lex_state = 69, .external_lex_state = 8}, + [3372] = {.lex_state = 73, .external_lex_state = 8}, + [3373] = {.lex_state = 69, .external_lex_state = 8}, + [3374] = {.lex_state = 69, .external_lex_state = 8}, + [3375] = {.lex_state = 49, .external_lex_state = 8}, + [3376] = {.lex_state = 73, .external_lex_state = 8}, + [3377] = {.lex_state = 73, .external_lex_state = 8}, + [3378] = {.lex_state = 157, .external_lex_state = 8}, + [3379] = {.lex_state = 73, .external_lex_state = 8}, + [3380] = {.lex_state = 73, .external_lex_state = 8}, + [3381] = {.lex_state = 157, .external_lex_state = 8}, + [3382] = {.lex_state = 73, .external_lex_state = 8}, + [3383] = {.lex_state = 153, .external_lex_state = 8}, + [3384] = {.lex_state = 49, .external_lex_state = 13}, + [3385] = {.lex_state = 73, .external_lex_state = 8}, + [3386] = {.lex_state = 49, .external_lex_state = 13}, + [3387] = {.lex_state = 157, .external_lex_state = 8}, + [3388] = {.lex_state = 73, .external_lex_state = 8}, + [3389] = {.lex_state = 153, .external_lex_state = 8}, + [3390] = {.lex_state = 157, .external_lex_state = 8}, + [3391] = {.lex_state = 73, .external_lex_state = 8}, + [3392] = {.lex_state = 157, .external_lex_state = 8}, + [3393] = {.lex_state = 73, .external_lex_state = 8}, + [3394] = {.lex_state = 73, .external_lex_state = 8}, + [3395] = {.lex_state = 157, .external_lex_state = 8}, + [3396] = {.lex_state = 73, .external_lex_state = 8}, + [3397] = {.lex_state = 153, .external_lex_state = 8}, + [3398] = {.lex_state = 153, .external_lex_state = 8}, + [3399] = {.lex_state = 153, .external_lex_state = 8}, + [3400] = {.lex_state = 153, .external_lex_state = 8}, + [3401] = {.lex_state = 157, .external_lex_state = 8}, + [3402] = {.lex_state = 157, .external_lex_state = 8}, + [3403] = {.lex_state = 157, .external_lex_state = 8}, + [3404] = {.lex_state = 157, .external_lex_state = 8}, + [3405] = {.lex_state = 157, .external_lex_state = 8}, + [3406] = {.lex_state = 157, .external_lex_state = 8}, + [3407] = {.lex_state = 157, .external_lex_state = 8}, + [3408] = {.lex_state = 153, .external_lex_state = 8}, + [3409] = {.lex_state = 153, .external_lex_state = 8}, + [3410] = {.lex_state = 153, .external_lex_state = 8}, + [3411] = {.lex_state = 153, .external_lex_state = 8}, + [3412] = {.lex_state = 157, .external_lex_state = 8}, + [3413] = {.lex_state = 49, .external_lex_state = 8}, + [3414] = {.lex_state = 69, .external_lex_state = 8}, + [3415] = {.lex_state = 69, .external_lex_state = 8}, + [3416] = {.lex_state = 157, .external_lex_state = 8}, + [3417] = {.lex_state = 69, .external_lex_state = 8}, + [3418] = {.lex_state = 49, .external_lex_state = 8}, + [3419] = {.lex_state = 49, .external_lex_state = 8}, + [3420] = {.lex_state = 69, .external_lex_state = 8}, + [3421] = {.lex_state = 64, .external_lex_state = 10}, + [3422] = {.lex_state = 73, .external_lex_state = 8}, + [3423] = {.lex_state = 157, .external_lex_state = 8}, + [3424] = {.lex_state = 64, .external_lex_state = 8}, + [3425] = {.lex_state = 153, .external_lex_state = 13}, + [3426] = {.lex_state = 157, .external_lex_state = 8}, + [3427] = {.lex_state = 157, .external_lex_state = 8}, + [3428] = {.lex_state = 64, .external_lex_state = 10}, + [3429] = {.lex_state = 153, .external_lex_state = 8}, + [3430] = {.lex_state = 153, .external_lex_state = 8}, + [3431] = {.lex_state = 153, .external_lex_state = 8}, + [3432] = {.lex_state = 153, .external_lex_state = 8}, + [3433] = {.lex_state = 153, .external_lex_state = 13}, + [3434] = {.lex_state = 153, .external_lex_state = 8}, + [3435] = {.lex_state = 157, .external_lex_state = 8}, + [3436] = {.lex_state = 153, .external_lex_state = 13}, + [3437] = {.lex_state = 153, .external_lex_state = 13}, + [3438] = {.lex_state = 157, .external_lex_state = 8}, + [3439] = {.lex_state = 153, .external_lex_state = 13}, + [3440] = {.lex_state = 157, .external_lex_state = 8}, + [3441] = {.lex_state = 157, .external_lex_state = 8}, + [3442] = {.lex_state = 49, .external_lex_state = 13}, + [3443] = {.lex_state = 153, .external_lex_state = 13}, + [3444] = {.lex_state = 157, .external_lex_state = 8}, + [3445] = {.lex_state = 49, .external_lex_state = 13}, + [3446] = {.lex_state = 157, .external_lex_state = 8}, + [3447] = {.lex_state = 64, .external_lex_state = 10}, + [3448] = {.lex_state = 157, .external_lex_state = 8}, + [3449] = {.lex_state = 157, .external_lex_state = 8}, + [3450] = {.lex_state = 157, .external_lex_state = 8}, + [3451] = {.lex_state = 153, .external_lex_state = 8}, + [3452] = {.lex_state = 157, .external_lex_state = 8}, + [3453] = {.lex_state = 69, .external_lex_state = 8}, + [3454] = {.lex_state = 153, .external_lex_state = 8}, + [3455] = {.lex_state = 157, .external_lex_state = 8}, + [3456] = {.lex_state = 153, .external_lex_state = 8}, + [3457] = {.lex_state = 69, .external_lex_state = 8}, + [3458] = {.lex_state = 49, .external_lex_state = 8}, + [3459] = {.lex_state = 153, .external_lex_state = 8}, + [3460] = {.lex_state = 64, .external_lex_state = 13}, + [3461] = {.lex_state = 64, .external_lex_state = 13}, + [3462] = {.lex_state = 64, .external_lex_state = 13}, + [3463] = {.lex_state = 64, .external_lex_state = 13}, + [3464] = {.lex_state = 64, .external_lex_state = 13}, + [3465] = {.lex_state = 49, .external_lex_state = 8}, + [3466] = {.lex_state = 49, .external_lex_state = 8}, + [3467] = {.lex_state = 49, .external_lex_state = 8}, + [3468] = {.lex_state = 49, .external_lex_state = 8}, + [3469] = {.lex_state = 49, .external_lex_state = 8}, + [3470] = {.lex_state = 49, .external_lex_state = 8}, + [3471] = {.lex_state = 75, .external_lex_state = 8}, + [3472] = {.lex_state = 153, .external_lex_state = 8}, + [3473] = {.lex_state = 49, .external_lex_state = 8}, + [3474] = {.lex_state = 49, .external_lex_state = 8}, + [3475] = {.lex_state = 49, .external_lex_state = 8}, + [3476] = {.lex_state = 153, .external_lex_state = 8}, + [3477] = {.lex_state = 153, .external_lex_state = 8}, + [3478] = {.lex_state = 49, .external_lex_state = 8}, + [3479] = {.lex_state = 153, .external_lex_state = 8}, + [3480] = {.lex_state = 153, .external_lex_state = 8}, + [3481] = {.lex_state = 153, .external_lex_state = 8}, + [3482] = {.lex_state = 49, .external_lex_state = 8}, + [3483] = {.lex_state = 153, .external_lex_state = 8}, + [3484] = {.lex_state = 153, .external_lex_state = 8}, + [3485] = {.lex_state = 153, .external_lex_state = 8}, + [3486] = {.lex_state = 49, .external_lex_state = 8}, + [3487] = {.lex_state = 49, .external_lex_state = 8}, + [3488] = {.lex_state = 153, .external_lex_state = 8}, + [3489] = {.lex_state = 49, .external_lex_state = 8}, + [3490] = {.lex_state = 153, .external_lex_state = 8}, + [3491] = {.lex_state = 64, .external_lex_state = 8}, + [3492] = {.lex_state = 49, .external_lex_state = 8}, + [3493] = {.lex_state = 49, .external_lex_state = 8}, + [3494] = {.lex_state = 49, .external_lex_state = 8}, + [3495] = {.lex_state = 49, .external_lex_state = 8}, + [3496] = {.lex_state = 49, .external_lex_state = 8}, + [3497] = {.lex_state = 75, .external_lex_state = 8}, + [3498] = {.lex_state = 153, .external_lex_state = 8}, + [3499] = {.lex_state = 64, .external_lex_state = 8}, + [3500] = {.lex_state = 153, .external_lex_state = 8}, + [3501] = {.lex_state = 49, .external_lex_state = 8}, + [3502] = {.lex_state = 49, .external_lex_state = 8}, + [3503] = {.lex_state = 49, .external_lex_state = 8}, + [3504] = {.lex_state = 64, .external_lex_state = 8}, + [3505] = {.lex_state = 64, .external_lex_state = 8}, + [3506] = {.lex_state = 153, .external_lex_state = 8}, + [3507] = {.lex_state = 153, .external_lex_state = 8}, + [3508] = {.lex_state = 153, .external_lex_state = 8}, + [3509] = {.lex_state = 153, .external_lex_state = 8}, + [3510] = {.lex_state = 153, .external_lex_state = 8}, + [3511] = {.lex_state = 153, .external_lex_state = 8}, + [3512] = {.lex_state = 153, .external_lex_state = 8}, + [3513] = {.lex_state = 153, .external_lex_state = 8}, + [3514] = {.lex_state = 153, .external_lex_state = 8}, + [3515] = {.lex_state = 153, .external_lex_state = 8}, + [3516] = {.lex_state = 153, .external_lex_state = 8}, + [3517] = {.lex_state = 153, .external_lex_state = 8}, + [3518] = {.lex_state = 153, .external_lex_state = 8}, + [3519] = {.lex_state = 153, .external_lex_state = 8}, + [3520] = {.lex_state = 153, .external_lex_state = 8}, + [3521] = {.lex_state = 153, .external_lex_state = 8}, + [3522] = {.lex_state = 153, .external_lex_state = 8}, + [3523] = {.lex_state = 49, .external_lex_state = 8}, + [3524] = {.lex_state = 153, .external_lex_state = 8}, + [3525] = {.lex_state = 153, .external_lex_state = 8}, + [3526] = {.lex_state = 153, .external_lex_state = 8}, + [3527] = {.lex_state = 153, .external_lex_state = 8}, + [3528] = {.lex_state = 75, .external_lex_state = 8}, + [3529] = {.lex_state = 153, .external_lex_state = 8}, + [3530] = {.lex_state = 153, .external_lex_state = 8}, + [3531] = {.lex_state = 64, .external_lex_state = 8}, + [3532] = {.lex_state = 75, .external_lex_state = 8}, + [3533] = {.lex_state = 75, .external_lex_state = 8}, + [3534] = {.lex_state = 64, .external_lex_state = 8}, + [3535] = {.lex_state = 75, .external_lex_state = 8}, + [3536] = {.lex_state = 75, .external_lex_state = 8}, + [3537] = {.lex_state = 153, .external_lex_state = 8}, + [3538] = {.lex_state = 64, .external_lex_state = 8}, + [3539] = {.lex_state = 64, .external_lex_state = 8}, + [3540] = {.lex_state = 49, .external_lex_state = 8}, + [3541] = {.lex_state = 49, .external_lex_state = 8}, + [3542] = {.lex_state = 49, .external_lex_state = 8}, + [3543] = {.lex_state = 64, .external_lex_state = 8}, + [3544] = {.lex_state = 49, .external_lex_state = 8}, + [3545] = {.lex_state = 49, .external_lex_state = 8}, + [3546] = {.lex_state = 75, .external_lex_state = 8}, + [3547] = {.lex_state = 75, .external_lex_state = 8}, + [3548] = {.lex_state = 75, .external_lex_state = 8}, + [3549] = {.lex_state = 75, .external_lex_state = 8}, + [3550] = {.lex_state = 75, .external_lex_state = 8}, + [3551] = {.lex_state = 49, .external_lex_state = 8}, + [3552] = {.lex_state = 49, .external_lex_state = 8}, + [3553] = {.lex_state = 75, .external_lex_state = 8}, + [3554] = {.lex_state = 75, .external_lex_state = 8}, + [3555] = {.lex_state = 75, .external_lex_state = 8}, + [3556] = {.lex_state = 75, .external_lex_state = 8}, + [3557] = {.lex_state = 75, .external_lex_state = 8}, + [3558] = {.lex_state = 75, .external_lex_state = 8}, + [3559] = {.lex_state = 75, .external_lex_state = 8}, + [3560] = {.lex_state = 75, .external_lex_state = 8}, + [3561] = {.lex_state = 75, .external_lex_state = 8}, + [3562] = {.lex_state = 75, .external_lex_state = 8}, + [3563] = {.lex_state = 75, .external_lex_state = 8}, + [3564] = {.lex_state = 49, .external_lex_state = 8}, + [3565] = {.lex_state = 75, .external_lex_state = 8}, + [3566] = {.lex_state = 49, .external_lex_state = 8}, + [3567] = {.lex_state = 64, .external_lex_state = 8}, + [3568] = {.lex_state = 64, .external_lex_state = 8}, + [3569] = {.lex_state = 64, .external_lex_state = 8}, + [3570] = {.lex_state = 75, .external_lex_state = 8}, + [3571] = {.lex_state = 75, .external_lex_state = 8}, + [3572] = {.lex_state = 75, .external_lex_state = 8}, + [3573] = {.lex_state = 75, .external_lex_state = 8}, + [3574] = {.lex_state = 75, .external_lex_state = 8}, + [3575] = {.lex_state = 75, .external_lex_state = 8}, + [3576] = {.lex_state = 75, .external_lex_state = 8}, + [3577] = {.lex_state = 153, .external_lex_state = 8}, + [3578] = {.lex_state = 49, .external_lex_state = 8}, + [3579] = {.lex_state = 49, .external_lex_state = 8}, + [3580] = {.lex_state = 153, .external_lex_state = 8}, + [3581] = {.lex_state = 49, .external_lex_state = 8}, + [3582] = {.lex_state = 153, .external_lex_state = 8}, + [3583] = {.lex_state = 153, .external_lex_state = 8}, + [3584] = {.lex_state = 153, .external_lex_state = 8}, + [3585] = {.lex_state = 153, .external_lex_state = 8}, + [3586] = {.lex_state = 153, .external_lex_state = 8}, + [3587] = {.lex_state = 153, .external_lex_state = 8}, + [3588] = {.lex_state = 49, .external_lex_state = 8}, + [3589] = {.lex_state = 75, .external_lex_state = 8}, + [3590] = {.lex_state = 153, .external_lex_state = 8}, + [3591] = {.lex_state = 153, .external_lex_state = 8}, + [3592] = {.lex_state = 49, .external_lex_state = 8}, + [3593] = {.lex_state = 153, .external_lex_state = 8}, + [3594] = {.lex_state = 153, .external_lex_state = 8}, + [3595] = {.lex_state = 75, .external_lex_state = 8}, + [3596] = {.lex_state = 153, .external_lex_state = 8}, + [3597] = {.lex_state = 64, .external_lex_state = 8}, + [3598] = {.lex_state = 75, .external_lex_state = 8}, + [3599] = {.lex_state = 49, .external_lex_state = 8}, + [3600] = {.lex_state = 75, .external_lex_state = 8}, + [3601] = {.lex_state = 49, .external_lex_state = 8}, + [3602] = {.lex_state = 75, .external_lex_state = 8}, + [3603] = {.lex_state = 49, .external_lex_state = 8}, + [3604] = {.lex_state = 49, .external_lex_state = 8}, + [3605] = {.lex_state = 75, .external_lex_state = 8}, + [3606] = {.lex_state = 75, .external_lex_state = 8}, + [3607] = {.lex_state = 153, .external_lex_state = 8}, + [3608] = {.lex_state = 153, .external_lex_state = 8}, + [3609] = {.lex_state = 49, .external_lex_state = 8}, + [3610] = {.lex_state = 153, .external_lex_state = 8}, + [3611] = {.lex_state = 153, .external_lex_state = 8}, + [3612] = {.lex_state = 153, .external_lex_state = 8}, + [3613] = {.lex_state = 153, .external_lex_state = 8}, + [3614] = {.lex_state = 75, .external_lex_state = 8}, + [3615] = {.lex_state = 64, .external_lex_state = 8}, + [3616] = {.lex_state = 153, .external_lex_state = 8}, + [3617] = {.lex_state = 64, .external_lex_state = 8}, + [3618] = {.lex_state = 75, .external_lex_state = 8}, + [3619] = {.lex_state = 64, .external_lex_state = 8}, + [3620] = {.lex_state = 49, .external_lex_state = 8}, + [3621] = {.lex_state = 49, .external_lex_state = 8}, + [3622] = {.lex_state = 153, .external_lex_state = 8}, + [3623] = {.lex_state = 153, .external_lex_state = 8}, + [3624] = {.lex_state = 153, .external_lex_state = 8}, + [3625] = {.lex_state = 49, .external_lex_state = 8}, + [3626] = {.lex_state = 153, .external_lex_state = 8}, + [3627] = {.lex_state = 64, .external_lex_state = 13}, + [3628] = {.lex_state = 64, .external_lex_state = 13}, + [3629] = {.lex_state = 153, .external_lex_state = 8}, + [3630] = {.lex_state = 153, .external_lex_state = 8}, + [3631] = {.lex_state = 153, .external_lex_state = 8}, + [3632] = {.lex_state = 153, .external_lex_state = 8}, + [3633] = {.lex_state = 153, .external_lex_state = 8}, + [3634] = {.lex_state = 153, .external_lex_state = 8}, + [3635] = {.lex_state = 153, .external_lex_state = 8}, + [3636] = {.lex_state = 153, .external_lex_state = 8}, + [3637] = {.lex_state = 153, .external_lex_state = 8}, + [3638] = {.lex_state = 75, .external_lex_state = 8}, + [3639] = {.lex_state = 64, .external_lex_state = 13}, + [3640] = {.lex_state = 153, .external_lex_state = 8}, + [3641] = {.lex_state = 64, .external_lex_state = 13}, + [3642] = {.lex_state = 153, .external_lex_state = 8}, + [3643] = {.lex_state = 153, .external_lex_state = 8}, + [3644] = {.lex_state = 153, .external_lex_state = 8}, + [3645] = {.lex_state = 153, .external_lex_state = 8}, + [3646] = {.lex_state = 153, .external_lex_state = 8}, + [3647] = {.lex_state = 153, .external_lex_state = 8}, + [3648] = {.lex_state = 153, .external_lex_state = 8}, + [3649] = {.lex_state = 153, .external_lex_state = 8}, + [3650] = {.lex_state = 153, .external_lex_state = 8}, + [3651] = {.lex_state = 153, .external_lex_state = 8}, + [3652] = {.lex_state = 153, .external_lex_state = 8}, + [3653] = {.lex_state = 153, .external_lex_state = 8}, + [3654] = {.lex_state = 153, .external_lex_state = 8}, + [3655] = {.lex_state = 49, .external_lex_state = 8}, + [3656] = {.lex_state = 153, .external_lex_state = 8}, + [3657] = {.lex_state = 153, .external_lex_state = 8}, + [3658] = {.lex_state = 153, .external_lex_state = 8}, + [3659] = {.lex_state = 153, .external_lex_state = 8}, + [3660] = {.lex_state = 49, .external_lex_state = 8}, + [3661] = {.lex_state = 49, .external_lex_state = 8}, + [3662] = {.lex_state = 49, .external_lex_state = 8}, + [3663] = {.lex_state = 153, .external_lex_state = 8}, + [3664] = {.lex_state = 153, .external_lex_state = 8}, + [3665] = {.lex_state = 49, .external_lex_state = 8}, + [3666] = {.lex_state = 153, .external_lex_state = 8}, + [3667] = {.lex_state = 49, .external_lex_state = 8}, + [3668] = {.lex_state = 153, .external_lex_state = 8}, + [3669] = {.lex_state = 49, .external_lex_state = 8}, + [3670] = {.lex_state = 49, .external_lex_state = 8}, + [3671] = {.lex_state = 49, .external_lex_state = 8}, + [3672] = {.lex_state = 49, .external_lex_state = 8}, + [3673] = {.lex_state = 153, .external_lex_state = 8}, + [3674] = {.lex_state = 49, .external_lex_state = 8}, + [3675] = {.lex_state = 49, .external_lex_state = 8}, + [3676] = {.lex_state = 49, .external_lex_state = 8}, + [3677] = {.lex_state = 49, .external_lex_state = 8}, + [3678] = {.lex_state = 49, .external_lex_state = 8}, + [3679] = {.lex_state = 49, .external_lex_state = 8}, + [3680] = {.lex_state = 49, .external_lex_state = 8}, + [3681] = {.lex_state = 153, .external_lex_state = 8}, + [3682] = {.lex_state = 153, .external_lex_state = 8}, + [3683] = {.lex_state = 153, .external_lex_state = 8}, + [3684] = {.lex_state = 153, .external_lex_state = 8}, + [3685] = {.lex_state = 49, .external_lex_state = 8}, + [3686] = {.lex_state = 49, .external_lex_state = 8}, + [3687] = {.lex_state = 49, .external_lex_state = 8}, + [3688] = {.lex_state = 49, .external_lex_state = 8}, + [3689] = {.lex_state = 49, .external_lex_state = 8}, + [3690] = {.lex_state = 153, .external_lex_state = 8}, + [3691] = {.lex_state = 49, .external_lex_state = 8}, + [3692] = {.lex_state = 49, .external_lex_state = 8}, + [3693] = {.lex_state = 49, .external_lex_state = 8}, + [3694] = {.lex_state = 49, .external_lex_state = 8}, + [3695] = {.lex_state = 49, .external_lex_state = 8}, + [3696] = {.lex_state = 49, .external_lex_state = 8}, + [3697] = {.lex_state = 153, .external_lex_state = 8}, + [3698] = {.lex_state = 49, .external_lex_state = 8}, + [3699] = {.lex_state = 153, .external_lex_state = 8}, + [3700] = {.lex_state = 153, .external_lex_state = 8}, + [3701] = {.lex_state = 153, .external_lex_state = 8}, + [3702] = {.lex_state = 49, .external_lex_state = 8}, + [3703] = {.lex_state = 49, .external_lex_state = 8}, + [3704] = {.lex_state = 49, .external_lex_state = 8}, + [3705] = {.lex_state = 153, .external_lex_state = 8}, + [3706] = {.lex_state = 153, .external_lex_state = 8}, + [3707] = {.lex_state = 153, .external_lex_state = 8}, + [3708] = {.lex_state = 153, .external_lex_state = 8}, + [3709] = {.lex_state = 153, .external_lex_state = 8}, + [3710] = {.lex_state = 49, .external_lex_state = 8}, + [3711] = {.lex_state = 153, .external_lex_state = 8}, + [3712] = {.lex_state = 153, .external_lex_state = 8}, + [3713] = {.lex_state = 49, .external_lex_state = 8}, + [3714] = {.lex_state = 153, .external_lex_state = 8}, + [3715] = {.lex_state = 153, .external_lex_state = 8}, + [3716] = {.lex_state = 153, .external_lex_state = 8}, + [3717] = {.lex_state = 153, .external_lex_state = 8}, + [3718] = {.lex_state = 153, .external_lex_state = 8}, + [3719] = {.lex_state = 153, .external_lex_state = 8}, + [3720] = {.lex_state = 49, .external_lex_state = 8}, + [3721] = {.lex_state = 153, .external_lex_state = 8}, + [3722] = {.lex_state = 153, .external_lex_state = 8}, + [3723] = {.lex_state = 153, .external_lex_state = 8}, + [3724] = {.lex_state = 153, .external_lex_state = 8}, + [3725] = {.lex_state = 49, .external_lex_state = 8}, + [3726] = {.lex_state = 153, .external_lex_state = 8}, + [3727] = {.lex_state = 153, .external_lex_state = 8}, + [3728] = {.lex_state = 153, .external_lex_state = 8}, + [3729] = {.lex_state = 153, .external_lex_state = 8}, + [3730] = {.lex_state = 64, .external_lex_state = 8}, + [3731] = {.lex_state = 153, .external_lex_state = 8}, + [3732] = {.lex_state = 153, .external_lex_state = 8}, + [3733] = {.lex_state = 153, .external_lex_state = 8}, + [3734] = {.lex_state = 153, .external_lex_state = 8}, + [3735] = {.lex_state = 153, .external_lex_state = 8}, + [3736] = {.lex_state = 153, .external_lex_state = 8}, + [3737] = {.lex_state = 64, .external_lex_state = 8}, + [3738] = {.lex_state = 64, .external_lex_state = 8}, + [3739] = {.lex_state = 64, .external_lex_state = 8}, + [3740] = {.lex_state = 64, .external_lex_state = 8}, + [3741] = {.lex_state = 64, .external_lex_state = 8}, + [3742] = {.lex_state = 64, .external_lex_state = 8}, + [3743] = {.lex_state = 64, .external_lex_state = 8}, + [3744] = {.lex_state = 64, .external_lex_state = 8}, + [3745] = {.lex_state = 153, .external_lex_state = 8}, + [3746] = {.lex_state = 64, .external_lex_state = 8}, + [3747] = {.lex_state = 64, .external_lex_state = 8}, + [3748] = {.lex_state = 64, .external_lex_state = 8}, + [3749] = {.lex_state = 153, .external_lex_state = 8}, + [3750] = {.lex_state = 64, .external_lex_state = 8}, + [3751] = {.lex_state = 64, .external_lex_state = 8}, + [3752] = {.lex_state = 153, .external_lex_state = 8}, + [3753] = {.lex_state = 153, .external_lex_state = 8}, + [3754] = {.lex_state = 153, .external_lex_state = 8}, + [3755] = {.lex_state = 64, .external_lex_state = 8}, + [3756] = {.lex_state = 64, .external_lex_state = 8}, + [3757] = {.lex_state = 153, .external_lex_state = 8}, + [3758] = {.lex_state = 64, .external_lex_state = 8}, + [3759] = {.lex_state = 153, .external_lex_state = 8}, + [3760] = {.lex_state = 153, .external_lex_state = 8}, + [3761] = {.lex_state = 153, .external_lex_state = 8}, + [3762] = {.lex_state = 153, .external_lex_state = 8}, + [3763] = {.lex_state = 49, .external_lex_state = 8}, + [3764] = {.lex_state = 153, .external_lex_state = 8}, + [3765] = {.lex_state = 153, .external_lex_state = 8}, + [3766] = {.lex_state = 153, .external_lex_state = 8}, + [3767] = {.lex_state = 153, .external_lex_state = 8}, + [3768] = {.lex_state = 64, .external_lex_state = 8}, + [3769] = {.lex_state = 64, .external_lex_state = 8}, + [3770] = {.lex_state = 153, .external_lex_state = 8}, + [3771] = {.lex_state = 153, .external_lex_state = 8}, + [3772] = {.lex_state = 153, .external_lex_state = 8}, + [3773] = {.lex_state = 153, .external_lex_state = 8}, + [3774] = {.lex_state = 153, .external_lex_state = 8}, + [3775] = {.lex_state = 64, .external_lex_state = 8}, + [3776] = {.lex_state = 64, .external_lex_state = 8}, + [3777] = {.lex_state = 153, .external_lex_state = 8}, + [3778] = {.lex_state = 64, .external_lex_state = 8}, + [3779] = {.lex_state = 153, .external_lex_state = 8}, + [3780] = {.lex_state = 64, .external_lex_state = 8}, + [3781] = {.lex_state = 153, .external_lex_state = 8}, + [3782] = {.lex_state = 64, .external_lex_state = 8}, + [3783] = {.lex_state = 64, .external_lex_state = 8}, + [3784] = {.lex_state = 153, .external_lex_state = 8}, + [3785] = {.lex_state = 64, .external_lex_state = 8}, + [3786] = {.lex_state = 153, .external_lex_state = 8}, + [3787] = {.lex_state = 64, .external_lex_state = 8}, + [3788] = {.lex_state = 64, .external_lex_state = 8}, + [3789] = {.lex_state = 153, .external_lex_state = 8}, + [3790] = {.lex_state = 153, .external_lex_state = 8}, + [3791] = {.lex_state = 153, .external_lex_state = 8}, + [3792] = {.lex_state = 153, .external_lex_state = 8}, + [3793] = {.lex_state = 64, .external_lex_state = 8}, + [3794] = {.lex_state = 64, .external_lex_state = 8}, + [3795] = {.lex_state = 64, .external_lex_state = 8}, + [3796] = {.lex_state = 64, .external_lex_state = 8}, + [3797] = {.lex_state = 153, .external_lex_state = 8}, + [3798] = {.lex_state = 64, .external_lex_state = 8}, + [3799] = {.lex_state = 64, .external_lex_state = 8}, + [3800] = {.lex_state = 64, .external_lex_state = 8}, + [3801] = {.lex_state = 64, .external_lex_state = 8}, + [3802] = {.lex_state = 64, .external_lex_state = 8}, + [3803] = {.lex_state = 153, .external_lex_state = 8}, + [3804] = {.lex_state = 153, .external_lex_state = 8}, + [3805] = {.lex_state = 64, .external_lex_state = 8}, + [3806] = {.lex_state = 153, .external_lex_state = 8}, + [3807] = {.lex_state = 64, .external_lex_state = 8}, + [3808] = {.lex_state = 64, .external_lex_state = 8}, + [3809] = {.lex_state = 64, .external_lex_state = 8}, + [3810] = {.lex_state = 64, .external_lex_state = 8}, + [3811] = {.lex_state = 64, .external_lex_state = 8}, + [3812] = {.lex_state = 64, .external_lex_state = 8}, + [3813] = {.lex_state = 64, .external_lex_state = 8}, + [3814] = {.lex_state = 64, .external_lex_state = 8}, + [3815] = {.lex_state = 153, .external_lex_state = 8}, + [3816] = {.lex_state = 153, .external_lex_state = 8}, + [3817] = {.lex_state = 153, .external_lex_state = 8}, + [3818] = {.lex_state = 153, .external_lex_state = 8}, + [3819] = {.lex_state = 153, .external_lex_state = 8}, + [3820] = {.lex_state = 64, .external_lex_state = 8}, + [3821] = {.lex_state = 64, .external_lex_state = 8}, + [3822] = {.lex_state = 153, .external_lex_state = 8}, + [3823] = {.lex_state = 153, .external_lex_state = 8}, + [3824] = {.lex_state = 64, .external_lex_state = 8}, + [3825] = {.lex_state = 153, .external_lex_state = 8}, + [3826] = {.lex_state = 153, .external_lex_state = 8}, + [3827] = {.lex_state = 153, .external_lex_state = 8}, + [3828] = {.lex_state = 153, .external_lex_state = 8}, + [3829] = {.lex_state = 64, .external_lex_state = 8}, + [3830] = {.lex_state = 153, .external_lex_state = 8}, + [3831] = {.lex_state = 153, .external_lex_state = 8}, + [3832] = {.lex_state = 153, .external_lex_state = 8}, + [3833] = {.lex_state = 153, .external_lex_state = 8}, + [3834] = {.lex_state = 153, .external_lex_state = 8}, + [3835] = {.lex_state = 153, .external_lex_state = 8}, + [3836] = {.lex_state = 153, .external_lex_state = 8}, + [3837] = {.lex_state = 153, .external_lex_state = 8}, + [3838] = {.lex_state = 153, .external_lex_state = 8}, + [3839] = {.lex_state = 64, .external_lex_state = 8}, + [3840] = {.lex_state = 153, .external_lex_state = 8}, + [3841] = {.lex_state = 153, .external_lex_state = 8}, + [3842] = {.lex_state = 153, .external_lex_state = 8}, + [3843] = {.lex_state = 153, .external_lex_state = 8}, + [3844] = {.lex_state = 64, .external_lex_state = 8}, + [3845] = {.lex_state = 64, .external_lex_state = 8}, + [3846] = {.lex_state = 64, .external_lex_state = 8}, + [3847] = {.lex_state = 153, .external_lex_state = 8}, + [3848] = {.lex_state = 153, .external_lex_state = 8}, + [3849] = {.lex_state = 153, .external_lex_state = 8}, + [3850] = {.lex_state = 64, .external_lex_state = 8}, + [3851] = {.lex_state = 153, .external_lex_state = 8}, + [3852] = {.lex_state = 64, .external_lex_state = 8}, + [3853] = {.lex_state = 64, .external_lex_state = 8}, + [3854] = {.lex_state = 153, .external_lex_state = 8}, + [3855] = {.lex_state = 153, .external_lex_state = 8}, + [3856] = {.lex_state = 153, .external_lex_state = 8}, + [3857] = {.lex_state = 153, .external_lex_state = 8}, + [3858] = {.lex_state = 153, .external_lex_state = 8}, + [3859] = {.lex_state = 153, .external_lex_state = 8}, + [3860] = {.lex_state = 64, .external_lex_state = 8}, + [3861] = {.lex_state = 153, .external_lex_state = 8}, + [3862] = {.lex_state = 153, .external_lex_state = 8}, + [3863] = {.lex_state = 64, .external_lex_state = 8}, + [3864] = {.lex_state = 153, .external_lex_state = 8}, + [3865] = {.lex_state = 153, .external_lex_state = 8}, + [3866] = {.lex_state = 64, .external_lex_state = 8}, + [3867] = {.lex_state = 153, .external_lex_state = 8}, + [3868] = {.lex_state = 64, .external_lex_state = 8}, + [3869] = {.lex_state = 64, .external_lex_state = 8}, + [3870] = {.lex_state = 153, .external_lex_state = 8}, + [3871] = {.lex_state = 153, .external_lex_state = 8}, + [3872] = {.lex_state = 153, .external_lex_state = 8}, + [3873] = {.lex_state = 64, .external_lex_state = 8}, + [3874] = {.lex_state = 153, .external_lex_state = 8}, + [3875] = {.lex_state = 153, .external_lex_state = 8}, + [3876] = {.lex_state = 64, .external_lex_state = 8}, + [3877] = {.lex_state = 153, .external_lex_state = 8}, + [3878] = {.lex_state = 64, .external_lex_state = 8}, + [3879] = {.lex_state = 64, .external_lex_state = 8}, + [3880] = {.lex_state = 64, .external_lex_state = 8}, + [3881] = {.lex_state = 153, .external_lex_state = 8}, + [3882] = {.lex_state = 153, .external_lex_state = 8}, + [3883] = {.lex_state = 153, .external_lex_state = 8}, + [3884] = {.lex_state = 64, .external_lex_state = 8}, + [3885] = {.lex_state = 64, .external_lex_state = 8}, + [3886] = {.lex_state = 64, .external_lex_state = 8}, + [3887] = {.lex_state = 64, .external_lex_state = 8}, + [3888] = {.lex_state = 153, .external_lex_state = 8}, + [3889] = {.lex_state = 153, .external_lex_state = 8}, + [3890] = {.lex_state = 153, .external_lex_state = 8}, + [3891] = {.lex_state = 64, .external_lex_state = 8}, + [3892] = {.lex_state = 153, .external_lex_state = 8}, + [3893] = {.lex_state = 153, .external_lex_state = 8}, + [3894] = {.lex_state = 64, .external_lex_state = 8}, + [3895] = {.lex_state = 153, .external_lex_state = 8}, + [3896] = {.lex_state = 153, .external_lex_state = 8}, + [3897] = {.lex_state = 64, .external_lex_state = 8}, + [3898] = {.lex_state = 64, .external_lex_state = 8}, + [3899] = {.lex_state = 64, .external_lex_state = 8}, + [3900] = {.lex_state = 64, .external_lex_state = 8}, + [3901] = {.lex_state = 64, .external_lex_state = 8}, + [3902] = {.lex_state = 64, .external_lex_state = 8}, + [3903] = {.lex_state = 64, .external_lex_state = 8}, + [3904] = {.lex_state = 153, .external_lex_state = 8}, + [3905] = {.lex_state = 49, .external_lex_state = 8}, + [3906] = {.lex_state = 49, .external_lex_state = 8}, + [3907] = {.lex_state = 49, .external_lex_state = 8}, + [3908] = {.lex_state = 49, .external_lex_state = 8}, + [3909] = {.lex_state = 153, .external_lex_state = 8}, + [3910] = {.lex_state = 49, .external_lex_state = 8}, + [3911] = {.lex_state = 49, .external_lex_state = 8}, + [3912] = {.lex_state = 153, .external_lex_state = 8}, + [3913] = {.lex_state = 49, .external_lex_state = 8}, + [3914] = {.lex_state = 49, .external_lex_state = 8}, + [3915] = {.lex_state = 153, .external_lex_state = 8}, + [3916] = {.lex_state = 49, .external_lex_state = 8}, + [3917] = {.lex_state = 153, .external_lex_state = 8}, + [3918] = {.lex_state = 153, .external_lex_state = 8}, + [3919] = {.lex_state = 153, .external_lex_state = 8}, + [3920] = {.lex_state = 153, .external_lex_state = 8}, + [3921] = {.lex_state = 49, .external_lex_state = 8}, + [3922] = {.lex_state = 153, .external_lex_state = 8}, + [3923] = {.lex_state = 153, .external_lex_state = 8}, + [3924] = {.lex_state = 153, .external_lex_state = 8}, + [3925] = {.lex_state = 153, .external_lex_state = 8}, + [3926] = {.lex_state = 153, .external_lex_state = 8}, + [3927] = {.lex_state = 49, .external_lex_state = 8}, + [3928] = {.lex_state = 153, .external_lex_state = 8}, + [3929] = {.lex_state = 153, .external_lex_state = 8}, + [3930] = {.lex_state = 153, .external_lex_state = 8}, + [3931] = {.lex_state = 153, .external_lex_state = 8}, + [3932] = {.lex_state = 153, .external_lex_state = 8}, + [3933] = {.lex_state = 49, .external_lex_state = 8}, + [3934] = {.lex_state = 153, .external_lex_state = 8}, + [3935] = {.lex_state = 153, .external_lex_state = 8}, + [3936] = {.lex_state = 153, .external_lex_state = 8}, + [3937] = {.lex_state = 153, .external_lex_state = 8}, + [3938] = {.lex_state = 49, .external_lex_state = 8}, + [3939] = {.lex_state = 49, .external_lex_state = 8}, + [3940] = {.lex_state = 153, .external_lex_state = 8}, + [3941] = {.lex_state = 153, .external_lex_state = 8}, + [3942] = {.lex_state = 153, .external_lex_state = 8}, + [3943] = {.lex_state = 153, .external_lex_state = 8}, + [3944] = {.lex_state = 153, .external_lex_state = 8}, + [3945] = {.lex_state = 49, .external_lex_state = 8}, + [3946] = {.lex_state = 153, .external_lex_state = 8}, + [3947] = {.lex_state = 49, .external_lex_state = 8}, + [3948] = {.lex_state = 49, .external_lex_state = 8}, + [3949] = {.lex_state = 153, .external_lex_state = 8}, + [3950] = {.lex_state = 49, .external_lex_state = 8}, + [3951] = {.lex_state = 49, .external_lex_state = 8}, + [3952] = {.lex_state = 153, .external_lex_state = 8}, + [3953] = {.lex_state = 49, .external_lex_state = 8}, + [3954] = {.lex_state = 153, .external_lex_state = 8}, + [3955] = {.lex_state = 153, .external_lex_state = 8}, + [3956] = {.lex_state = 153, .external_lex_state = 8}, + [3957] = {.lex_state = 153, .external_lex_state = 8}, + [3958] = {.lex_state = 153, .external_lex_state = 8}, + [3959] = {.lex_state = 153, .external_lex_state = 8}, + [3960] = {.lex_state = 153, .external_lex_state = 8}, + [3961] = {.lex_state = 153, .external_lex_state = 8}, + [3962] = {.lex_state = 153, .external_lex_state = 8}, + [3963] = {.lex_state = 153, .external_lex_state = 8}, + [3964] = {.lex_state = 153, .external_lex_state = 8}, + [3965] = {.lex_state = 153, .external_lex_state = 8}, + [3966] = {.lex_state = 153, .external_lex_state = 8}, + [3967] = {.lex_state = 153, .external_lex_state = 8}, + [3968] = {.lex_state = 25, .external_lex_state = 12}, + [3969] = {.lex_state = 25, .external_lex_state = 12}, + [3970] = {.lex_state = 25, .external_lex_state = 12}, + [3971] = {.lex_state = 25, .external_lex_state = 12}, + [3972] = {.lex_state = 25, .external_lex_state = 12}, + [3973] = {.lex_state = 25, .external_lex_state = 12}, + [3974] = {.lex_state = 25, .external_lex_state = 12}, + [3975] = {.lex_state = 25, .external_lex_state = 12}, + [3976] = {.lex_state = 25, .external_lex_state = 12}, + [3977] = {.lex_state = 25, .external_lex_state = 12}, + [3978] = {.lex_state = 25, .external_lex_state = 12}, + [3979] = {.lex_state = 25, .external_lex_state = 12}, + [3980] = {.lex_state = 25, .external_lex_state = 12}, + [3981] = {.lex_state = 25, .external_lex_state = 12}, + [3982] = {.lex_state = 25, .external_lex_state = 12}, + [3983] = {.lex_state = 25, .external_lex_state = 12}, + [3984] = {.lex_state = 25, .external_lex_state = 12}, + [3985] = {.lex_state = 25, .external_lex_state = 12}, + [3986] = {.lex_state = 25, .external_lex_state = 12}, + [3987] = {.lex_state = 25, .external_lex_state = 12}, + [3988] = {.lex_state = 25, .external_lex_state = 12}, + [3989] = {.lex_state = 25, .external_lex_state = 12}, + [3990] = {.lex_state = 25, .external_lex_state = 12}, + [3991] = {.lex_state = 25, .external_lex_state = 12}, + [3992] = {.lex_state = 25, .external_lex_state = 12}, + [3993] = {.lex_state = 25, .external_lex_state = 12}, + [3994] = {.lex_state = 25, .external_lex_state = 12}, + [3995] = {.lex_state = 25, .external_lex_state = 12}, + [3996] = {.lex_state = 25, .external_lex_state = 12}, + [3997] = {.lex_state = 25, .external_lex_state = 12}, + [3998] = {.lex_state = 25, .external_lex_state = 12}, + [3999] = {.lex_state = 25, .external_lex_state = 12}, + [4000] = {.lex_state = 25, .external_lex_state = 12}, + [4001] = {.lex_state = 25, .external_lex_state = 12}, + [4002] = {.lex_state = 25, .external_lex_state = 12}, + [4003] = {.lex_state = 25, .external_lex_state = 12}, + [4004] = {.lex_state = 49, .external_lex_state = 12}, + [4005] = {.lex_state = 49, .external_lex_state = 12}, + [4006] = {.lex_state = 49, .external_lex_state = 12}, + [4007] = {.lex_state = 49, .external_lex_state = 12}, + [4008] = {.lex_state = 49, .external_lex_state = 12}, + [4009] = {.lex_state = 49, .external_lex_state = 12}, + [4010] = {.lex_state = 49, .external_lex_state = 12}, + [4011] = {.lex_state = 49, .external_lex_state = 12}, + [4012] = {.lex_state = 49, .external_lex_state = 12}, + [4013] = {.lex_state = 49, .external_lex_state = 12}, + [4014] = {.lex_state = 49, .external_lex_state = 12}, + [4015] = {.lex_state = 49, .external_lex_state = 12}, + [4016] = {.lex_state = 49, .external_lex_state = 12}, + [4017] = {.lex_state = 49, .external_lex_state = 12}, + [4018] = {.lex_state = 49, .external_lex_state = 12}, + [4019] = {.lex_state = 49, .external_lex_state = 12}, + [4020] = {.lex_state = 49, .external_lex_state = 12}, + [4021] = {.lex_state = 49, .external_lex_state = 12}, + [4022] = {.lex_state = 49, .external_lex_state = 12}, + [4023] = {.lex_state = 49, .external_lex_state = 12}, + [4024] = {.lex_state = 49, .external_lex_state = 12}, + [4025] = {.lex_state = 49, .external_lex_state = 12}, + [4026] = {.lex_state = 49, .external_lex_state = 12}, + [4027] = {.lex_state = 49, .external_lex_state = 12}, + [4028] = {.lex_state = 49, .external_lex_state = 12}, + [4029] = {.lex_state = 49, .external_lex_state = 12}, + [4030] = {.lex_state = 49, .external_lex_state = 12}, + [4031] = {.lex_state = 49, .external_lex_state = 12}, + [4032] = {.lex_state = 49, .external_lex_state = 12}, + [4033] = {.lex_state = 49, .external_lex_state = 12}, + [4034] = {.lex_state = 49, .external_lex_state = 12}, + [4035] = {.lex_state = 49, .external_lex_state = 12}, + [4036] = {.lex_state = 49, .external_lex_state = 12}, + [4037] = {.lex_state = 49, .external_lex_state = 12}, + [4038] = {.lex_state = 49, .external_lex_state = 12}, + [4039] = {.lex_state = 49, .external_lex_state = 12}, + [4040] = {.lex_state = 49, .external_lex_state = 12}, + [4041] = {.lex_state = 49, .external_lex_state = 12}, + [4042] = {.lex_state = 49, .external_lex_state = 12}, + [4043] = {.lex_state = 49, .external_lex_state = 12}, + [4044] = {.lex_state = 49, .external_lex_state = 12}, + [4045] = {.lex_state = 49, .external_lex_state = 12}, + [4046] = {.lex_state = 49, .external_lex_state = 12}, + [4047] = {.lex_state = 49, .external_lex_state = 12}, + [4048] = {.lex_state = 49, .external_lex_state = 12}, + [4049] = {.lex_state = 49, .external_lex_state = 12}, + [4050] = {.lex_state = 49, .external_lex_state = 12}, + [4051] = {.lex_state = 49, .external_lex_state = 12}, + [4052] = {.lex_state = 49, .external_lex_state = 12}, + [4053] = {.lex_state = 49, .external_lex_state = 12}, + [4054] = {.lex_state = 49, .external_lex_state = 12}, + [4055] = {.lex_state = 49, .external_lex_state = 12}, + [4056] = {.lex_state = 49, .external_lex_state = 12}, + [4057] = {.lex_state = 49, .external_lex_state = 12}, + [4058] = {.lex_state = 49, .external_lex_state = 12}, + [4059] = {.lex_state = 49, .external_lex_state = 12}, + [4060] = {.lex_state = 49, .external_lex_state = 12}, + [4061] = {.lex_state = 49, .external_lex_state = 12}, + [4062] = {.lex_state = 49, .external_lex_state = 12}, + [4063] = {.lex_state = 49, .external_lex_state = 12}, + [4064] = {.lex_state = 49, .external_lex_state = 12}, + [4065] = {.lex_state = 49, .external_lex_state = 12}, + [4066] = {.lex_state = 49, .external_lex_state = 12}, + [4067] = {.lex_state = 49, .external_lex_state = 12}, + [4068] = {.lex_state = 49, .external_lex_state = 12}, + [4069] = {.lex_state = 49, .external_lex_state = 12}, + [4070] = {.lex_state = 49, .external_lex_state = 12}, + [4071] = {.lex_state = 49, .external_lex_state = 12}, + [4072] = {.lex_state = 49, .external_lex_state = 12}, + [4073] = {.lex_state = 49, .external_lex_state = 12}, + [4074] = {.lex_state = 49, .external_lex_state = 12}, + [4075] = {.lex_state = 49, .external_lex_state = 12}, + [4076] = {.lex_state = 49, .external_lex_state = 12}, + [4077] = {.lex_state = 49, .external_lex_state = 12}, + [4078] = {.lex_state = 49, .external_lex_state = 12}, + [4079] = {.lex_state = 49, .external_lex_state = 12}, + [4080] = {.lex_state = 49, .external_lex_state = 12}, + [4081] = {.lex_state = 49, .external_lex_state = 12}, + [4082] = {.lex_state = 49, .external_lex_state = 12}, + [4083] = {.lex_state = 49, .external_lex_state = 12}, + [4084] = {.lex_state = 49, .external_lex_state = 12}, + [4085] = {.lex_state = 49, .external_lex_state = 12}, + [4086] = {.lex_state = 49, .external_lex_state = 12}, + [4087] = {.lex_state = 49, .external_lex_state = 12}, + [4088] = {.lex_state = 49, .external_lex_state = 12}, + [4089] = {.lex_state = 49, .external_lex_state = 12}, + [4090] = {.lex_state = 49, .external_lex_state = 12}, + [4091] = {.lex_state = 49, .external_lex_state = 12}, + [4092] = {.lex_state = 49, .external_lex_state = 12}, + [4093] = {.lex_state = 49, .external_lex_state = 12}, + [4094] = {.lex_state = 49, .external_lex_state = 12}, + [4095] = {.lex_state = 49, .external_lex_state = 12}, + [4096] = {.lex_state = 49, .external_lex_state = 12}, + [4097] = {.lex_state = 49, .external_lex_state = 12}, + [4098] = {.lex_state = 49, .external_lex_state = 12}, + [4099] = {.lex_state = 49, .external_lex_state = 12}, + [4100] = {.lex_state = 49, .external_lex_state = 12}, + [4101] = {.lex_state = 49, .external_lex_state = 12}, + [4102] = {.lex_state = 49, .external_lex_state = 12}, + [4103] = {.lex_state = 49, .external_lex_state = 12}, + [4104] = {.lex_state = 49, .external_lex_state = 12}, + [4105] = {.lex_state = 49, .external_lex_state = 12}, + [4106] = {.lex_state = 49, .external_lex_state = 12}, + [4107] = {.lex_state = 49, .external_lex_state = 12}, + [4108] = {.lex_state = 49, .external_lex_state = 12}, + [4109] = {.lex_state = 49, .external_lex_state = 12}, + [4110] = {.lex_state = 49, .external_lex_state = 12}, + [4111] = {.lex_state = 49, .external_lex_state = 12}, + [4112] = {.lex_state = 49, .external_lex_state = 12}, + [4113] = {.lex_state = 49, .external_lex_state = 12}, + [4114] = {.lex_state = 49, .external_lex_state = 12}, + [4115] = {.lex_state = 49, .external_lex_state = 12}, + [4116] = {.lex_state = 49, .external_lex_state = 12}, + [4117] = {.lex_state = 49, .external_lex_state = 12}, + [4118] = {.lex_state = 49, .external_lex_state = 12}, + [4119] = {.lex_state = 49, .external_lex_state = 12}, + [4120] = {.lex_state = 49, .external_lex_state = 12}, + [4121] = {.lex_state = 49, .external_lex_state = 12}, + [4122] = {.lex_state = 49, .external_lex_state = 12}, + [4123] = {.lex_state = 49, .external_lex_state = 12}, + [4124] = {.lex_state = 49, .external_lex_state = 12}, + [4125] = {.lex_state = 49, .external_lex_state = 12}, + [4126] = {.lex_state = 49, .external_lex_state = 12}, + [4127] = {.lex_state = 49, .external_lex_state = 12}, + [4128] = {.lex_state = 49, .external_lex_state = 12}, + [4129] = {.lex_state = 49, .external_lex_state = 12}, + [4130] = {.lex_state = 49, .external_lex_state = 12}, + [4131] = {.lex_state = 49, .external_lex_state = 12}, + [4132] = {.lex_state = 49, .external_lex_state = 12}, + [4133] = {.lex_state = 49, .external_lex_state = 12}, + [4134] = {.lex_state = 49, .external_lex_state = 12}, + [4135] = {.lex_state = 49, .external_lex_state = 12}, + [4136] = {.lex_state = 49, .external_lex_state = 12}, + [4137] = {.lex_state = 49, .external_lex_state = 12}, + [4138] = {.lex_state = 49, .external_lex_state = 12}, + [4139] = {.lex_state = 49, .external_lex_state = 12}, + [4140] = {.lex_state = 49, .external_lex_state = 12}, + [4141] = {.lex_state = 49, .external_lex_state = 12}, + [4142] = {.lex_state = 49, .external_lex_state = 12}, + [4143] = {.lex_state = 49, .external_lex_state = 12}, + [4144] = {.lex_state = 49, .external_lex_state = 12}, + [4145] = {.lex_state = 49, .external_lex_state = 12}, + [4146] = {.lex_state = 49, .external_lex_state = 12}, + [4147] = {.lex_state = 49, .external_lex_state = 12}, + [4148] = {.lex_state = 49, .external_lex_state = 12}, + [4149] = {.lex_state = 49, .external_lex_state = 12}, + [4150] = {.lex_state = 49, .external_lex_state = 12}, + [4151] = {.lex_state = 49, .external_lex_state = 12}, + [4152] = {.lex_state = 49, .external_lex_state = 12}, + [4153] = {.lex_state = 49, .external_lex_state = 12}, + [4154] = {.lex_state = 49, .external_lex_state = 12}, + [4155] = {.lex_state = 49, .external_lex_state = 12}, + [4156] = {.lex_state = 49, .external_lex_state = 12}, + [4157] = {.lex_state = 49, .external_lex_state = 12}, + [4158] = {.lex_state = 49, .external_lex_state = 12}, + [4159] = {.lex_state = 49, .external_lex_state = 12}, + [4160] = {.lex_state = 49, .external_lex_state = 12}, + [4161] = {.lex_state = 49, .external_lex_state = 12}, + [4162] = {.lex_state = 49, .external_lex_state = 12}, + [4163] = {.lex_state = 49, .external_lex_state = 12}, + [4164] = {.lex_state = 49, .external_lex_state = 12}, + [4165] = {.lex_state = 49, .external_lex_state = 12}, + [4166] = {.lex_state = 25, .external_lex_state = 12}, + [4167] = {.lex_state = 25, .external_lex_state = 12}, + [4168] = {.lex_state = 25, .external_lex_state = 12}, + [4169] = {.lex_state = 25, .external_lex_state = 12}, + [4170] = {.lex_state = 25, .external_lex_state = 12}, + [4171] = {.lex_state = 25, .external_lex_state = 12}, + [4172] = {.lex_state = 25, .external_lex_state = 12}, + [4173] = {.lex_state = 49, .external_lex_state = 12}, + [4174] = {.lex_state = 25, .external_lex_state = 12}, + [4175] = {.lex_state = 25, .external_lex_state = 12}, + [4176] = {.lex_state = 49, .external_lex_state = 12}, + [4177] = {.lex_state = 25, .external_lex_state = 12}, + [4178] = {.lex_state = 25, .external_lex_state = 12}, + [4179] = {.lex_state = 25, .external_lex_state = 12}, + [4180] = {.lex_state = 25, .external_lex_state = 12}, + [4181] = {.lex_state = 25, .external_lex_state = 12}, + [4182] = {.lex_state = 25, .external_lex_state = 12}, + [4183] = {.lex_state = 25, .external_lex_state = 12}, + [4184] = {.lex_state = 25, .external_lex_state = 12}, + [4185] = {.lex_state = 25, .external_lex_state = 12}, + [4186] = {.lex_state = 25, .external_lex_state = 12}, + [4187] = {.lex_state = 25, .external_lex_state = 12}, + [4188] = {.lex_state = 25, .external_lex_state = 12}, + [4189] = {.lex_state = 25, .external_lex_state = 12}, + [4190] = {.lex_state = 25, .external_lex_state = 12}, + [4191] = {.lex_state = 25, .external_lex_state = 12}, + [4192] = {.lex_state = 25, .external_lex_state = 12}, + [4193] = {.lex_state = 25, .external_lex_state = 12}, + [4194] = {.lex_state = 25, .external_lex_state = 12}, + [4195] = {.lex_state = 49, .external_lex_state = 12}, + [4196] = {.lex_state = 49, .external_lex_state = 12}, + [4197] = {.lex_state = 26, .external_lex_state = 12}, + [4198] = {.lex_state = 49, .external_lex_state = 12}, + [4199] = {.lex_state = 49, .external_lex_state = 12}, + [4200] = {.lex_state = 32, .external_lex_state = 14}, + [4201] = {.lex_state = 32, .external_lex_state = 15}, + [4202] = {.lex_state = 32, .external_lex_state = 16}, + [4203] = {.lex_state = 32, .external_lex_state = 17}, + [4204] = {.lex_state = 34, .external_lex_state = 18}, + [4205] = {.lex_state = 34, .external_lex_state = 19}, + [4206] = {.lex_state = 32, .external_lex_state = 16}, + [4207] = {.lex_state = 32, .external_lex_state = 17}, + [4208] = {.lex_state = 34, .external_lex_state = 18}, + [4209] = {.lex_state = 34, .external_lex_state = 19}, + [4210] = {.lex_state = 32, .external_lex_state = 16}, + [4211] = {.lex_state = 32, .external_lex_state = 17}, + [4212] = {.lex_state = 34, .external_lex_state = 18}, + [4213] = {.lex_state = 32, .external_lex_state = 15}, + [4214] = {.lex_state = 32, .external_lex_state = 20}, + [4215] = {.lex_state = 32, .external_lex_state = 14}, + [4216] = {.lex_state = 32, .external_lex_state = 21}, + [4217] = {.lex_state = 32, .external_lex_state = 22}, + [4218] = {.lex_state = 32, .external_lex_state = 23}, + [4219] = {.lex_state = 34, .external_lex_state = 19}, + [4220] = {.lex_state = 32, .external_lex_state = 23}, + [4221] = {.lex_state = 32, .external_lex_state = 22}, + [4222] = {.lex_state = 32, .external_lex_state = 21}, + [4223] = {.lex_state = 32, .external_lex_state = 16}, + [4224] = {.lex_state = 32, .external_lex_state = 14}, + [4225] = {.lex_state = 32, .external_lex_state = 17}, + [4226] = {.lex_state = 32, .external_lex_state = 20}, + [4227] = {.lex_state = 34, .external_lex_state = 18}, + [4228] = {.lex_state = 32, .external_lex_state = 15}, + [4229] = {.lex_state = 34, .external_lex_state = 19}, + [4230] = {.lex_state = 32, .external_lex_state = 23}, + [4231] = {.lex_state = 32, .external_lex_state = 16}, + [4232] = {.lex_state = 32, .external_lex_state = 17}, + [4233] = {.lex_state = 34, .external_lex_state = 18}, + [4234] = {.lex_state = 34, .external_lex_state = 19}, + [4235] = {.lex_state = 32, .external_lex_state = 22}, + [4236] = {.lex_state = 32, .external_lex_state = 21}, + [4237] = {.lex_state = 32, .external_lex_state = 14}, + [4238] = {.lex_state = 32, .external_lex_state = 20}, + [4239] = {.lex_state = 32, .external_lex_state = 15}, + [4240] = {.lex_state = 32, .external_lex_state = 20}, + [4241] = {.lex_state = 32, .external_lex_state = 14}, + [4242] = {.lex_state = 32, .external_lex_state = 21}, + [4243] = {.lex_state = 32, .external_lex_state = 22}, + [4244] = {.lex_state = 32, .external_lex_state = 23}, + [4245] = {.lex_state = 32, .external_lex_state = 15}, + [4246] = {.lex_state = 32, .external_lex_state = 16}, + [4247] = {.lex_state = 34, .external_lex_state = 18}, + [4248] = {.lex_state = 32, .external_lex_state = 16}, + [4249] = {.lex_state = 32, .external_lex_state = 17}, + [4250] = {.lex_state = 34, .external_lex_state = 18}, + [4251] = {.lex_state = 34, .external_lex_state = 19}, + [4252] = {.lex_state = 34, .external_lex_state = 19}, + [4253] = {.lex_state = 32, .external_lex_state = 16}, + [4254] = {.lex_state = 32, .external_lex_state = 16}, + [4255] = {.lex_state = 32, .external_lex_state = 17}, + [4256] = {.lex_state = 32, .external_lex_state = 17}, + [4257] = {.lex_state = 34, .external_lex_state = 18}, + [4258] = {.lex_state = 34, .external_lex_state = 18}, + [4259] = {.lex_state = 34, .external_lex_state = 19}, + [4260] = {.lex_state = 34, .external_lex_state = 19}, + [4261] = {.lex_state = 32, .external_lex_state = 23}, + [4262] = {.lex_state = 32, .external_lex_state = 22}, + [4263] = {.lex_state = 32, .external_lex_state = 23}, + [4264] = {.lex_state = 32, .external_lex_state = 22}, + [4265] = {.lex_state = 34, .external_lex_state = 19}, + [4266] = {.lex_state = 34, .external_lex_state = 18}, + [4267] = {.lex_state = 32, .external_lex_state = 21}, + [4268] = {.lex_state = 32, .external_lex_state = 17}, + [4269] = {.lex_state = 32, .external_lex_state = 16}, + [4270] = {.lex_state = 32, .external_lex_state = 23}, + [4271] = {.lex_state = 32, .external_lex_state = 22}, + [4272] = {.lex_state = 32, .external_lex_state = 21}, + [4273] = {.lex_state = 32, .external_lex_state = 14}, + [4274] = {.lex_state = 32, .external_lex_state = 20}, + [4275] = {.lex_state = 32, .external_lex_state = 15}, + [4276] = {.lex_state = 32, .external_lex_state = 14}, + [4277] = {.lex_state = 32, .external_lex_state = 20}, + [4278] = {.lex_state = 32, .external_lex_state = 15}, + [4279] = {.lex_state = 32, .external_lex_state = 21}, + [4280] = {.lex_state = 32, .external_lex_state = 14}, + [4281] = {.lex_state = 32, .external_lex_state = 20}, + [4282] = {.lex_state = 32, .external_lex_state = 15}, + [4283] = {.lex_state = 32, .external_lex_state = 23}, + [4284] = {.lex_state = 32, .external_lex_state = 22}, + [4285] = {.lex_state = 32, .external_lex_state = 21}, + [4286] = {.lex_state = 32, .external_lex_state = 14}, + [4287] = {.lex_state = 32, .external_lex_state = 20}, + [4288] = {.lex_state = 32, .external_lex_state = 15}, + [4289] = {.lex_state = 32, .external_lex_state = 17}, + [4290] = {.lex_state = 34, .external_lex_state = 19}, + [4291] = {.lex_state = 34, .external_lex_state = 18}, + [4292] = {.lex_state = 32, .external_lex_state = 17}, + [4293] = {.lex_state = 32, .external_lex_state = 16}, + [4294] = {.lex_state = 32, .external_lex_state = 16}, + [4295] = {.lex_state = 32, .external_lex_state = 17}, + [4296] = {.lex_state = 34, .external_lex_state = 18}, + [4297] = {.lex_state = 34, .external_lex_state = 19}, + [4298] = {.lex_state = 32, .external_lex_state = 23}, + [4299] = {.lex_state = 32, .external_lex_state = 22}, + [4300] = {.lex_state = 32, .external_lex_state = 21}, + [4301] = {.lex_state = 32, .external_lex_state = 14}, + [4302] = {.lex_state = 32, .external_lex_state = 20}, + [4303] = {.lex_state = 32, .external_lex_state = 15}, + [4304] = {.lex_state = 32, .external_lex_state = 16}, + [4305] = {.lex_state = 32, .external_lex_state = 17}, + [4306] = {.lex_state = 34, .external_lex_state = 18}, + [4307] = {.lex_state = 34, .external_lex_state = 19}, + [4308] = {.lex_state = 32, .external_lex_state = 23}, + [4309] = {.lex_state = 32, .external_lex_state = 22}, + [4310] = {.lex_state = 32, .external_lex_state = 21}, + [4311] = {.lex_state = 32, .external_lex_state = 14}, + [4312] = {.lex_state = 32, .external_lex_state = 20}, + [4313] = {.lex_state = 32, .external_lex_state = 15}, + [4314] = {.lex_state = 32, .external_lex_state = 23}, + [4315] = {.lex_state = 32, .external_lex_state = 22}, + [4316] = {.lex_state = 32, .external_lex_state = 21}, + [4317] = {.lex_state = 32, .external_lex_state = 14}, + [4318] = {.lex_state = 32, .external_lex_state = 23}, + [4319] = {.lex_state = 32, .external_lex_state = 20}, + [4320] = {.lex_state = 32, .external_lex_state = 22}, + [4321] = {.lex_state = 32, .external_lex_state = 21}, + [4322] = {.lex_state = 32, .external_lex_state = 14}, + [4323] = {.lex_state = 32, .external_lex_state = 20}, + [4324] = {.lex_state = 32, .external_lex_state = 15}, + [4325] = {.lex_state = 32, .external_lex_state = 15}, + [4326] = {.lex_state = 32, .external_lex_state = 20}, + [4327] = {.lex_state = 32, .external_lex_state = 14}, + [4328] = {.lex_state = 32, .external_lex_state = 21}, + [4329] = {.lex_state = 32, .external_lex_state = 22}, + [4330] = {.lex_state = 32, .external_lex_state = 23}, + [4331] = {.lex_state = 32, .external_lex_state = 16}, + [4332] = {.lex_state = 32, .external_lex_state = 17}, + [4333] = {.lex_state = 32, .external_lex_state = 16}, + [4334] = {.lex_state = 34, .external_lex_state = 18}, + [4335] = {.lex_state = 32, .external_lex_state = 16}, + [4336] = {.lex_state = 32, .external_lex_state = 17}, + [4337] = {.lex_state = 34, .external_lex_state = 18}, + [4338] = {.lex_state = 34, .external_lex_state = 19}, + [4339] = {.lex_state = 34, .external_lex_state = 19}, + [4340] = {.lex_state = 32, .external_lex_state = 16}, + [4341] = {.lex_state = 32, .external_lex_state = 17}, + [4342] = {.lex_state = 34, .external_lex_state = 18}, + [4343] = {.lex_state = 34, .external_lex_state = 19}, + [4344] = {.lex_state = 32, .external_lex_state = 23}, + [4345] = {.lex_state = 32, .external_lex_state = 22}, + [4346] = {.lex_state = 32, .external_lex_state = 21}, + [4347] = {.lex_state = 32, .external_lex_state = 14}, + [4348] = {.lex_state = 32, .external_lex_state = 20}, + [4349] = {.lex_state = 32, .external_lex_state = 15}, + [4350] = {.lex_state = 32, .external_lex_state = 23}, + [4351] = {.lex_state = 32, .external_lex_state = 23}, + [4352] = {.lex_state = 32, .external_lex_state = 16}, + [4353] = {.lex_state = 32, .external_lex_state = 17}, + [4354] = {.lex_state = 34, .external_lex_state = 18}, + [4355] = {.lex_state = 34, .external_lex_state = 19}, + [4356] = {.lex_state = 32, .external_lex_state = 22}, + [4357] = {.lex_state = 32, .external_lex_state = 21}, + [4358] = {.lex_state = 32, .external_lex_state = 15}, + [4359] = {.lex_state = 32, .external_lex_state = 20}, + [4360] = {.lex_state = 32, .external_lex_state = 22}, + [4361] = {.lex_state = 32, .external_lex_state = 14}, + [4362] = {.lex_state = 32, .external_lex_state = 14}, + [4363] = {.lex_state = 32, .external_lex_state = 20}, + [4364] = {.lex_state = 32, .external_lex_state = 21}, + [4365] = {.lex_state = 32, .external_lex_state = 22}, + [4366] = {.lex_state = 32, .external_lex_state = 15}, + [4367] = {.lex_state = 32, .external_lex_state = 23}, + [4368] = {.lex_state = 32, .external_lex_state = 21}, + [4369] = {.lex_state = 32, .external_lex_state = 14}, + [4370] = {.lex_state = 32, .external_lex_state = 20}, + [4371] = {.lex_state = 32, .external_lex_state = 16}, + [4372] = {.lex_state = 32, .external_lex_state = 15}, + [4373] = {.lex_state = 32, .external_lex_state = 23}, + [4374] = {.lex_state = 32, .external_lex_state = 22}, + [4375] = {.lex_state = 32, .external_lex_state = 21}, + [4376] = {.lex_state = 32, .external_lex_state = 14}, + [4377] = {.lex_state = 32, .external_lex_state = 20}, + [4378] = {.lex_state = 32, .external_lex_state = 15}, + [4379] = {.lex_state = 32, .external_lex_state = 17}, + [4380] = {.lex_state = 34, .external_lex_state = 18}, + [4381] = {.lex_state = 34, .external_lex_state = 19}, + [4382] = {.lex_state = 32, .external_lex_state = 16}, + [4383] = {.lex_state = 32, .external_lex_state = 17}, + [4384] = {.lex_state = 34, .external_lex_state = 18}, + [4385] = {.lex_state = 34, .external_lex_state = 19}, + [4386] = {.lex_state = 32, .external_lex_state = 17}, + [4387] = {.lex_state = 32, .external_lex_state = 16}, + [4388] = {.lex_state = 32, .external_lex_state = 17}, + [4389] = {.lex_state = 32, .external_lex_state = 16}, + [4390] = {.lex_state = 32, .external_lex_state = 17}, + [4391] = {.lex_state = 32, .external_lex_state = 16}, + [4392] = {.lex_state = 32, .external_lex_state = 17}, + [4393] = {.lex_state = 32, .external_lex_state = 16}, + [4394] = {.lex_state = 32, .external_lex_state = 17}, + [4395] = {.lex_state = 32, .external_lex_state = 16}, + [4396] = {.lex_state = 32, .external_lex_state = 17}, + [4397] = {.lex_state = 32, .external_lex_state = 16}, + [4398] = {.lex_state = 32, .external_lex_state = 17}, + [4399] = {.lex_state = 32, .external_lex_state = 16}, + [4400] = {.lex_state = 32, .external_lex_state = 17}, + [4401] = {.lex_state = 32, .external_lex_state = 23}, + [4402] = {.lex_state = 32, .external_lex_state = 22}, + [4403] = {.lex_state = 32, .external_lex_state = 21}, + [4404] = {.lex_state = 32, .external_lex_state = 14}, + [4405] = {.lex_state = 32, .external_lex_state = 20}, + [4406] = {.lex_state = 32, .external_lex_state = 15}, + [4407] = {.lex_state = 32, .external_lex_state = 16}, + [4408] = {.lex_state = 32, .external_lex_state = 17}, + [4409] = {.lex_state = 32, .external_lex_state = 16}, + [4410] = {.lex_state = 32, .external_lex_state = 17}, + [4411] = {.lex_state = 32, .external_lex_state = 16}, + [4412] = {.lex_state = 32, .external_lex_state = 17}, + [4413] = {.lex_state = 32, .external_lex_state = 16}, + [4414] = {.lex_state = 32, .external_lex_state = 17}, + [4415] = {.lex_state = 32, .external_lex_state = 16}, + [4416] = {.lex_state = 32, .external_lex_state = 17}, + [4417] = {.lex_state = 32, .external_lex_state = 16}, + [4418] = {.lex_state = 32, .external_lex_state = 17}, + [4419] = {.lex_state = 32, .external_lex_state = 16}, + [4420] = {.lex_state = 34, .external_lex_state = 19}, + [4421] = {.lex_state = 32, .external_lex_state = 17}, + [4422] = {.lex_state = 34, .external_lex_state = 18}, + [4423] = {.lex_state = 32, .external_lex_state = 17}, + [4424] = {.lex_state = 32, .external_lex_state = 16}, + [4425] = {.lex_state = 32, .external_lex_state = 16}, + [4426] = {.lex_state = 32, .external_lex_state = 17}, + [4427] = {.lex_state = 32, .external_lex_state = 16}, + [4428] = {.lex_state = 32, .external_lex_state = 17}, + [4429] = {.lex_state = 32, .external_lex_state = 16}, + [4430] = {.lex_state = 32, .external_lex_state = 17}, + [4431] = {.lex_state = 32, .external_lex_state = 16}, + [4432] = {.lex_state = 34, .external_lex_state = 19}, + [4433] = {.lex_state = 34, .external_lex_state = 18}, + [4434] = {.lex_state = 32, .external_lex_state = 17}, + [4435] = {.lex_state = 32, .external_lex_state = 23}, + [4436] = {.lex_state = 32, .external_lex_state = 17}, + [4437] = {.lex_state = 32, .external_lex_state = 16}, + [4438] = {.lex_state = 32, .external_lex_state = 17}, + [4439] = {.lex_state = 34, .external_lex_state = 18}, + [4440] = {.lex_state = 34, .external_lex_state = 19}, + [4441] = {.lex_state = 32, .external_lex_state = 16}, + [4442] = {.lex_state = 32, .external_lex_state = 17}, + [4443] = {.lex_state = 32, .external_lex_state = 16}, + [4444] = {.lex_state = 32, .external_lex_state = 17}, + [4445] = {.lex_state = 32, .external_lex_state = 16}, + [4446] = {.lex_state = 32, .external_lex_state = 17}, + [4447] = {.lex_state = 32, .external_lex_state = 16}, + [4448] = {.lex_state = 32, .external_lex_state = 17}, + [4449] = {.lex_state = 32, .external_lex_state = 16}, + [4450] = {.lex_state = 32, .external_lex_state = 17}, + [4451] = {.lex_state = 32, .external_lex_state = 16}, + [4452] = {.lex_state = 32, .external_lex_state = 17}, + [4453] = {.lex_state = 32, .external_lex_state = 16}, + [4454] = {.lex_state = 32, .external_lex_state = 16}, + [4455] = {.lex_state = 32, .external_lex_state = 17}, + [4456] = {.lex_state = 34, .external_lex_state = 18}, + [4457] = {.lex_state = 34, .external_lex_state = 19}, + [4458] = {.lex_state = 32, .external_lex_state = 17}, + [4459] = {.lex_state = 32, .external_lex_state = 16}, + [4460] = {.lex_state = 32, .external_lex_state = 15}, + [4461] = {.lex_state = 32, .external_lex_state = 20}, + [4462] = {.lex_state = 32, .external_lex_state = 17}, + [4463] = {.lex_state = 32, .external_lex_state = 16}, + [4464] = {.lex_state = 32, .external_lex_state = 14}, + [4465] = {.lex_state = 32, .external_lex_state = 17}, + [4466] = {.lex_state = 32, .external_lex_state = 21}, + [4467] = {.lex_state = 32, .external_lex_state = 22}, + [4468] = {.lex_state = 32, .external_lex_state = 16}, + [4469] = {.lex_state = 32, .external_lex_state = 23}, + [4470] = {.lex_state = 32, .external_lex_state = 17}, + [4471] = {.lex_state = 32, .external_lex_state = 16}, + [4472] = {.lex_state = 32, .external_lex_state = 17}, + [4473] = {.lex_state = 32, .external_lex_state = 16}, + [4474] = {.lex_state = 32, .external_lex_state = 17}, + [4475] = {.lex_state = 32, .external_lex_state = 23}, + [4476] = {.lex_state = 32, .external_lex_state = 22}, + [4477] = {.lex_state = 32, .external_lex_state = 21}, + [4478] = {.lex_state = 32, .external_lex_state = 14}, + [4479] = {.lex_state = 32, .external_lex_state = 20}, + [4480] = {.lex_state = 32, .external_lex_state = 15}, + [4481] = {.lex_state = 32, .external_lex_state = 16}, + [4482] = {.lex_state = 32, .external_lex_state = 17}, + [4483] = {.lex_state = 32, .external_lex_state = 16}, + [4484] = {.lex_state = 32, .external_lex_state = 17}, + [4485] = {.lex_state = 32, .external_lex_state = 16}, + [4486] = {.lex_state = 32, .external_lex_state = 17}, + [4487] = {.lex_state = 32, .external_lex_state = 16}, + [4488] = {.lex_state = 34, .external_lex_state = 19}, + [4489] = {.lex_state = 34, .external_lex_state = 18}, + [4490] = {.lex_state = 32, .external_lex_state = 17}, + [4491] = {.lex_state = 32, .external_lex_state = 16}, + [4492] = {.lex_state = 34, .external_lex_state = 19}, + [4493] = {.lex_state = 34, .external_lex_state = 18}, + [4494] = {.lex_state = 32, .external_lex_state = 17}, + [4495] = {.lex_state = 32, .external_lex_state = 16}, + [4496] = {.lex_state = 34, .external_lex_state = 19}, + [4497] = {.lex_state = 34, .external_lex_state = 18}, + [4498] = {.lex_state = 32, .external_lex_state = 17}, + [4499] = {.lex_state = 32, .external_lex_state = 16}, + [4500] = {.lex_state = 34, .external_lex_state = 19}, + [4501] = {.lex_state = 34, .external_lex_state = 18}, + [4502] = {.lex_state = 32, .external_lex_state = 23}, + [4503] = {.lex_state = 32, .external_lex_state = 22}, + [4504] = {.lex_state = 32, .external_lex_state = 21}, + [4505] = {.lex_state = 32, .external_lex_state = 14}, + [4506] = {.lex_state = 32, .external_lex_state = 20}, + [4507] = {.lex_state = 32, .external_lex_state = 15}, + [4508] = {.lex_state = 32, .external_lex_state = 17}, + [4509] = {.lex_state = 32, .external_lex_state = 16}, + [4510] = {.lex_state = 34, .external_lex_state = 19}, + [4511] = {.lex_state = 34, .external_lex_state = 18}, + [4512] = {.lex_state = 32, .external_lex_state = 17}, + [4513] = {.lex_state = 32, .external_lex_state = 16}, + [4514] = {.lex_state = 34, .external_lex_state = 19}, + [4515] = {.lex_state = 34, .external_lex_state = 18}, + [4516] = {.lex_state = 32, .external_lex_state = 17}, + [4517] = {.lex_state = 32, .external_lex_state = 16}, + [4518] = {.lex_state = 34, .external_lex_state = 19}, + [4519] = {.lex_state = 34, .external_lex_state = 18}, + [4520] = {.lex_state = 32, .external_lex_state = 17}, + [4521] = {.lex_state = 32, .external_lex_state = 16}, + [4522] = {.lex_state = 34, .external_lex_state = 19}, + [4523] = {.lex_state = 34, .external_lex_state = 18}, + [4524] = {.lex_state = 32, .external_lex_state = 17}, + [4525] = {.lex_state = 32, .external_lex_state = 16}, + [4526] = {.lex_state = 34, .external_lex_state = 19}, + [4527] = {.lex_state = 34, .external_lex_state = 18}, + [4528] = {.lex_state = 32, .external_lex_state = 15}, + [4529] = {.lex_state = 32, .external_lex_state = 20}, + [4530] = {.lex_state = 32, .external_lex_state = 14}, + [4531] = {.lex_state = 32, .external_lex_state = 21}, + [4532] = {.lex_state = 32, .external_lex_state = 22}, + [4533] = {.lex_state = 32, .external_lex_state = 17}, + [4534] = {.lex_state = 32, .external_lex_state = 16}, + [4535] = {.lex_state = 32, .external_lex_state = 16}, + [4536] = {.lex_state = 32, .external_lex_state = 17}, + [4537] = {.lex_state = 34, .external_lex_state = 18}, + [4538] = {.lex_state = 34, .external_lex_state = 19}, + [4539] = {.lex_state = 34, .external_lex_state = 19}, + [4540] = {.lex_state = 34, .external_lex_state = 18}, + [4541] = {.lex_state = 32, .external_lex_state = 17}, + [4542] = {.lex_state = 32, .external_lex_state = 16}, + [4543] = {.lex_state = 34, .external_lex_state = 19}, + [4544] = {.lex_state = 32, .external_lex_state = 16}, + [4545] = {.lex_state = 32, .external_lex_state = 17}, + [4546] = {.lex_state = 34, .external_lex_state = 18}, + [4547] = {.lex_state = 34, .external_lex_state = 19}, + [4548] = {.lex_state = 34, .external_lex_state = 18}, + [4549] = {.lex_state = 32, .external_lex_state = 17}, + [4550] = {.lex_state = 32, .external_lex_state = 16}, + [4551] = {.lex_state = 32, .external_lex_state = 23}, + [4552] = {.lex_state = 32, .external_lex_state = 22}, + [4553] = {.lex_state = 32, .external_lex_state = 21}, + [4554] = {.lex_state = 32, .external_lex_state = 14}, + [4555] = {.lex_state = 32, .external_lex_state = 20}, + [4556] = {.lex_state = 32, .external_lex_state = 15}, + [4557] = {.lex_state = 34, .external_lex_state = 19}, + [4558] = {.lex_state = 34, .external_lex_state = 18}, + [4559] = {.lex_state = 32, .external_lex_state = 17}, + [4560] = {.lex_state = 32, .external_lex_state = 16}, + [4561] = {.lex_state = 34, .external_lex_state = 19}, + [4562] = {.lex_state = 34, .external_lex_state = 18}, + [4563] = {.lex_state = 32, .external_lex_state = 17}, + [4564] = {.lex_state = 32, .external_lex_state = 16}, + [4565] = {.lex_state = 34, .external_lex_state = 19}, + [4566] = {.lex_state = 34, .external_lex_state = 18}, + [4567] = {.lex_state = 32, .external_lex_state = 23}, + [4568] = {.lex_state = 32, .external_lex_state = 22}, + [4569] = {.lex_state = 32, .external_lex_state = 21}, + [4570] = {.lex_state = 32, .external_lex_state = 14}, + [4571] = {.lex_state = 32, .external_lex_state = 20}, + [4572] = {.lex_state = 32, .external_lex_state = 15}, + [4573] = {.lex_state = 32, .external_lex_state = 17}, + [4574] = {.lex_state = 32, .external_lex_state = 16}, + [4575] = {.lex_state = 34, .external_lex_state = 19}, + [4576] = {.lex_state = 34, .external_lex_state = 18}, + [4577] = {.lex_state = 32, .external_lex_state = 17}, + [4578] = {.lex_state = 32, .external_lex_state = 16}, + [4579] = {.lex_state = 34, .external_lex_state = 19}, + [4580] = {.lex_state = 34, .external_lex_state = 18}, + [4581] = {.lex_state = 32, .external_lex_state = 17}, + [4582] = {.lex_state = 32, .external_lex_state = 16}, + [4583] = {.lex_state = 32, .external_lex_state = 15}, + [4584] = {.lex_state = 32, .external_lex_state = 16}, + [4585] = {.lex_state = 32, .external_lex_state = 17}, + [4586] = {.lex_state = 34, .external_lex_state = 18}, + [4587] = {.lex_state = 34, .external_lex_state = 19}, + [4588] = {.lex_state = 34, .external_lex_state = 19}, + [4589] = {.lex_state = 34, .external_lex_state = 18}, + [4590] = {.lex_state = 32, .external_lex_state = 17}, + [4591] = {.lex_state = 32, .external_lex_state = 16}, + [4592] = {.lex_state = 34, .external_lex_state = 19}, + [4593] = {.lex_state = 32, .external_lex_state = 16}, + [4594] = {.lex_state = 32, .external_lex_state = 17}, + [4595] = {.lex_state = 34, .external_lex_state = 18}, + [4596] = {.lex_state = 34, .external_lex_state = 19}, + [4597] = {.lex_state = 34, .external_lex_state = 18}, + [4598] = {.lex_state = 34, .external_lex_state = 19}, + [4599] = {.lex_state = 34, .external_lex_state = 18}, + [4600] = {.lex_state = 32, .external_lex_state = 23}, + [4601] = {.lex_state = 32, .external_lex_state = 22}, + [4602] = {.lex_state = 32, .external_lex_state = 21}, + [4603] = {.lex_state = 32, .external_lex_state = 14}, + [4604] = {.lex_state = 32, .external_lex_state = 20}, + [4605] = {.lex_state = 32, .external_lex_state = 15}, + [4606] = {.lex_state = 32, .external_lex_state = 17}, + [4607] = {.lex_state = 32, .external_lex_state = 16}, + [4608] = {.lex_state = 34, .external_lex_state = 19}, + [4609] = {.lex_state = 34, .external_lex_state = 18}, + [4610] = {.lex_state = 32, .external_lex_state = 17}, + [4611] = {.lex_state = 32, .external_lex_state = 16}, + [4612] = {.lex_state = 34, .external_lex_state = 19}, + [4613] = {.lex_state = 34, .external_lex_state = 18}, + [4614] = {.lex_state = 32, .external_lex_state = 17}, + [4615] = {.lex_state = 32, .external_lex_state = 16}, + [4616] = {.lex_state = 32, .external_lex_state = 23}, + [4617] = {.lex_state = 32, .external_lex_state = 22}, + [4618] = {.lex_state = 32, .external_lex_state = 21}, + [4619] = {.lex_state = 32, .external_lex_state = 14}, + [4620] = {.lex_state = 32, .external_lex_state = 20}, + [4621] = {.lex_state = 32, .external_lex_state = 15}, + [4622] = {.lex_state = 34, .external_lex_state = 19}, + [4623] = {.lex_state = 34, .external_lex_state = 18}, + [4624] = {.lex_state = 32, .external_lex_state = 17}, + [4625] = {.lex_state = 32, .external_lex_state = 16}, + [4626] = {.lex_state = 34, .external_lex_state = 19}, + [4627] = {.lex_state = 34, .external_lex_state = 18}, + [4628] = {.lex_state = 32, .external_lex_state = 17}, + [4629] = {.lex_state = 32, .external_lex_state = 16}, + [4630] = {.lex_state = 34, .external_lex_state = 19}, + [4631] = {.lex_state = 34, .external_lex_state = 18}, + [4632] = {.lex_state = 32, .external_lex_state = 17}, + [4633] = {.lex_state = 32, .external_lex_state = 16}, + [4634] = {.lex_state = 32, .external_lex_state = 17}, + [4635] = {.lex_state = 34, .external_lex_state = 18}, + [4636] = {.lex_state = 34, .external_lex_state = 19}, + [4637] = {.lex_state = 32, .external_lex_state = 16}, + [4638] = {.lex_state = 32, .external_lex_state = 17}, + [4639] = {.lex_state = 32, .external_lex_state = 16}, + [4640] = {.lex_state = 32, .external_lex_state = 23}, + [4641] = {.lex_state = 34, .external_lex_state = 19}, + [4642] = {.lex_state = 32, .external_lex_state = 16}, + [4643] = {.lex_state = 32, .external_lex_state = 17}, + [4644] = {.lex_state = 34, .external_lex_state = 18}, + [4645] = {.lex_state = 34, .external_lex_state = 19}, + [4646] = {.lex_state = 34, .external_lex_state = 18}, + [4647] = {.lex_state = 32, .external_lex_state = 17}, + [4648] = {.lex_state = 32, .external_lex_state = 16}, + [4649] = {.lex_state = 32, .external_lex_state = 23}, + [4650] = {.lex_state = 32, .external_lex_state = 22}, + [4651] = {.lex_state = 32, .external_lex_state = 21}, + [4652] = {.lex_state = 32, .external_lex_state = 14}, + [4653] = {.lex_state = 32, .external_lex_state = 20}, + [4654] = {.lex_state = 32, .external_lex_state = 15}, + [4655] = {.lex_state = 32, .external_lex_state = 22}, + [4656] = {.lex_state = 32, .external_lex_state = 21}, + [4657] = {.lex_state = 32, .external_lex_state = 14}, + [4658] = {.lex_state = 32, .external_lex_state = 20}, + [4659] = {.lex_state = 34, .external_lex_state = 19}, + [4660] = {.lex_state = 34, .external_lex_state = 18}, + [4661] = {.lex_state = 32, .external_lex_state = 17}, + [4662] = {.lex_state = 32, .external_lex_state = 16}, + [4663] = {.lex_state = 32, .external_lex_state = 15}, + [4664] = {.lex_state = 32, .external_lex_state = 20}, + [4665] = {.lex_state = 32, .external_lex_state = 23}, + [4666] = {.lex_state = 32, .external_lex_state = 22}, + [4667] = {.lex_state = 32, .external_lex_state = 21}, + [4668] = {.lex_state = 32, .external_lex_state = 14}, + [4669] = {.lex_state = 32, .external_lex_state = 20}, + [4670] = {.lex_state = 32, .external_lex_state = 15}, + [4671] = {.lex_state = 32, .external_lex_state = 14}, + [4672] = {.lex_state = 32, .external_lex_state = 21}, + [4673] = {.lex_state = 32, .external_lex_state = 22}, + [4674] = {.lex_state = 32, .external_lex_state = 23}, + [4675] = {.lex_state = 32, .external_lex_state = 15}, + [4676] = {.lex_state = 32, .external_lex_state = 20}, + [4677] = {.lex_state = 32, .external_lex_state = 14}, + [4678] = {.lex_state = 32, .external_lex_state = 21}, + [4679] = {.lex_state = 32, .external_lex_state = 22}, + [4680] = {.lex_state = 32, .external_lex_state = 23}, + [4681] = {.lex_state = 34, .external_lex_state = 19}, + [4682] = {.lex_state = 32, .external_lex_state = 16}, + [4683] = {.lex_state = 32, .external_lex_state = 17}, + [4684] = {.lex_state = 34, .external_lex_state = 18}, + [4685] = {.lex_state = 34, .external_lex_state = 19}, + [4686] = {.lex_state = 34, .external_lex_state = 18}, + [4687] = {.lex_state = 32, .external_lex_state = 17}, + [4688] = {.lex_state = 32, .external_lex_state = 16}, + [4689] = {.lex_state = 34, .external_lex_state = 19}, + [4690] = {.lex_state = 49, .external_lex_state = 12}, + [4691] = {.lex_state = 32, .external_lex_state = 16}, + [4692] = {.lex_state = 32, .external_lex_state = 17}, + [4693] = {.lex_state = 34, .external_lex_state = 18}, + [4694] = {.lex_state = 34, .external_lex_state = 19}, + [4695] = {.lex_state = 32, .external_lex_state = 15}, + [4696] = {.lex_state = 32, .external_lex_state = 20}, + [4697] = {.lex_state = 32, .external_lex_state = 21}, + [4698] = {.lex_state = 32, .external_lex_state = 23}, + [4699] = {.lex_state = 32, .external_lex_state = 22}, + [4700] = {.lex_state = 32, .external_lex_state = 21}, + [4701] = {.lex_state = 32, .external_lex_state = 14}, + [4702] = {.lex_state = 32, .external_lex_state = 20}, + [4703] = {.lex_state = 32, .external_lex_state = 15}, + [4704] = {.lex_state = 34, .external_lex_state = 18}, + [4705] = {.lex_state = 32, .external_lex_state = 17}, + [4706] = {.lex_state = 32, .external_lex_state = 16}, + [4707] = {.lex_state = 32, .external_lex_state = 15}, + [4708] = {.lex_state = 32, .external_lex_state = 20}, + [4709] = {.lex_state = 32, .external_lex_state = 14}, + [4710] = {.lex_state = 32, .external_lex_state = 21}, + [4711] = {.lex_state = 32, .external_lex_state = 22}, + [4712] = {.lex_state = 32, .external_lex_state = 23}, + [4713] = {.lex_state = 32, .external_lex_state = 15}, + [4714] = {.lex_state = 32, .external_lex_state = 23}, + [4715] = {.lex_state = 32, .external_lex_state = 22}, + [4716] = {.lex_state = 32, .external_lex_state = 21}, + [4717] = {.lex_state = 32, .external_lex_state = 14}, + [4718] = {.lex_state = 32, .external_lex_state = 20}, + [4719] = {.lex_state = 32, .external_lex_state = 15}, + [4720] = {.lex_state = 32, .external_lex_state = 20}, + [4721] = {.lex_state = 32, .external_lex_state = 14}, + [4722] = {.lex_state = 32, .external_lex_state = 21}, + [4723] = {.lex_state = 32, .external_lex_state = 22}, + [4724] = {.lex_state = 32, .external_lex_state = 23}, + [4725] = {.lex_state = 34, .external_lex_state = 19}, + [4726] = {.lex_state = 34, .external_lex_state = 18}, + [4727] = {.lex_state = 32, .external_lex_state = 17}, + [4728] = {.lex_state = 32, .external_lex_state = 16}, + [4729] = {.lex_state = 32, .external_lex_state = 23}, + [4730] = {.lex_state = 32, .external_lex_state = 22}, + [4731] = {.lex_state = 32, .external_lex_state = 16}, + [4732] = {.lex_state = 32, .external_lex_state = 17}, + [4733] = {.lex_state = 34, .external_lex_state = 18}, + [4734] = {.lex_state = 34, .external_lex_state = 19}, + [4735] = {.lex_state = 152, .external_lex_state = 12}, + [4736] = {.lex_state = 152, .external_lex_state = 12}, + [4737] = {.lex_state = 152, .external_lex_state = 12}, + [4738] = {.lex_state = 49, .external_lex_state = 12}, + [4739] = {.lex_state = 49, .external_lex_state = 12}, + [4740] = {.lex_state = 152, .external_lex_state = 12}, + [4741] = {.lex_state = 49, .external_lex_state = 12}, + [4742] = {.lex_state = 49, .external_lex_state = 12}, + [4743] = {.lex_state = 152, .external_lex_state = 12}, + [4744] = {.lex_state = 49, .external_lex_state = 12}, + [4745] = {.lex_state = 49, .external_lex_state = 12}, + [4746] = {.lex_state = 152, .external_lex_state = 12}, + [4747] = {.lex_state = 152, .external_lex_state = 12}, + [4748] = {.lex_state = 49, .external_lex_state = 12}, + [4749] = {.lex_state = 49, .external_lex_state = 12}, + [4750] = {.lex_state = 49, .external_lex_state = 12}, + [4751] = {.lex_state = 152, .external_lex_state = 12}, + [4752] = {.lex_state = 49, .external_lex_state = 12}, + [4753] = {.lex_state = 49, .external_lex_state = 12}, + [4754] = {.lex_state = 49, .external_lex_state = 12}, + [4755] = {.lex_state = 152, .external_lex_state = 12}, + [4756] = {.lex_state = 49, .external_lex_state = 12}, + [4757] = {.lex_state = 49, .external_lex_state = 12}, + [4758] = {.lex_state = 152, .external_lex_state = 12}, + [4759] = {.lex_state = 152, .external_lex_state = 12}, + [4760] = {.lex_state = 49, .external_lex_state = 12}, + [4761] = {.lex_state = 152, .external_lex_state = 12}, + [4762] = {.lex_state = 152, .external_lex_state = 12}, + [4763] = {.lex_state = 152, .external_lex_state = 12}, + [4764] = {.lex_state = 49, .external_lex_state = 12}, + [4765] = {.lex_state = 152, .external_lex_state = 12}, + [4766] = {.lex_state = 152, .external_lex_state = 12}, + [4767] = {.lex_state = 49, .external_lex_state = 12}, + [4768] = {.lex_state = 49, .external_lex_state = 12}, + [4769] = {.lex_state = 152, .external_lex_state = 12}, + [4770] = {.lex_state = 49, .external_lex_state = 12}, + [4771] = {.lex_state = 152, .external_lex_state = 12}, + [4772] = {.lex_state = 152, .external_lex_state = 12}, + [4773] = {.lex_state = 152, .external_lex_state = 12}, + [4774] = {.lex_state = 49, .external_lex_state = 12}, + [4775] = {.lex_state = 49, .external_lex_state = 12}, + [4776] = {.lex_state = 49, .external_lex_state = 12}, + [4777] = {.lex_state = 49, .external_lex_state = 12}, + [4778] = {.lex_state = 152, .external_lex_state = 12}, + [4779] = {.lex_state = 152, .external_lex_state = 12}, + [4780] = {.lex_state = 49, .external_lex_state = 12}, + [4781] = {.lex_state = 49, .external_lex_state = 12}, + [4782] = {.lex_state = 152, .external_lex_state = 12}, + [4783] = {.lex_state = 49, .external_lex_state = 12}, + [4784] = {.lex_state = 49, .external_lex_state = 12}, + [4785] = {.lex_state = 152, .external_lex_state = 12}, + [4786] = {.lex_state = 152, .external_lex_state = 12}, + [4787] = {.lex_state = 152, .external_lex_state = 12}, + [4788] = {.lex_state = 49, .external_lex_state = 12}, + [4789] = {.lex_state = 152, .external_lex_state = 12}, + [4790] = {.lex_state = 152, .external_lex_state = 12}, + [4791] = {.lex_state = 152, .external_lex_state = 12}, + [4792] = {.lex_state = 152, .external_lex_state = 12}, + [4793] = {.lex_state = 152, .external_lex_state = 12}, + [4794] = {.lex_state = 49, .external_lex_state = 12}, + [4795] = {.lex_state = 49, .external_lex_state = 12}, + [4796] = {.lex_state = 49, .external_lex_state = 12}, + [4797] = {.lex_state = 49, .external_lex_state = 12}, + [4798] = {.lex_state = 152, .external_lex_state = 12}, + [4799] = {.lex_state = 49, .external_lex_state = 12}, + [4800] = {.lex_state = 152, .external_lex_state = 12}, + [4801] = {.lex_state = 49, .external_lex_state = 12}, + [4802] = {.lex_state = 49, .external_lex_state = 12}, + [4803] = {.lex_state = 49, .external_lex_state = 12}, + [4804] = {.lex_state = 152, .external_lex_state = 12}, + [4805] = {.lex_state = 49, .external_lex_state = 12}, + [4806] = {.lex_state = 49, .external_lex_state = 12}, + [4807] = {.lex_state = 49, .external_lex_state = 12}, + [4808] = {.lex_state = 152, .external_lex_state = 12}, + [4809] = {.lex_state = 152, .external_lex_state = 12}, + [4810] = {.lex_state = 152, .external_lex_state = 12}, + [4811] = {.lex_state = 152, .external_lex_state = 12}, + [4812] = {.lex_state = 49, .external_lex_state = 12}, + [4813] = {.lex_state = 49, .external_lex_state = 12}, + [4814] = {.lex_state = 152, .external_lex_state = 12}, + [4815] = {.lex_state = 152, .external_lex_state = 12}, + [4816] = {.lex_state = 49, .external_lex_state = 12}, + [4817] = {.lex_state = 152, .external_lex_state = 12}, + [4818] = {.lex_state = 152, .external_lex_state = 12}, + [4819] = {.lex_state = 152, .external_lex_state = 12}, + [4820] = {.lex_state = 49, .external_lex_state = 12}, + [4821] = {.lex_state = 152, .external_lex_state = 12}, + [4822] = {.lex_state = 152, .external_lex_state = 12}, + [4823] = {.lex_state = 49, .external_lex_state = 12}, + [4824] = {.lex_state = 49, .external_lex_state = 12}, + [4825] = {.lex_state = 49, .external_lex_state = 12}, + [4826] = {.lex_state = 49, .external_lex_state = 12}, + [4827] = {.lex_state = 49, .external_lex_state = 12}, + [4828] = {.lex_state = 152, .external_lex_state = 12}, + [4829] = {.lex_state = 49, .external_lex_state = 12}, + [4830] = {.lex_state = 152, .external_lex_state = 12}, + [4831] = {.lex_state = 152, .external_lex_state = 12}, + [4832] = {.lex_state = 49, .external_lex_state = 12}, + [4833] = {.lex_state = 152, .external_lex_state = 12}, + [4834] = {.lex_state = 49, .external_lex_state = 12}, + [4835] = {.lex_state = 152, .external_lex_state = 12}, + [4836] = {.lex_state = 152, .external_lex_state = 12}, + [4837] = {.lex_state = 152, .external_lex_state = 12}, + [4838] = {.lex_state = 152, .external_lex_state = 12}, + [4839] = {.lex_state = 49, .external_lex_state = 12}, + [4840] = {.lex_state = 49, .external_lex_state = 12}, + [4841] = {.lex_state = 49, .external_lex_state = 12}, + [4842] = {.lex_state = 49, .external_lex_state = 12}, + [4843] = {.lex_state = 152, .external_lex_state = 12}, + [4844] = {.lex_state = 152, .external_lex_state = 12}, + [4845] = {.lex_state = 49, .external_lex_state = 12}, + [4846] = {.lex_state = 49, .external_lex_state = 12}, + [4847] = {.lex_state = 152, .external_lex_state = 12}, + [4848] = {.lex_state = 152, .external_lex_state = 12}, + [4849] = {.lex_state = 49, .external_lex_state = 12}, + [4850] = {.lex_state = 152, .external_lex_state = 12}, + [4851] = {.lex_state = 152, .external_lex_state = 12}, + [4852] = {.lex_state = 35, .external_lex_state = 24}, + [4853] = {.lex_state = 35, .external_lex_state = 25}, + [4854] = {.lex_state = 35, .external_lex_state = 26}, + [4855] = {.lex_state = 35, .external_lex_state = 27}, + [4856] = {.lex_state = 35, .external_lex_state = 28}, + [4857] = {.lex_state = 35, .external_lex_state = 29}, + [4858] = {.lex_state = 35, .external_lex_state = 30}, + [4859] = {.lex_state = 35, .external_lex_state = 24}, + [4860] = {.lex_state = 35, .external_lex_state = 31}, + [4861] = {.lex_state = 35, .external_lex_state = 25}, + [4862] = {.lex_state = 33, .external_lex_state = 32}, + [4863] = {.lex_state = 33, .external_lex_state = 33}, + [4864] = {.lex_state = 35, .external_lex_state = 26}, + [4865] = {.lex_state = 35, .external_lex_state = 27}, + [4866] = {.lex_state = 35, .external_lex_state = 28}, + [4867] = {.lex_state = 35, .external_lex_state = 29}, + [4868] = {.lex_state = 35, .external_lex_state = 25}, + [4869] = {.lex_state = 35, .external_lex_state = 30}, + [4870] = {.lex_state = 35, .external_lex_state = 24}, + [4871] = {.lex_state = 35, .external_lex_state = 30}, + [4872] = {.lex_state = 35, .external_lex_state = 24}, + [4873] = {.lex_state = 35, .external_lex_state = 31}, + [4874] = {.lex_state = 35, .external_lex_state = 25}, + [4875] = {.lex_state = 33, .external_lex_state = 32}, + [4876] = {.lex_state = 33, .external_lex_state = 33}, + [4877] = {.lex_state = 35, .external_lex_state = 26}, + [4878] = {.lex_state = 35, .external_lex_state = 27}, + [4879] = {.lex_state = 33, .external_lex_state = 33}, + [4880] = {.lex_state = 35, .external_lex_state = 28}, + [4881] = {.lex_state = 35, .external_lex_state = 29}, + [4882] = {.lex_state = 35, .external_lex_state = 30}, + [4883] = {.lex_state = 35, .external_lex_state = 24}, + [4884] = {.lex_state = 35, .external_lex_state = 31}, + [4885] = {.lex_state = 35, .external_lex_state = 25}, + [4886] = {.lex_state = 33, .external_lex_state = 32}, + [4887] = {.lex_state = 33, .external_lex_state = 33}, + [4888] = {.lex_state = 35, .external_lex_state = 26}, + [4889] = {.lex_state = 35, .external_lex_state = 27}, + [4890] = {.lex_state = 35, .external_lex_state = 28}, + [4891] = {.lex_state = 35, .external_lex_state = 29}, + [4892] = {.lex_state = 35, .external_lex_state = 27}, + [4893] = {.lex_state = 33, .external_lex_state = 32}, + [4894] = {.lex_state = 35, .external_lex_state = 26}, + [4895] = {.lex_state = 33, .external_lex_state = 33}, + [4896] = {.lex_state = 35, .external_lex_state = 31}, + [4897] = {.lex_state = 35, .external_lex_state = 25}, + [4898] = {.lex_state = 35, .external_lex_state = 31}, + [4899] = {.lex_state = 32, .external_lex_state = 15}, + [4900] = {.lex_state = 32, .external_lex_state = 14}, + [4901] = {.lex_state = 32, .external_lex_state = 20}, + [4902] = {.lex_state = 35, .external_lex_state = 29}, + [4903] = {.lex_state = 35, .external_lex_state = 28}, + [4904] = {.lex_state = 35, .external_lex_state = 27}, + [4905] = {.lex_state = 35, .external_lex_state = 26}, + [4906] = {.lex_state = 33, .external_lex_state = 33}, + [4907] = {.lex_state = 33, .external_lex_state = 32}, + [4908] = {.lex_state = 35, .external_lex_state = 25}, + [4909] = {.lex_state = 35, .external_lex_state = 31}, + [4910] = {.lex_state = 35, .external_lex_state = 24}, + [4911] = {.lex_state = 35, .external_lex_state = 24}, + [4912] = {.lex_state = 35, .external_lex_state = 30}, + [4913] = {.lex_state = 35, .external_lex_state = 24}, + [4914] = {.lex_state = 35, .external_lex_state = 31}, + [4915] = {.lex_state = 35, .external_lex_state = 25}, + [4916] = {.lex_state = 33, .external_lex_state = 32}, + [4917] = {.lex_state = 33, .external_lex_state = 33}, + [4918] = {.lex_state = 35, .external_lex_state = 26}, + [4919] = {.lex_state = 35, .external_lex_state = 27}, + [4920] = {.lex_state = 35, .external_lex_state = 28}, + [4921] = {.lex_state = 35, .external_lex_state = 29}, + [4922] = {.lex_state = 32, .external_lex_state = 21}, + [4923] = {.lex_state = 35, .external_lex_state = 28}, + [4924] = {.lex_state = 35, .external_lex_state = 30}, + [4925] = {.lex_state = 35, .external_lex_state = 24}, + [4926] = {.lex_state = 35, .external_lex_state = 30}, + [4927] = {.lex_state = 33, .external_lex_state = 33}, + [4928] = {.lex_state = 35, .external_lex_state = 24}, + [4929] = {.lex_state = 32, .external_lex_state = 23}, + [4930] = {.lex_state = 35, .external_lex_state = 26}, + [4931] = {.lex_state = 35, .external_lex_state = 31}, + [4932] = {.lex_state = 35, .external_lex_state = 25}, + [4933] = {.lex_state = 35, .external_lex_state = 30}, + [4934] = {.lex_state = 35, .external_lex_state = 24}, + [4935] = {.lex_state = 35, .external_lex_state = 31}, + [4936] = {.lex_state = 35, .external_lex_state = 25}, + [4937] = {.lex_state = 33, .external_lex_state = 32}, + [4938] = {.lex_state = 33, .external_lex_state = 33}, + [4939] = {.lex_state = 35, .external_lex_state = 26}, + [4940] = {.lex_state = 35, .external_lex_state = 27}, + [4941] = {.lex_state = 35, .external_lex_state = 28}, + [4942] = {.lex_state = 35, .external_lex_state = 29}, + [4943] = {.lex_state = 33, .external_lex_state = 32}, + [4944] = {.lex_state = 35, .external_lex_state = 29}, + [4945] = {.lex_state = 33, .external_lex_state = 33}, + [4946] = {.lex_state = 33, .external_lex_state = 32}, + [4947] = {.lex_state = 35, .external_lex_state = 29}, + [4948] = {.lex_state = 35, .external_lex_state = 28}, + [4949] = {.lex_state = 152, .external_lex_state = 12}, + [4950] = {.lex_state = 35, .external_lex_state = 30}, + [4951] = {.lex_state = 35, .external_lex_state = 27}, + [4952] = {.lex_state = 35, .external_lex_state = 25}, + [4953] = {.lex_state = 35, .external_lex_state = 31}, + [4954] = {.lex_state = 35, .external_lex_state = 29}, + [4955] = {.lex_state = 35, .external_lex_state = 26}, + [4956] = {.lex_state = 35, .external_lex_state = 28}, + [4957] = {.lex_state = 35, .external_lex_state = 27}, + [4958] = {.lex_state = 35, .external_lex_state = 26}, + [4959] = {.lex_state = 33, .external_lex_state = 33}, + [4960] = {.lex_state = 33, .external_lex_state = 32}, + [4961] = {.lex_state = 35, .external_lex_state = 25}, + [4962] = {.lex_state = 35, .external_lex_state = 31}, + [4963] = {.lex_state = 35, .external_lex_state = 30}, + [4964] = {.lex_state = 35, .external_lex_state = 24}, + [4965] = {.lex_state = 35, .external_lex_state = 30}, + [4966] = {.lex_state = 35, .external_lex_state = 31}, + [4967] = {.lex_state = 34, .external_lex_state = 18}, + [4968] = {.lex_state = 35, .external_lex_state = 28}, + [4969] = {.lex_state = 35, .external_lex_state = 27}, + [4970] = {.lex_state = 33, .external_lex_state = 32}, + [4971] = {.lex_state = 35, .external_lex_state = 30}, + [4972] = {.lex_state = 33, .external_lex_state = 33}, + [4973] = {.lex_state = 33, .external_lex_state = 32}, + [4974] = {.lex_state = 32, .external_lex_state = 22}, + [4975] = {.lex_state = 35, .external_lex_state = 26}, + [4976] = {.lex_state = 35, .external_lex_state = 24}, + [4977] = {.lex_state = 35, .external_lex_state = 24}, + [4978] = {.lex_state = 35, .external_lex_state = 25}, + [4979] = {.lex_state = 35, .external_lex_state = 30}, + [4980] = {.lex_state = 35, .external_lex_state = 24}, + [4981] = {.lex_state = 35, .external_lex_state = 31}, + [4982] = {.lex_state = 35, .external_lex_state = 25}, + [4983] = {.lex_state = 33, .external_lex_state = 32}, + [4984] = {.lex_state = 33, .external_lex_state = 33}, + [4985] = {.lex_state = 35, .external_lex_state = 26}, + [4986] = {.lex_state = 35, .external_lex_state = 27}, + [4987] = {.lex_state = 35, .external_lex_state = 28}, + [4988] = {.lex_state = 35, .external_lex_state = 29}, + [4989] = {.lex_state = 35, .external_lex_state = 30}, + [4990] = {.lex_state = 35, .external_lex_state = 31}, + [4991] = {.lex_state = 35, .external_lex_state = 31}, + [4992] = {.lex_state = 35, .external_lex_state = 25}, + [4993] = {.lex_state = 33, .external_lex_state = 32}, + [4994] = {.lex_state = 35, .external_lex_state = 30}, + [4995] = {.lex_state = 35, .external_lex_state = 29}, + [4996] = {.lex_state = 33, .external_lex_state = 32}, + [4997] = {.lex_state = 32, .external_lex_state = 17}, + [4998] = {.lex_state = 35, .external_lex_state = 29}, + [4999] = {.lex_state = 35, .external_lex_state = 30}, + [5000] = {.lex_state = 35, .external_lex_state = 24}, + [5001] = {.lex_state = 35, .external_lex_state = 30}, + [5002] = {.lex_state = 35, .external_lex_state = 24}, + [5003] = {.lex_state = 35, .external_lex_state = 31}, + [5004] = {.lex_state = 35, .external_lex_state = 24}, + [5005] = {.lex_state = 35, .external_lex_state = 28}, + [5006] = {.lex_state = 35, .external_lex_state = 27}, + [5007] = {.lex_state = 35, .external_lex_state = 27}, + [5008] = {.lex_state = 35, .external_lex_state = 25}, + [5009] = {.lex_state = 35, .external_lex_state = 24}, + [5010] = {.lex_state = 35, .external_lex_state = 31}, + [5011] = {.lex_state = 35, .external_lex_state = 31}, + [5012] = {.lex_state = 33, .external_lex_state = 32}, + [5013] = {.lex_state = 35, .external_lex_state = 29}, + [5014] = {.lex_state = 33, .external_lex_state = 33}, + [5015] = {.lex_state = 35, .external_lex_state = 26}, + [5016] = {.lex_state = 35, .external_lex_state = 31}, + [5017] = {.lex_state = 35, .external_lex_state = 26}, + [5018] = {.lex_state = 35, .external_lex_state = 24}, + [5019] = {.lex_state = 35, .external_lex_state = 25}, + [5020] = {.lex_state = 35, .external_lex_state = 27}, + [5021] = {.lex_state = 35, .external_lex_state = 30}, + [5022] = {.lex_state = 33, .external_lex_state = 32}, + [5023] = {.lex_state = 33, .external_lex_state = 33}, + [5024] = {.lex_state = 35, .external_lex_state = 25}, + [5025] = {.lex_state = 35, .external_lex_state = 26}, + [5026] = {.lex_state = 33, .external_lex_state = 32}, + [5027] = {.lex_state = 35, .external_lex_state = 28}, + [5028] = {.lex_state = 33, .external_lex_state = 33}, + [5029] = {.lex_state = 35, .external_lex_state = 27}, + [5030] = {.lex_state = 35, .external_lex_state = 28}, + [5031] = {.lex_state = 35, .external_lex_state = 29}, + [5032] = {.lex_state = 35, .external_lex_state = 29}, + [5033] = {.lex_state = 33, .external_lex_state = 33}, + [5034] = {.lex_state = 33, .external_lex_state = 32}, + [5035] = {.lex_state = 35, .external_lex_state = 26}, + [5036] = {.lex_state = 35, .external_lex_state = 27}, + [5037] = {.lex_state = 35, .external_lex_state = 30}, + [5038] = {.lex_state = 35, .external_lex_state = 24}, + [5039] = {.lex_state = 35, .external_lex_state = 25}, + [5040] = {.lex_state = 35, .external_lex_state = 31}, + [5041] = {.lex_state = 35, .external_lex_state = 25}, + [5042] = {.lex_state = 33, .external_lex_state = 32}, + [5043] = {.lex_state = 33, .external_lex_state = 33}, + [5044] = {.lex_state = 35, .external_lex_state = 26}, + [5045] = {.lex_state = 35, .external_lex_state = 27}, + [5046] = {.lex_state = 35, .external_lex_state = 28}, + [5047] = {.lex_state = 35, .external_lex_state = 30}, + [5048] = {.lex_state = 35, .external_lex_state = 29}, + [5049] = {.lex_state = 35, .external_lex_state = 29}, + [5050] = {.lex_state = 33, .external_lex_state = 32}, + [5051] = {.lex_state = 35, .external_lex_state = 24}, + [5052] = {.lex_state = 35, .external_lex_state = 24}, + [5053] = {.lex_state = 35, .external_lex_state = 30}, + [5054] = {.lex_state = 35, .external_lex_state = 29}, + [5055] = {.lex_state = 35, .external_lex_state = 29}, + [5056] = {.lex_state = 33, .external_lex_state = 33}, + [5057] = {.lex_state = 35, .external_lex_state = 30}, + [5058] = {.lex_state = 35, .external_lex_state = 28}, + [5059] = {.lex_state = 35, .external_lex_state = 29}, + [5060] = {.lex_state = 35, .external_lex_state = 29}, + [5061] = {.lex_state = 35, .external_lex_state = 26}, + [5062] = {.lex_state = 35, .external_lex_state = 28}, + [5063] = {.lex_state = 35, .external_lex_state = 27}, + [5064] = {.lex_state = 35, .external_lex_state = 30}, + [5065] = {.lex_state = 35, .external_lex_state = 24}, + [5066] = {.lex_state = 35, .external_lex_state = 31}, + [5067] = {.lex_state = 35, .external_lex_state = 25}, + [5068] = {.lex_state = 33, .external_lex_state = 32}, + [5069] = {.lex_state = 33, .external_lex_state = 33}, + [5070] = {.lex_state = 35, .external_lex_state = 26}, + [5071] = {.lex_state = 35, .external_lex_state = 27}, + [5072] = {.lex_state = 35, .external_lex_state = 28}, + [5073] = {.lex_state = 25, .external_lex_state = 12}, + [5074] = {.lex_state = 35, .external_lex_state = 29}, + [5075] = {.lex_state = 35, .external_lex_state = 26}, + [5076] = {.lex_state = 35, .external_lex_state = 28}, + [5077] = {.lex_state = 35, .external_lex_state = 28}, + [5078] = {.lex_state = 35, .external_lex_state = 30}, + [5079] = {.lex_state = 35, .external_lex_state = 27}, + [5080] = {.lex_state = 35, .external_lex_state = 26}, + [5081] = {.lex_state = 33, .external_lex_state = 33}, + [5082] = {.lex_state = 33, .external_lex_state = 32}, + [5083] = {.lex_state = 35, .external_lex_state = 25}, + [5084] = {.lex_state = 35, .external_lex_state = 27}, + [5085] = {.lex_state = 35, .external_lex_state = 24}, + [5086] = {.lex_state = 35, .external_lex_state = 31}, + [5087] = {.lex_state = 35, .external_lex_state = 27}, + [5088] = {.lex_state = 35, .external_lex_state = 28}, + [5089] = {.lex_state = 35, .external_lex_state = 26}, + [5090] = {.lex_state = 35, .external_lex_state = 30}, + [5091] = {.lex_state = 35, .external_lex_state = 24}, + [5092] = {.lex_state = 35, .external_lex_state = 25}, + [5093] = {.lex_state = 35, .external_lex_state = 31}, + [5094] = {.lex_state = 35, .external_lex_state = 25}, + [5095] = {.lex_state = 33, .external_lex_state = 32}, + [5096] = {.lex_state = 35, .external_lex_state = 31}, + [5097] = {.lex_state = 33, .external_lex_state = 33}, + [5098] = {.lex_state = 35, .external_lex_state = 30}, + [5099] = {.lex_state = 35, .external_lex_state = 30}, + [5100] = {.lex_state = 35, .external_lex_state = 27}, + [5101] = {.lex_state = 33, .external_lex_state = 32}, + [5102] = {.lex_state = 33, .external_lex_state = 32}, + [5103] = {.lex_state = 33, .external_lex_state = 33}, + [5104] = {.lex_state = 35, .external_lex_state = 26}, + [5105] = {.lex_state = 33, .external_lex_state = 33}, + [5106] = {.lex_state = 35, .external_lex_state = 27}, + [5107] = {.lex_state = 35, .external_lex_state = 25}, + [5108] = {.lex_state = 35, .external_lex_state = 28}, + [5109] = {.lex_state = 35, .external_lex_state = 29}, + [5110] = {.lex_state = 35, .external_lex_state = 30}, + [5111] = {.lex_state = 35, .external_lex_state = 30}, + [5112] = {.lex_state = 35, .external_lex_state = 24}, + [5113] = {.lex_state = 35, .external_lex_state = 24}, + [5114] = {.lex_state = 35, .external_lex_state = 31}, + [5115] = {.lex_state = 35, .external_lex_state = 31}, + [5116] = {.lex_state = 35, .external_lex_state = 31}, + [5117] = {.lex_state = 35, .external_lex_state = 25}, + [5118] = {.lex_state = 35, .external_lex_state = 29}, + [5119] = {.lex_state = 35, .external_lex_state = 25}, + [5120] = {.lex_state = 35, .external_lex_state = 28}, + [5121] = {.lex_state = 33, .external_lex_state = 32}, + [5122] = {.lex_state = 33, .external_lex_state = 32}, + [5123] = {.lex_state = 33, .external_lex_state = 33}, + [5124] = {.lex_state = 33, .external_lex_state = 33}, + [5125] = {.lex_state = 35, .external_lex_state = 26}, + [5126] = {.lex_state = 35, .external_lex_state = 27}, + [5127] = {.lex_state = 35, .external_lex_state = 24}, + [5128] = {.lex_state = 35, .external_lex_state = 26}, + [5129] = {.lex_state = 25, .external_lex_state = 12}, + [5130] = {.lex_state = 35, .external_lex_state = 28}, + [5131] = {.lex_state = 35, .external_lex_state = 27}, + [5132] = {.lex_state = 35, .external_lex_state = 27}, + [5133] = {.lex_state = 35, .external_lex_state = 29}, + [5134] = {.lex_state = 35, .external_lex_state = 28}, + [5135] = {.lex_state = 35, .external_lex_state = 29}, + [5136] = {.lex_state = 35, .external_lex_state = 28}, + [5137] = {.lex_state = 35, .external_lex_state = 30}, + [5138] = {.lex_state = 35, .external_lex_state = 29}, + [5139] = {.lex_state = 35, .external_lex_state = 26}, + [5140] = {.lex_state = 35, .external_lex_state = 27}, + [5141] = {.lex_state = 33, .external_lex_state = 33}, + [5142] = {.lex_state = 35, .external_lex_state = 26}, + [5143] = {.lex_state = 35, .external_lex_state = 28}, + [5144] = {.lex_state = 33, .external_lex_state = 33}, + [5145] = {.lex_state = 33, .external_lex_state = 32}, + [5146] = {.lex_state = 35, .external_lex_state = 25}, + [5147] = {.lex_state = 35, .external_lex_state = 25}, + [5148] = {.lex_state = 35, .external_lex_state = 31}, + [5149] = {.lex_state = 33, .external_lex_state = 32}, + [5150] = {.lex_state = 35, .external_lex_state = 29}, + [5151] = {.lex_state = 35, .external_lex_state = 25}, + [5152] = {.lex_state = 35, .external_lex_state = 24}, + [5153] = {.lex_state = 33, .external_lex_state = 33}, + [5154] = {.lex_state = 35, .external_lex_state = 30}, + [5155] = {.lex_state = 35, .external_lex_state = 31}, + [5156] = {.lex_state = 35, .external_lex_state = 28}, + [5157] = {.lex_state = 33, .external_lex_state = 32}, + [5158] = {.lex_state = 35, .external_lex_state = 30}, + [5159] = {.lex_state = 35, .external_lex_state = 27}, + [5160] = {.lex_state = 35, .external_lex_state = 24}, + [5161] = {.lex_state = 35, .external_lex_state = 25}, + [5162] = {.lex_state = 25, .external_lex_state = 12}, + [5163] = {.lex_state = 35, .external_lex_state = 30}, + [5164] = {.lex_state = 32, .external_lex_state = 16}, + [5165] = {.lex_state = 35, .external_lex_state = 26}, + [5166] = {.lex_state = 35, .external_lex_state = 29}, + [5167] = {.lex_state = 35, .external_lex_state = 28}, + [5168] = {.lex_state = 33, .external_lex_state = 33}, + [5169] = {.lex_state = 35, .external_lex_state = 27}, + [5170] = {.lex_state = 33, .external_lex_state = 32}, + [5171] = {.lex_state = 35, .external_lex_state = 31}, + [5172] = {.lex_state = 35, .external_lex_state = 24}, + [5173] = {.lex_state = 49, .external_lex_state = 12}, + [5174] = {.lex_state = 35, .external_lex_state = 25}, + [5175] = {.lex_state = 35, .external_lex_state = 29}, + [5176] = {.lex_state = 35, .external_lex_state = 26}, + [5177] = {.lex_state = 33, .external_lex_state = 33}, + [5178] = {.lex_state = 35, .external_lex_state = 26}, + [5179] = {.lex_state = 35, .external_lex_state = 30}, + [5180] = {.lex_state = 35, .external_lex_state = 24}, + [5181] = {.lex_state = 35, .external_lex_state = 29}, + [5182] = {.lex_state = 35, .external_lex_state = 31}, + [5183] = {.lex_state = 35, .external_lex_state = 31}, + [5184] = {.lex_state = 35, .external_lex_state = 27}, + [5185] = {.lex_state = 35, .external_lex_state = 28}, + [5186] = {.lex_state = 35, .external_lex_state = 28}, + [5187] = {.lex_state = 35, .external_lex_state = 29}, + [5188] = {.lex_state = 35, .external_lex_state = 24}, + [5189] = {.lex_state = 35, .external_lex_state = 25}, + [5190] = {.lex_state = 35, .external_lex_state = 27}, + [5191] = {.lex_state = 35, .external_lex_state = 30}, + [5192] = {.lex_state = 33, .external_lex_state = 32}, + [5193] = {.lex_state = 35, .external_lex_state = 31}, + [5194] = {.lex_state = 33, .external_lex_state = 33}, + [5195] = {.lex_state = 35, .external_lex_state = 29}, + [5196] = {.lex_state = 33, .external_lex_state = 33}, + [5197] = {.lex_state = 35, .external_lex_state = 26}, + [5198] = {.lex_state = 35, .external_lex_state = 28}, + [5199] = {.lex_state = 35, .external_lex_state = 29}, + [5200] = {.lex_state = 35, .external_lex_state = 30}, + [5201] = {.lex_state = 35, .external_lex_state = 28}, + [5202] = {.lex_state = 35, .external_lex_state = 24}, + [5203] = {.lex_state = 35, .external_lex_state = 31}, + [5204] = {.lex_state = 35, .external_lex_state = 25}, + [5205] = {.lex_state = 33, .external_lex_state = 32}, + [5206] = {.lex_state = 33, .external_lex_state = 33}, + [5207] = {.lex_state = 35, .external_lex_state = 27}, + [5208] = {.lex_state = 35, .external_lex_state = 26}, + [5209] = {.lex_state = 35, .external_lex_state = 27}, + [5210] = {.lex_state = 35, .external_lex_state = 26}, + [5211] = {.lex_state = 33, .external_lex_state = 33}, + [5212] = {.lex_state = 35, .external_lex_state = 28}, + [5213] = {.lex_state = 33, .external_lex_state = 32}, + [5214] = {.lex_state = 35, .external_lex_state = 25}, + [5215] = {.lex_state = 35, .external_lex_state = 26}, + [5216] = {.lex_state = 35, .external_lex_state = 27}, + [5217] = {.lex_state = 35, .external_lex_state = 28}, + [5218] = {.lex_state = 35, .external_lex_state = 29}, + [5219] = {.lex_state = 35, .external_lex_state = 26}, + [5220] = {.lex_state = 34, .external_lex_state = 19}, + [5221] = {.lex_state = 35, .external_lex_state = 25}, + [5222] = {.lex_state = 33, .external_lex_state = 33}, + [5223] = {.lex_state = 35, .external_lex_state = 31}, + [5224] = {.lex_state = 33, .external_lex_state = 32}, + [5225] = {.lex_state = 35, .external_lex_state = 25}, + [5226] = {.lex_state = 35, .external_lex_state = 24}, + [5227] = {.lex_state = 35, .external_lex_state = 31}, + [5228] = {.lex_state = 35, .external_lex_state = 30}, + [5229] = {.lex_state = 35, .external_lex_state = 24}, + [5230] = {.lex_state = 35, .external_lex_state = 31}, + [5231] = {.lex_state = 33, .external_lex_state = 32}, + [5232] = {.lex_state = 33, .external_lex_state = 33}, + [5233] = {.lex_state = 35, .external_lex_state = 26}, + [5234] = {.lex_state = 35, .external_lex_state = 27}, + [5235] = {.lex_state = 35, .external_lex_state = 28}, + [5236] = {.lex_state = 35, .external_lex_state = 29}, + [5237] = {.lex_state = 49, .external_lex_state = 12}, + [5238] = {.lex_state = 49, .external_lex_state = 12}, + [5239] = {.lex_state = 25, .external_lex_state = 12}, + [5240] = {.lex_state = 25, .external_lex_state = 12}, + [5241] = {.lex_state = 25, .external_lex_state = 12}, + [5242] = {.lex_state = 25, .external_lex_state = 12}, + [5243] = {.lex_state = 49, .external_lex_state = 12}, + [5244] = {.lex_state = 25, .external_lex_state = 12}, + [5245] = {.lex_state = 49, .external_lex_state = 12}, + [5246] = {.lex_state = 25, .external_lex_state = 12}, + [5247] = {.lex_state = 152, .external_lex_state = 12}, + [5248] = {.lex_state = 25, .external_lex_state = 12}, + [5249] = {.lex_state = 25, .external_lex_state = 12}, + [5250] = {.lex_state = 49, .external_lex_state = 12}, + [5251] = {.lex_state = 49, .external_lex_state = 12}, + [5252] = {.lex_state = 152, .external_lex_state = 12}, + [5253] = {.lex_state = 49, .external_lex_state = 12}, + [5254] = {.lex_state = 49, .external_lex_state = 12}, + [5255] = {.lex_state = 49, .external_lex_state = 12}, + [5256] = {.lex_state = 28, .external_lex_state = 12}, + [5257] = {.lex_state = 49, .external_lex_state = 12}, + [5258] = {.lex_state = 28, .external_lex_state = 12}, + [5259] = {.lex_state = 49, .external_lex_state = 12}, + [5260] = {.lex_state = 49, .external_lex_state = 12}, + [5261] = {.lex_state = 28, .external_lex_state = 12}, + [5262] = {.lex_state = 49, .external_lex_state = 12}, + [5263] = {.lex_state = 49, .external_lex_state = 12}, + [5264] = {.lex_state = 28, .external_lex_state = 12}, + [5265] = {.lex_state = 28, .external_lex_state = 12}, + [5266] = {.lex_state = 152, .external_lex_state = 12}, + [5267] = {.lex_state = 49, .external_lex_state = 12}, + [5268] = {.lex_state = 28, .external_lex_state = 12}, + [5269] = {.lex_state = 49, .external_lex_state = 12}, + [5270] = {.lex_state = 28, .external_lex_state = 12}, + [5271] = {.lex_state = 152, .external_lex_state = 12}, + [5272] = {.lex_state = 28, .external_lex_state = 12}, + [5273] = {.lex_state = 152, .external_lex_state = 12}, + [5274] = {.lex_state = 28, .external_lex_state = 12}, + [5275] = {.lex_state = 28, .external_lex_state = 12}, + [5276] = {.lex_state = 49, .external_lex_state = 12}, + [5277] = {.lex_state = 49, .external_lex_state = 12}, + [5278] = {.lex_state = 28, .external_lex_state = 12}, + [5279] = {.lex_state = 49, .external_lex_state = 12}, + [5280] = {.lex_state = 28, .external_lex_state = 12}, + [5281] = {.lex_state = 28, .external_lex_state = 12}, + [5282] = {.lex_state = 28, .external_lex_state = 12}, + [5283] = {.lex_state = 49, .external_lex_state = 12}, + [5284] = {.lex_state = 28, .external_lex_state = 12}, + [5285] = {.lex_state = 49, .external_lex_state = 12}, + [5286] = {.lex_state = 152, .external_lex_state = 12}, + [5287] = {.lex_state = 152, .external_lex_state = 12}, + [5288] = {.lex_state = 28, .external_lex_state = 12}, + [5289] = {.lex_state = 49, .external_lex_state = 12}, + [5290] = {.lex_state = 49, .external_lex_state = 12}, + [5291] = {.lex_state = 49, .external_lex_state = 12}, + [5292] = {.lex_state = 152, .external_lex_state = 12}, + [5293] = {.lex_state = 49, .external_lex_state = 12}, + [5294] = {.lex_state = 49, .external_lex_state = 12}, + [5295] = {.lex_state = 152, .external_lex_state = 12}, + [5296] = {.lex_state = 49, .external_lex_state = 12}, + [5297] = {.lex_state = 152, .external_lex_state = 34}, + [5298] = {.lex_state = 28, .external_lex_state = 12}, + [5299] = {.lex_state = 152, .external_lex_state = 34}, + [5300] = {.lex_state = 152, .external_lex_state = 12}, + [5301] = {.lex_state = 152, .external_lex_state = 12}, + [5302] = {.lex_state = 152, .external_lex_state = 12}, + [5303] = {.lex_state = 49, .external_lex_state = 12}, + [5304] = {.lex_state = 49, .external_lex_state = 12}, + [5305] = {.lex_state = 49, .external_lex_state = 12}, + [5306] = {.lex_state = 49, .external_lex_state = 12}, + [5307] = {.lex_state = 49, .external_lex_state = 12}, + [5308] = {.lex_state = 49, .external_lex_state = 12}, + [5309] = {.lex_state = 49, .external_lex_state = 12}, + [5310] = {.lex_state = 152, .external_lex_state = 12}, + [5311] = {.lex_state = 152, .external_lex_state = 12}, + [5312] = {.lex_state = 49, .external_lex_state = 12}, + [5313] = {.lex_state = 152, .external_lex_state = 12}, + [5314] = {.lex_state = 152, .external_lex_state = 12}, + [5315] = {.lex_state = 28, .external_lex_state = 12}, + [5316] = {.lex_state = 49, .external_lex_state = 12}, + [5317] = {.lex_state = 49, .external_lex_state = 12}, + [5318] = {.lex_state = 49, .external_lex_state = 12}, + [5319] = {.lex_state = 49, .external_lex_state = 12}, + [5320] = {.lex_state = 49, .external_lex_state = 12}, + [5321] = {.lex_state = 49, .external_lex_state = 12}, + [5322] = {.lex_state = 49, .external_lex_state = 12}, + [5323] = {.lex_state = 49, .external_lex_state = 12}, + [5324] = {.lex_state = 49, .external_lex_state = 12}, + [5325] = {.lex_state = 152, .external_lex_state = 12}, + [5326] = {.lex_state = 152, .external_lex_state = 12}, + [5327] = {.lex_state = 152, .external_lex_state = 12}, + [5328] = {.lex_state = 152, .external_lex_state = 12}, + [5329] = {.lex_state = 152, .external_lex_state = 12}, + [5330] = {.lex_state = 152, .external_lex_state = 12}, + [5331] = {.lex_state = 152, .external_lex_state = 12}, + [5332] = {.lex_state = 152, .external_lex_state = 12}, + [5333] = {.lex_state = 47, .external_lex_state = 12}, + [5334] = {.lex_state = 25, .external_lex_state = 12}, + [5335] = {.lex_state = 25, .external_lex_state = 12}, + [5336] = {.lex_state = 47, .external_lex_state = 12}, + [5337] = {.lex_state = 152, .external_lex_state = 12}, + [5338] = {.lex_state = 152, .external_lex_state = 12}, + [5339] = {.lex_state = 152, .external_lex_state = 12}, + [5340] = {.lex_state = 152, .external_lex_state = 12}, + [5341] = {.lex_state = 25, .external_lex_state = 12}, + [5342] = {.lex_state = 47, .external_lex_state = 12}, + [5343] = {.lex_state = 152, .external_lex_state = 12}, + [5344] = {.lex_state = 152, .external_lex_state = 12}, + [5345] = {.lex_state = 152, .external_lex_state = 12}, + [5346] = {.lex_state = 152, .external_lex_state = 12}, + [5347] = {.lex_state = 152, .external_lex_state = 12}, + [5348] = {.lex_state = 152, .external_lex_state = 12}, + [5349] = {.lex_state = 152, .external_lex_state = 12}, + [5350] = {.lex_state = 152, .external_lex_state = 12}, + [5351] = {.lex_state = 152, .external_lex_state = 12}, + [5352] = {.lex_state = 152, .external_lex_state = 12}, + [5353] = {.lex_state = 152, .external_lex_state = 12}, + [5354] = {.lex_state = 25, .external_lex_state = 12}, + [5355] = {.lex_state = 47, .external_lex_state = 12}, + [5356] = {.lex_state = 152, .external_lex_state = 12}, + [5357] = {.lex_state = 152, .external_lex_state = 12}, + [5358] = {.lex_state = 152, .external_lex_state = 12}, + [5359] = {.lex_state = 152, .external_lex_state = 12}, + [5360] = {.lex_state = 152, .external_lex_state = 12}, + [5361] = {.lex_state = 152, .external_lex_state = 12}, + [5362] = {.lex_state = 152, .external_lex_state = 12}, + [5363] = {.lex_state = 152, .external_lex_state = 12}, + [5364] = {.lex_state = 152, .external_lex_state = 34}, + [5365] = {.lex_state = 152, .external_lex_state = 12}, + [5366] = {.lex_state = 152, .external_lex_state = 12}, + [5367] = {.lex_state = 152, .external_lex_state = 12}, + [5368] = {.lex_state = 152, .external_lex_state = 12}, + [5369] = {.lex_state = 152, .external_lex_state = 12}, + [5370] = {.lex_state = 152, .external_lex_state = 12}, + [5371] = {.lex_state = 152, .external_lex_state = 12}, + [5372] = {.lex_state = 47, .external_lex_state = 12}, + [5373] = {.lex_state = 152, .external_lex_state = 12}, + [5374] = {.lex_state = 152, .external_lex_state = 12}, + [5375] = {.lex_state = 152, .external_lex_state = 12}, + [5376] = {.lex_state = 152, .external_lex_state = 12}, + [5377] = {.lex_state = 152, .external_lex_state = 12}, + [5378] = {.lex_state = 152, .external_lex_state = 12}, + [5379] = {.lex_state = 25, .external_lex_state = 12}, + [5380] = {.lex_state = 152, .external_lex_state = 12}, + [5381] = {.lex_state = 152, .external_lex_state = 12}, + [5382] = {.lex_state = 152, .external_lex_state = 12}, + [5383] = {.lex_state = 152, .external_lex_state = 12}, + [5384] = {.lex_state = 152, .external_lex_state = 12}, + [5385] = {.lex_state = 152, .external_lex_state = 12}, + [5386] = {.lex_state = 152, .external_lex_state = 12}, + [5387] = {.lex_state = 152, .external_lex_state = 12}, + [5388] = {.lex_state = 152, .external_lex_state = 12}, + [5389] = {.lex_state = 152, .external_lex_state = 12}, + [5390] = {.lex_state = 152, .external_lex_state = 12}, + [5391] = {.lex_state = 152, .external_lex_state = 12}, + [5392] = {.lex_state = 152, .external_lex_state = 12}, + [5393] = {.lex_state = 152, .external_lex_state = 12}, + [5394] = {.lex_state = 152, .external_lex_state = 12}, + [5395] = {.lex_state = 152, .external_lex_state = 12}, + [5396] = {.lex_state = 152, .external_lex_state = 12}, + [5397] = {.lex_state = 25, .external_lex_state = 12}, + [5398] = {.lex_state = 47, .external_lex_state = 12}, + [5399] = {.lex_state = 152, .external_lex_state = 12}, + [5400] = {.lex_state = 152, .external_lex_state = 12}, + [5401] = {.lex_state = 152, .external_lex_state = 12}, + [5402] = {.lex_state = 152, .external_lex_state = 12}, + [5403] = {.lex_state = 152, .external_lex_state = 12}, + [5404] = {.lex_state = 152, .external_lex_state = 12}, + [5405] = {.lex_state = 152, .external_lex_state = 12}, + [5406] = {.lex_state = 152, .external_lex_state = 12}, + [5407] = {.lex_state = 152, .external_lex_state = 12}, + [5408] = {.lex_state = 152, .external_lex_state = 12}, + [5409] = {.lex_state = 47, .external_lex_state = 12}, + [5410] = {.lex_state = 25, .external_lex_state = 12}, + [5411] = {.lex_state = 25, .external_lex_state = 12}, + [5412] = {.lex_state = 152, .external_lex_state = 12}, + [5413] = {.lex_state = 152, .external_lex_state = 12}, + [5414] = {.lex_state = 47, .external_lex_state = 12}, + [5415] = {.lex_state = 152, .external_lex_state = 12}, + [5416] = {.lex_state = 152, .external_lex_state = 12}, + [5417] = {.lex_state = 152, .external_lex_state = 12}, + [5418] = {.lex_state = 152, .external_lex_state = 12}, + [5419] = {.lex_state = 152, .external_lex_state = 12}, + [5420] = {.lex_state = 25, .external_lex_state = 12}, + [5421] = {.lex_state = 152, .external_lex_state = 12}, + [5422] = {.lex_state = 152, .external_lex_state = 12}, + [5423] = {.lex_state = 152, .external_lex_state = 12}, + [5424] = {.lex_state = 47, .external_lex_state = 12}, + [5425] = {.lex_state = 152, .external_lex_state = 34}, + [5426] = {.lex_state = 25, .external_lex_state = 12}, + [5427] = {.lex_state = 152, .external_lex_state = 12}, + [5428] = {.lex_state = 152, .external_lex_state = 12}, + [5429] = {.lex_state = 152, .external_lex_state = 12}, + [5430] = {.lex_state = 47, .external_lex_state = 12}, + [5431] = {.lex_state = 152, .external_lex_state = 12}, + [5432] = {.lex_state = 152, .external_lex_state = 12}, + [5433] = {.lex_state = 152, .external_lex_state = 12}, + [5434] = {.lex_state = 152, .external_lex_state = 12}, + [5435] = {.lex_state = 152, .external_lex_state = 12}, + [5436] = {.lex_state = 152, .external_lex_state = 12}, + [5437] = {.lex_state = 152, .external_lex_state = 12}, + [5438] = {.lex_state = 152, .external_lex_state = 12}, + [5439] = {.lex_state = 152, .external_lex_state = 12}, + [5440] = {.lex_state = 25, .external_lex_state = 12}, + [5441] = {.lex_state = 47, .external_lex_state = 12}, + [5442] = {.lex_state = 152, .external_lex_state = 34}, + [5443] = {.lex_state = 152, .external_lex_state = 12}, + [5444] = {.lex_state = 152, .external_lex_state = 12}, + [5445] = {.lex_state = 152, .external_lex_state = 12}, + [5446] = {.lex_state = 152, .external_lex_state = 12}, + [5447] = {.lex_state = 152, .external_lex_state = 12}, + [5448] = {.lex_state = 152, .external_lex_state = 34}, + [5449] = {.lex_state = 152, .external_lex_state = 34}, + [5450] = {.lex_state = 152, .external_lex_state = 34}, + [5451] = {.lex_state = 152, .external_lex_state = 12}, + [5452] = {.lex_state = 152, .external_lex_state = 12}, + [5453] = {.lex_state = 152, .external_lex_state = 12}, + [5454] = {.lex_state = 152, .external_lex_state = 34}, + [5455] = {.lex_state = 152, .external_lex_state = 34}, + [5456] = {.lex_state = 47, .external_lex_state = 12}, + [5457] = {.lex_state = 25, .external_lex_state = 12}, + [5458] = {.lex_state = 152, .external_lex_state = 34}, + [5459] = {.lex_state = 152, .external_lex_state = 12}, +}; + +enum { + ts_external_token__quoted_content_i_single = 0, + ts_external_token__quoted_content_i_double = 1, + ts_external_token__quoted_content_i_heredoc_single = 2, + ts_external_token__quoted_content_i_heredoc_double = 3, + ts_external_token__quoted_content_i_parenthesis = 4, + ts_external_token__quoted_content_i_curly = 5, + ts_external_token__quoted_content_i_square = 6, + ts_external_token__quoted_content_i_angle = 7, + ts_external_token__quoted_content_i_bar = 8, + ts_external_token__quoted_content_i_slash = 9, + ts_external_token__quoted_content_single = 10, + ts_external_token__quoted_content_double = 11, + ts_external_token__quoted_content_heredoc_single = 12, + ts_external_token__quoted_content_heredoc_double = 13, + ts_external_token__quoted_content_parenthesis = 14, + ts_external_token__quoted_content_curly = 15, + ts_external_token__quoted_content_square = 16, + ts_external_token__quoted_content_angle = 17, + ts_external_token__quoted_content_bar = 18, + ts_external_token__quoted_content_slash = 19, + ts_external_token__keyword_special_literal = 20, + ts_external_token__atom_start = 21, + ts_external_token__keyword_end = 22, + ts_external_token__newline_before_do = 23, + ts_external_token__newline_before_binary_op = 24, + ts_external_token__newline_before_comment = 25, + ts_external_token__before_unary_op = 26, + ts_external_token__not_in = 27, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__quoted_content_i_single] = sym__quoted_content_i_single, + [ts_external_token__quoted_content_i_double] = sym__quoted_content_i_double, + [ts_external_token__quoted_content_i_heredoc_single] = sym__quoted_content_i_heredoc_single, + [ts_external_token__quoted_content_i_heredoc_double] = sym__quoted_content_i_heredoc_double, + [ts_external_token__quoted_content_i_parenthesis] = sym__quoted_content_i_parenthesis, + [ts_external_token__quoted_content_i_curly] = sym__quoted_content_i_curly, + [ts_external_token__quoted_content_i_square] = sym__quoted_content_i_square, + [ts_external_token__quoted_content_i_angle] = sym__quoted_content_i_angle, + [ts_external_token__quoted_content_i_bar] = sym__quoted_content_i_bar, + [ts_external_token__quoted_content_i_slash] = sym__quoted_content_i_slash, + [ts_external_token__quoted_content_single] = sym__quoted_content_single, + [ts_external_token__quoted_content_double] = sym__quoted_content_double, + [ts_external_token__quoted_content_heredoc_single] = sym__quoted_content_heredoc_single, + [ts_external_token__quoted_content_heredoc_double] = sym__quoted_content_heredoc_double, + [ts_external_token__quoted_content_parenthesis] = sym__quoted_content_parenthesis, + [ts_external_token__quoted_content_curly] = sym__quoted_content_curly, + [ts_external_token__quoted_content_square] = sym__quoted_content_square, + [ts_external_token__quoted_content_angle] = sym__quoted_content_angle, + [ts_external_token__quoted_content_bar] = sym__quoted_content_bar, + [ts_external_token__quoted_content_slash] = sym__quoted_content_slash, + [ts_external_token__keyword_special_literal] = sym__keyword_special_literal, + [ts_external_token__atom_start] = sym__atom_start, + [ts_external_token__keyword_end] = sym__keyword_end, + [ts_external_token__newline_before_do] = sym__newline_before_do, + [ts_external_token__newline_before_binary_op] = sym__newline_before_binary_op, + [ts_external_token__newline_before_comment] = sym__newline_before_comment, + [ts_external_token__before_unary_op] = sym__before_unary_op, + [ts_external_token__not_in] = sym__not_in, +}; + +static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__quoted_content_i_single] = true, + [ts_external_token__quoted_content_i_double] = true, + [ts_external_token__quoted_content_i_heredoc_single] = true, + [ts_external_token__quoted_content_i_heredoc_double] = true, + [ts_external_token__quoted_content_i_parenthesis] = true, + [ts_external_token__quoted_content_i_curly] = true, + [ts_external_token__quoted_content_i_square] = true, + [ts_external_token__quoted_content_i_angle] = true, + [ts_external_token__quoted_content_i_bar] = true, + [ts_external_token__quoted_content_i_slash] = true, + [ts_external_token__quoted_content_single] = true, + [ts_external_token__quoted_content_double] = true, + [ts_external_token__quoted_content_heredoc_single] = true, + [ts_external_token__quoted_content_heredoc_double] = true, + [ts_external_token__quoted_content_parenthesis] = true, + [ts_external_token__quoted_content_curly] = true, + [ts_external_token__quoted_content_square] = true, + [ts_external_token__quoted_content_angle] = true, + [ts_external_token__quoted_content_bar] = true, + [ts_external_token__quoted_content_slash] = true, + [ts_external_token__keyword_special_literal] = true, + [ts_external_token__atom_start] = true, + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [2] = { + [ts_external_token__atom_start] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [3] = { + [ts_external_token__keyword_special_literal] = true, + [ts_external_token__atom_start] = true, + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [4] = { + [ts_external_token__keyword_special_literal] = true, + [ts_external_token__atom_start] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [5] = { + [ts_external_token__keyword_special_literal] = true, + [ts_external_token__atom_start] = true, + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [6] = { + [ts_external_token__atom_start] = true, + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [7] = { + [ts_external_token__keyword_special_literal] = true, + [ts_external_token__atom_start] = true, + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__before_unary_op] = true, + [ts_external_token__not_in] = true, + }, + [8] = { + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__not_in] = true, + }, + [9] = { + [ts_external_token__keyword_special_literal] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [10] = { + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__not_in] = true, + }, + [11] = { + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_do] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__not_in] = true, + }, + [12] = { + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [13] = { + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + [ts_external_token__not_in] = true, + }, + [14] = { + [ts_external_token__quoted_content_i_slash] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [15] = { + [ts_external_token__quoted_content_i_square] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [16] = { + [ts_external_token__quoted_content_i_double] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [17] = { + [ts_external_token__quoted_content_i_single] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [18] = { + [ts_external_token__quoted_content_i_heredoc_single] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [19] = { + [ts_external_token__quoted_content_i_heredoc_double] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [20] = { + [ts_external_token__quoted_content_i_curly] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [21] = { + [ts_external_token__quoted_content_i_angle] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [22] = { + [ts_external_token__quoted_content_i_bar] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [23] = { + [ts_external_token__quoted_content_i_parenthesis] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [24] = { + [ts_external_token__quoted_content_curly] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [25] = { + [ts_external_token__quoted_content_heredoc_single] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [26] = { + [ts_external_token__quoted_content_slash] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [27] = { + [ts_external_token__quoted_content_angle] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [28] = { + [ts_external_token__quoted_content_bar] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [29] = { + [ts_external_token__quoted_content_parenthesis] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [30] = { + [ts_external_token__quoted_content_square] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [31] = { + [ts_external_token__quoted_content_heredoc_double] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [32] = { + [ts_external_token__quoted_content_single] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [33] = { + [ts_external_token__quoted_content_double] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, + [34] = { + [ts_external_token__keyword_end] = true, + [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_comment] = true, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_TODO] = ACTIONS(1), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [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__alias_single] = ACTIONS(1), + [sym_integer] = ACTIONS(1), + [sym_float] = ACTIONS(1), + [sym__atom_word_literal] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_LT_DASH] = ACTIONS(1), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_AMP_AMP_AMP] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_EQ_TILDE] = ACTIONS(1), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_PIPE_GT] = ACTIONS(1), + [anon_sym_LT_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT_GT] = ACTIONS(1), + [anon_sym_LT_LT_TILDE] = ACTIONS(1), + [anon_sym_TILDE_GT_GT] = ACTIONS(1), + [anon_sym_LT_TILDE] = ACTIONS(1), + [anon_sym_TILDE_GT] = ACTIONS(1), + [anon_sym_LT_TILDE_GT] = ACTIONS(1), + [anon_sym_LT_PIPE_GT] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(1), + [anon_sym_DASH_DASH_DASH] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1), + [anon_sym_PERCENT_LBRACE_RBRACE] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_DOT_DOT_SLASH_SLASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_POUND_LBRACE] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [aux_sym_sigil_token1] = ACTIONS(1), + [aux_sym_sigil_token2] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_when] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_CARET_CARET] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_nil] = ACTIONS(1), + [anon_sym_after] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_end] = ACTIONS(1), + [anon_sym_fn] = ACTIONS(1), + [anon_sym_rescue] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [sym_char] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), + [anon_sym_LBRACK2] = ACTIONS(1), + [sym_comment] = ACTIONS(5), + [sym__quoted_content_i_single] = ACTIONS(1), + [sym__quoted_content_i_double] = ACTIONS(1), + [sym__quoted_content_i_heredoc_single] = ACTIONS(1), + [sym__quoted_content_i_heredoc_double] = ACTIONS(1), + [sym__quoted_content_i_parenthesis] = ACTIONS(1), + [sym__quoted_content_i_curly] = ACTIONS(1), + [sym__quoted_content_i_square] = ACTIONS(1), + [sym__quoted_content_i_angle] = ACTIONS(1), + [sym__quoted_content_i_bar] = ACTIONS(1), + [sym__quoted_content_i_slash] = ACTIONS(1), + [sym__quoted_content_single] = ACTIONS(1), + [sym__quoted_content_double] = ACTIONS(1), + [sym__quoted_content_heredoc_single] = ACTIONS(1), + [sym__quoted_content_heredoc_double] = ACTIONS(1), + [sym__quoted_content_parenthesis] = ACTIONS(1), + [sym__quoted_content_curly] = ACTIONS(1), + [sym__quoted_content_square] = ACTIONS(1), + [sym__quoted_content_angle] = ACTIONS(1), + [sym__quoted_content_bar] = ACTIONS(1), + [sym__quoted_content_slash] = ACTIONS(1), + [sym__keyword_special_literal] = ACTIONS(1), + [sym__atom_start] = ACTIONS(1), + [sym__keyword_end] = ACTIONS(1), + [sym__newline_before_do] = ACTIONS(1), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1), + [sym__not_in] = ACTIONS(1), }, [1] = { - [sym_source] = STATE(3), - [anon_sym_TODO] = ACTIONS(3), + [sym_source] = STATE(5437), + [sym__terminator] = STATE(561), + [sym__expression] = STATE(2968), + [sym_block] = STATE(2968), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(2968), + [sym_atom] = STATE(2968), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(2968), + [sym_charlist] = STATE(2968), + [sym_sigil] = STATE(2968), + [sym_unary_operator] = STATE(2968), + [sym_binary_operator] = STATE(2968), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(2968), + [sym_list] = STATE(2968), + [sym_tuple] = STATE(2968), + [sym_bitstring] = STATE(2968), + [sym_map] = STATE(2968), + [sym_boolean] = STATE(2968), + [sym_nil] = STATE(2968), + [sym_call] = STATE(2968), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(2968), + [sym_anonymous_function] = STATE(2968), + [aux_sym__terminator_repeat1] = STATE(1317), + [ts_builtin_sym_end] = ACTIONS(7), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(23), + [sym_float] = ACTIONS(23), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(23), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [2] = { + [sym__terminator] = STATE(28), + [sym__expression] = STATE(1368), + [sym_block] = STATE(1368), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1368), + [sym_atom] = STATE(1368), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1368), + [sym_charlist] = STATE(1368), + [sym_sigil] = STATE(1368), + [sym_unary_operator] = STATE(1368), + [sym_binary_operator] = STATE(1368), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1368), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1368), + [sym_tuple] = STATE(1368), + [sym_bitstring] = STATE(1368), + [sym_map] = STATE(1368), + [sym_boolean] = STATE(1368), + [sym_nil] = STATE(1368), + [sym_call] = STATE(1368), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1368), + [sym_after_block] = STATE(4111), + [sym_rescue_block] = STATE(4111), + [sym_catch_block] = STATE(4111), + [sym_else_block] = STATE(4111), + [sym_stab_clause] = STATE(4031), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1368), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4111), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(79), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [3] = { + [sym__terminator] = STATE(27), + [sym__expression] = STATE(1369), + [sym_block] = STATE(1369), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1369), + [sym_atom] = STATE(1369), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1369), + [sym_charlist] = STATE(1369), + [sym_sigil] = STATE(1369), + [sym_unary_operator] = STATE(1369), + [sym_binary_operator] = STATE(1369), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1369), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1369), + [sym_tuple] = STATE(1369), + [sym_bitstring] = STATE(1369), + [sym_map] = STATE(1369), + [sym_boolean] = STATE(1369), + [sym_nil] = STATE(1369), + [sym_call] = STATE(1369), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1369), + [sym_after_block] = STATE(4091), + [sym_rescue_block] = STATE(4091), + [sym_catch_block] = STATE(4091), + [sym_else_block] = STATE(4091), + [sym_stab_clause] = STATE(4021), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1369), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4091), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(143), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(145), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(143), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [4] = { + [sym__terminator] = STATE(32), + [sym__expression] = STATE(1381), + [sym_block] = STATE(1381), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1381), + [sym_atom] = STATE(1381), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1381), + [sym_charlist] = STATE(1381), + [sym_sigil] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_binary_operator] = STATE(1381), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1381), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_bitstring] = STATE(1381), + [sym_map] = STATE(1381), + [sym_boolean] = STATE(1381), + [sym_nil] = STATE(1381), + [sym_call] = STATE(1381), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1381), + [sym_after_block] = STATE(4131), + [sym_rescue_block] = STATE(4131), + [sym_catch_block] = STATE(4131), + [sym_else_block] = STATE(4131), + [sym_stab_clause] = STATE(4042), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1381), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4131), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(149), + [sym_float] = ACTIONS(149), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(151), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(149), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [5] = { + [sym__terminator] = STATE(36), + [sym__expression] = STATE(1373), + [sym_block] = STATE(1373), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1373), + [sym_atom] = STATE(1373), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1373), + [sym_charlist] = STATE(1373), + [sym_sigil] = STATE(1373), + [sym_unary_operator] = STATE(1373), + [sym_binary_operator] = STATE(1373), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1373), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1373), + [sym_tuple] = STATE(1373), + [sym_bitstring] = STATE(1373), + [sym_map] = STATE(1373), + [sym_boolean] = STATE(1373), + [sym_nil] = STATE(1373), + [sym_call] = STATE(1373), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1373), + [sym_after_block] = STATE(4090), + [sym_rescue_block] = STATE(4090), + [sym_catch_block] = STATE(4090), + [sym_else_block] = STATE(4090), + [sym_stab_clause] = STATE(4074), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1373), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4090), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(155), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(155), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [6] = { + [sym__terminator] = STATE(31), + [sym__expression] = STATE(1363), + [sym_block] = STATE(1363), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1363), + [sym_atom] = STATE(1363), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1363), + [sym_charlist] = STATE(1363), + [sym_sigil] = STATE(1363), + [sym_unary_operator] = STATE(1363), + [sym_binary_operator] = STATE(1363), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1363), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1363), + [sym_tuple] = STATE(1363), + [sym_bitstring] = STATE(1363), + [sym_map] = STATE(1363), + [sym_boolean] = STATE(1363), + [sym_nil] = STATE(1363), + [sym_call] = STATE(1363), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1363), + [sym_after_block] = STATE(4108), + [sym_rescue_block] = STATE(4108), + [sym_catch_block] = STATE(4108), + [sym_else_block] = STATE(4108), + [sym_stab_clause] = STATE(4011), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1363), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4108), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(161), + [sym_float] = ACTIONS(161), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(163), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(161), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [7] = { + [sym__terminator] = STATE(34), + [sym__expression] = STATE(1364), + [sym_block] = STATE(1364), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1364), + [sym_atom] = STATE(1364), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1364), + [sym_charlist] = STATE(1364), + [sym_sigil] = STATE(1364), + [sym_unary_operator] = STATE(1364), + [sym_binary_operator] = STATE(1364), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1364), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1364), + [sym_tuple] = STATE(1364), + [sym_bitstring] = STATE(1364), + [sym_map] = STATE(1364), + [sym_boolean] = STATE(1364), + [sym_nil] = STATE(1364), + [sym_call] = STATE(1364), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1364), + [sym_after_block] = STATE(4100), + [sym_rescue_block] = STATE(4100), + [sym_catch_block] = STATE(4100), + [sym_else_block] = STATE(4100), + [sym_stab_clause] = STATE(4024), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1364), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4100), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(167), + [sym_float] = ACTIONS(167), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(167), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [8] = { + [sym__terminator] = STATE(37), + [sym__expression] = STATE(1382), + [sym_block] = STATE(1382), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1382), + [sym_atom] = STATE(1382), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1382), + [sym_charlist] = STATE(1382), + [sym_sigil] = STATE(1382), + [sym_unary_operator] = STATE(1382), + [sym_binary_operator] = STATE(1382), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1382), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1382), + [sym_tuple] = STATE(1382), + [sym_bitstring] = STATE(1382), + [sym_map] = STATE(1382), + [sym_boolean] = STATE(1382), + [sym_nil] = STATE(1382), + [sym_call] = STATE(1382), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1382), + [sym_after_block] = STATE(4107), + [sym_rescue_block] = STATE(4107), + [sym_catch_block] = STATE(4107), + [sym_else_block] = STATE(4107), + [sym_stab_clause] = STATE(4047), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1382), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4107), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(175), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [9] = { + [sym__terminator] = STATE(33), + [sym__expression] = STATE(1378), + [sym_block] = STATE(1378), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1378), + [sym_atom] = STATE(1378), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1378), + [sym_charlist] = STATE(1378), + [sym_sigil] = STATE(1378), + [sym_unary_operator] = STATE(1378), + [sym_binary_operator] = STATE(1378), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1378), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1378), + [sym_tuple] = STATE(1378), + [sym_bitstring] = STATE(1378), + [sym_map] = STATE(1378), + [sym_boolean] = STATE(1378), + [sym_nil] = STATE(1378), + [sym_call] = STATE(1378), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1378), + [sym_after_block] = STATE(4087), + [sym_rescue_block] = STATE(4087), + [sym_catch_block] = STATE(4087), + [sym_else_block] = STATE(4087), + [sym_stab_clause] = STATE(4058), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1378), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4087), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(179), + [sym_float] = ACTIONS(179), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(181), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(179), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [10] = { + [sym__terminator] = STATE(26), + [sym__expression] = STATE(1362), + [sym_block] = STATE(1362), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1362), + [sym_atom] = STATE(1362), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1362), + [sym_charlist] = STATE(1362), + [sym_sigil] = STATE(1362), + [sym_unary_operator] = STATE(1362), + [sym_binary_operator] = STATE(1362), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1362), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1362), + [sym_tuple] = STATE(1362), + [sym_bitstring] = STATE(1362), + [sym_map] = STATE(1362), + [sym_boolean] = STATE(1362), + [sym_nil] = STATE(1362), + [sym_call] = STATE(1362), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1362), + [sym_after_block] = STATE(4127), + [sym_rescue_block] = STATE(4127), + [sym_catch_block] = STATE(4127), + [sym_else_block] = STATE(4127), + [sym_stab_clause] = STATE(4051), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1362), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4127), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(185), + [sym_float] = ACTIONS(185), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(187), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [11] = { + [sym__terminator] = STATE(29), + [sym__expression] = STATE(1367), + [sym_block] = STATE(1367), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1367), + [sym_atom] = STATE(1367), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1367), + [sym_charlist] = STATE(1367), + [sym_sigil] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_binary_operator] = STATE(1367), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1367), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_bitstring] = STATE(1367), + [sym_map] = STATE(1367), + [sym_boolean] = STATE(1367), + [sym_nil] = STATE(1367), + [sym_call] = STATE(1367), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1367), + [sym_after_block] = STATE(4079), + [sym_rescue_block] = STATE(4079), + [sym_catch_block] = STATE(4079), + [sym_else_block] = STATE(4079), + [sym_stab_clause] = STATE(4069), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1367), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4079), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(191), + [sym_float] = ACTIONS(191), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(191), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [12] = { + [sym__terminator] = STATE(30), + [sym__expression] = STATE(1366), + [sym_block] = STATE(1366), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1366), + [sym_atom] = STATE(1366), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1366), + [sym_charlist] = STATE(1366), + [sym_sigil] = STATE(1366), + [sym_unary_operator] = STATE(1366), + [sym_binary_operator] = STATE(1366), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1366), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1366), + [sym_tuple] = STATE(1366), + [sym_bitstring] = STATE(1366), + [sym_map] = STATE(1366), + [sym_boolean] = STATE(1366), + [sym_nil] = STATE(1366), + [sym_call] = STATE(1366), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1366), + [sym_after_block] = STATE(4082), + [sym_rescue_block] = STATE(4082), + [sym_catch_block] = STATE(4082), + [sym_else_block] = STATE(4082), + [sym_stab_clause] = STATE(4012), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1366), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4082), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(197), + [sym_float] = ACTIONS(197), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(199), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(197), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [13] = { + [sym__terminator] = STATE(35), + [sym__expression] = STATE(1375), + [sym_block] = STATE(1375), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1375), + [sym_atom] = STATE(1375), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1375), + [sym_charlist] = STATE(1375), + [sym_sigil] = STATE(1375), + [sym_unary_operator] = STATE(1375), + [sym_binary_operator] = STATE(1375), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1375), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1375), + [sym_tuple] = STATE(1375), + [sym_bitstring] = STATE(1375), + [sym_map] = STATE(1375), + [sym_boolean] = STATE(1375), + [sym_nil] = STATE(1375), + [sym_call] = STATE(1375), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1375), + [sym_after_block] = STATE(4132), + [sym_rescue_block] = STATE(4132), + [sym_catch_block] = STATE(4132), + [sym_else_block] = STATE(4132), + [sym_stab_clause] = STATE(4048), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1375), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4132), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(203), + [sym_float] = ACTIONS(203), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(205), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(203), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [14] = { + [sym__terminator] = STATE(33), + [sym__expression] = STATE(1378), + [sym_block] = STATE(1378), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1378), + [sym_atom] = STATE(1378), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1378), + [sym_charlist] = STATE(1378), + [sym_sigil] = STATE(1378), + [sym_unary_operator] = STATE(1378), + [sym_binary_operator] = STATE(1378), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1378), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1378), + [sym_tuple] = STATE(1378), + [sym_bitstring] = STATE(1378), + [sym_map] = STATE(1378), + [sym_boolean] = STATE(1378), + [sym_nil] = STATE(1378), + [sym_call] = STATE(1378), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1378), + [sym_after_block] = STATE(4087), + [sym_rescue_block] = STATE(4087), + [sym_catch_block] = STATE(4087), + [sym_else_block] = STATE(4087), + [sym_stab_clause] = STATE(4058), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1378), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4087), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(179), + [sym_float] = ACTIONS(179), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(181), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(179), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [15] = { + [sym__terminator] = STATE(26), + [sym__expression] = STATE(1362), + [sym_block] = STATE(1362), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1362), + [sym_atom] = STATE(1362), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1362), + [sym_charlist] = STATE(1362), + [sym_sigil] = STATE(1362), + [sym_unary_operator] = STATE(1362), + [sym_binary_operator] = STATE(1362), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1362), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1362), + [sym_tuple] = STATE(1362), + [sym_bitstring] = STATE(1362), + [sym_map] = STATE(1362), + [sym_boolean] = STATE(1362), + [sym_nil] = STATE(1362), + [sym_call] = STATE(1362), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1362), + [sym_after_block] = STATE(4127), + [sym_rescue_block] = STATE(4127), + [sym_catch_block] = STATE(4127), + [sym_else_block] = STATE(4127), + [sym_stab_clause] = STATE(4051), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1362), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4127), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(185), + [sym_float] = ACTIONS(185), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(187), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(185), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [16] = { + [sym__terminator] = STATE(27), + [sym__expression] = STATE(1369), + [sym_block] = STATE(1369), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1369), + [sym_atom] = STATE(1369), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1369), + [sym_charlist] = STATE(1369), + [sym_sigil] = STATE(1369), + [sym_unary_operator] = STATE(1369), + [sym_binary_operator] = STATE(1369), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1369), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1369), + [sym_tuple] = STATE(1369), + [sym_bitstring] = STATE(1369), + [sym_map] = STATE(1369), + [sym_boolean] = STATE(1369), + [sym_nil] = STATE(1369), + [sym_call] = STATE(1369), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1369), + [sym_after_block] = STATE(4091), + [sym_rescue_block] = STATE(4091), + [sym_catch_block] = STATE(4091), + [sym_else_block] = STATE(4091), + [sym_stab_clause] = STATE(4021), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1369), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4091), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(143), + [sym_float] = ACTIONS(143), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(145), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(143), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [17] = { + [sym__terminator] = STATE(35), + [sym__expression] = STATE(1375), + [sym_block] = STATE(1375), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1375), + [sym_atom] = STATE(1375), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1375), + [sym_charlist] = STATE(1375), + [sym_sigil] = STATE(1375), + [sym_unary_operator] = STATE(1375), + [sym_binary_operator] = STATE(1375), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1375), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1375), + [sym_tuple] = STATE(1375), + [sym_bitstring] = STATE(1375), + [sym_map] = STATE(1375), + [sym_boolean] = STATE(1375), + [sym_nil] = STATE(1375), + [sym_call] = STATE(1375), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1375), + [sym_after_block] = STATE(4132), + [sym_rescue_block] = STATE(4132), + [sym_catch_block] = STATE(4132), + [sym_else_block] = STATE(4132), + [sym_stab_clause] = STATE(4048), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1375), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4132), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(203), + [sym_float] = ACTIONS(203), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(205), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(203), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [18] = { + [sym__terminator] = STATE(29), + [sym__expression] = STATE(1367), + [sym_block] = STATE(1367), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1367), + [sym_atom] = STATE(1367), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1367), + [sym_charlist] = STATE(1367), + [sym_sigil] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_binary_operator] = STATE(1367), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1367), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_bitstring] = STATE(1367), + [sym_map] = STATE(1367), + [sym_boolean] = STATE(1367), + [sym_nil] = STATE(1367), + [sym_call] = STATE(1367), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1367), + [sym_after_block] = STATE(4079), + [sym_rescue_block] = STATE(4079), + [sym_catch_block] = STATE(4079), + [sym_else_block] = STATE(4079), + [sym_stab_clause] = STATE(4069), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1367), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4079), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(191), + [sym_float] = ACTIONS(191), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(191), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [19] = { + [sym__terminator] = STATE(37), + [sym__expression] = STATE(1382), + [sym_block] = STATE(1382), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1382), + [sym_atom] = STATE(1382), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1382), + [sym_charlist] = STATE(1382), + [sym_sigil] = STATE(1382), + [sym_unary_operator] = STATE(1382), + [sym_binary_operator] = STATE(1382), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1382), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1382), + [sym_tuple] = STATE(1382), + [sym_bitstring] = STATE(1382), + [sym_map] = STATE(1382), + [sym_boolean] = STATE(1382), + [sym_nil] = STATE(1382), + [sym_call] = STATE(1382), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1382), + [sym_after_block] = STATE(4107), + [sym_rescue_block] = STATE(4107), + [sym_catch_block] = STATE(4107), + [sym_else_block] = STATE(4107), + [sym_stab_clause] = STATE(4047), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1382), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4107), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(175), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(173), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [20] = { + [sym__terminator] = STATE(31), + [sym__expression] = STATE(1363), + [sym_block] = STATE(1363), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1363), + [sym_atom] = STATE(1363), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1363), + [sym_charlist] = STATE(1363), + [sym_sigil] = STATE(1363), + [sym_unary_operator] = STATE(1363), + [sym_binary_operator] = STATE(1363), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1363), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1363), + [sym_tuple] = STATE(1363), + [sym_bitstring] = STATE(1363), + [sym_map] = STATE(1363), + [sym_boolean] = STATE(1363), + [sym_nil] = STATE(1363), + [sym_call] = STATE(1363), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1363), + [sym_after_block] = STATE(4108), + [sym_rescue_block] = STATE(4108), + [sym_catch_block] = STATE(4108), + [sym_else_block] = STATE(4108), + [sym_stab_clause] = STATE(4011), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1363), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4108), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(161), + [sym_float] = ACTIONS(161), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(163), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(161), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [21] = { + [sym__terminator] = STATE(30), + [sym__expression] = STATE(1366), + [sym_block] = STATE(1366), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1366), + [sym_atom] = STATE(1366), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1366), + [sym_charlist] = STATE(1366), + [sym_sigil] = STATE(1366), + [sym_unary_operator] = STATE(1366), + [sym_binary_operator] = STATE(1366), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1366), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1366), + [sym_tuple] = STATE(1366), + [sym_bitstring] = STATE(1366), + [sym_map] = STATE(1366), + [sym_boolean] = STATE(1366), + [sym_nil] = STATE(1366), + [sym_call] = STATE(1366), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1366), + [sym_after_block] = STATE(4082), + [sym_rescue_block] = STATE(4082), + [sym_catch_block] = STATE(4082), + [sym_else_block] = STATE(4082), + [sym_stab_clause] = STATE(4012), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1366), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4082), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(197), + [sym_float] = ACTIONS(197), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(199), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(197), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [22] = { + [sym__terminator] = STATE(36), + [sym__expression] = STATE(1373), + [sym_block] = STATE(1373), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1373), + [sym_atom] = STATE(1373), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1373), + [sym_charlist] = STATE(1373), + [sym_sigil] = STATE(1373), + [sym_unary_operator] = STATE(1373), + [sym_binary_operator] = STATE(1373), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1373), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1373), + [sym_tuple] = STATE(1373), + [sym_bitstring] = STATE(1373), + [sym_map] = STATE(1373), + [sym_boolean] = STATE(1373), + [sym_nil] = STATE(1373), + [sym_call] = STATE(1373), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1373), + [sym_after_block] = STATE(4090), + [sym_rescue_block] = STATE(4090), + [sym_catch_block] = STATE(4090), + [sym_else_block] = STATE(4090), + [sym_stab_clause] = STATE(4074), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1373), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4090), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(155), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(155), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [23] = { + [sym__terminator] = STATE(34), + [sym__expression] = STATE(1364), + [sym_block] = STATE(1364), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1364), + [sym_atom] = STATE(1364), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1364), + [sym_charlist] = STATE(1364), + [sym_sigil] = STATE(1364), + [sym_unary_operator] = STATE(1364), + [sym_binary_operator] = STATE(1364), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1364), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1364), + [sym_tuple] = STATE(1364), + [sym_bitstring] = STATE(1364), + [sym_map] = STATE(1364), + [sym_boolean] = STATE(1364), + [sym_nil] = STATE(1364), + [sym_call] = STATE(1364), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1364), + [sym_after_block] = STATE(4100), + [sym_rescue_block] = STATE(4100), + [sym_catch_block] = STATE(4100), + [sym_else_block] = STATE(4100), + [sym_stab_clause] = STATE(4024), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1364), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4100), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(167), + [sym_float] = ACTIONS(167), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(167), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [24] = { + [sym__terminator] = STATE(32), + [sym__expression] = STATE(1381), + [sym_block] = STATE(1381), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1381), + [sym_atom] = STATE(1381), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1381), + [sym_charlist] = STATE(1381), + [sym_sigil] = STATE(1381), + [sym_unary_operator] = STATE(1381), + [sym_binary_operator] = STATE(1381), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1381), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1381), + [sym_tuple] = STATE(1381), + [sym_bitstring] = STATE(1381), + [sym_map] = STATE(1381), + [sym_boolean] = STATE(1381), + [sym_nil] = STATE(1381), + [sym_call] = STATE(1381), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1381), + [sym_after_block] = STATE(4131), + [sym_rescue_block] = STATE(4131), + [sym_catch_block] = STATE(4131), + [sym_else_block] = STATE(4131), + [sym_stab_clause] = STATE(4042), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1381), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4131), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(149), + [sym_float] = ACTIONS(149), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(151), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(149), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [25] = { + [sym__terminator] = STATE(28), + [sym__expression] = STATE(1368), + [sym_block] = STATE(1368), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1368), + [sym_atom] = STATE(1368), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1368), + [sym_charlist] = STATE(1368), + [sym_sigil] = STATE(1368), + [sym_unary_operator] = STATE(1368), + [sym_binary_operator] = STATE(1368), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1368), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1368), + [sym_tuple] = STATE(1368), + [sym_bitstring] = STATE(1368), + [sym_map] = STATE(1368), + [sym_boolean] = STATE(1368), + [sym_nil] = STATE(1368), + [sym_call] = STATE(1368), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1368), + [sym_after_block] = STATE(4111), + [sym_rescue_block] = STATE(4111), + [sym_catch_block] = STATE(4111), + [sym_else_block] = STATE(4111), + [sym_stab_clause] = STATE(4031), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1368), + [aux_sym__terminator_repeat1] = STATE(1306), + [aux_sym_do_block_repeat3] = STATE(4111), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(79), + [sym_float] = ACTIONS(79), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(79), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [26] = { + [sym__expression] = STATE(1379), + [sym_block] = STATE(1379), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1379), + [sym_atom] = STATE(1379), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1379), + [sym_charlist] = STATE(1379), + [sym_sigil] = STATE(1379), + [sym_unary_operator] = STATE(1379), + [sym_binary_operator] = STATE(1379), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1379), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1379), + [sym_tuple] = STATE(1379), + [sym_bitstring] = STATE(1379), + [sym_map] = STATE(1379), + [sym_boolean] = STATE(1379), + [sym_nil] = STATE(1379), + [sym_call] = STATE(1379), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1379), + [sym_after_block] = STATE(4076), + [sym_rescue_block] = STATE(4076), + [sym_catch_block] = STATE(4076), + [sym_else_block] = STATE(4076), + [sym_stab_clause] = STATE(4005), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1379), + [aux_sym_do_block_repeat3] = STATE(4076), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(207), + [sym_float] = ACTIONS(207), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(209), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(207), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [27] = { + [sym__expression] = STATE(1372), + [sym_block] = STATE(1372), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1372), + [sym_atom] = STATE(1372), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1372), + [sym_charlist] = STATE(1372), + [sym_sigil] = STATE(1372), + [sym_unary_operator] = STATE(1372), + [sym_binary_operator] = STATE(1372), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1372), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1372), + [sym_tuple] = STATE(1372), + [sym_bitstring] = STATE(1372), + [sym_map] = STATE(1372), + [sym_boolean] = STATE(1372), + [sym_nil] = STATE(1372), + [sym_call] = STATE(1372), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1372), + [sym_after_block] = STATE(4080), + [sym_rescue_block] = STATE(4080), + [sym_catch_block] = STATE(4080), + [sym_else_block] = STATE(4080), + [sym_stab_clause] = STATE(4010), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1372), + [aux_sym_do_block_repeat3] = STATE(4080), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(211), + [sym_float] = ACTIONS(211), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(213), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(211), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [28] = { + [sym__expression] = STATE(1374), + [sym_block] = STATE(1374), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1374), + [sym_atom] = STATE(1374), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1374), + [sym_charlist] = STATE(1374), + [sym_sigil] = STATE(1374), + [sym_unary_operator] = STATE(1374), + [sym_binary_operator] = STATE(1374), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1374), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1374), + [sym_tuple] = STATE(1374), + [sym_bitstring] = STATE(1374), + [sym_map] = STATE(1374), + [sym_boolean] = STATE(1374), + [sym_nil] = STATE(1374), + [sym_call] = STATE(1374), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1374), + [sym_after_block] = STATE(4133), + [sym_rescue_block] = STATE(4133), + [sym_catch_block] = STATE(4133), + [sym_else_block] = STATE(4133), + [sym_stab_clause] = STATE(4044), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1374), + [aux_sym_do_block_repeat3] = STATE(4133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(215), + [sym_float] = ACTIONS(215), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(217), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(215), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [29] = { + [sym__expression] = STATE(1384), + [sym_block] = STATE(1384), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1384), + [sym_atom] = STATE(1384), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1384), + [sym_charlist] = STATE(1384), + [sym_sigil] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym_binary_operator] = STATE(1384), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1384), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_bitstring] = STATE(1384), + [sym_map] = STATE(1384), + [sym_boolean] = STATE(1384), + [sym_nil] = STATE(1384), + [sym_call] = STATE(1384), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1384), + [sym_after_block] = STATE(4113), + [sym_rescue_block] = STATE(4113), + [sym_catch_block] = STATE(4113), + [sym_else_block] = STATE(4113), + [sym_stab_clause] = STATE(4065), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1384), + [aux_sym_do_block_repeat3] = STATE(4113), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(219), + [sym_float] = ACTIONS(219), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(219), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [30] = { + [sym__expression] = STATE(1370), + [sym_block] = STATE(1370), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1370), + [sym_atom] = STATE(1370), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1370), + [sym_charlist] = STATE(1370), + [sym_sigil] = STATE(1370), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1370), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1370), + [sym_tuple] = STATE(1370), + [sym_bitstring] = STATE(1370), + [sym_map] = STATE(1370), + [sym_boolean] = STATE(1370), + [sym_nil] = STATE(1370), + [sym_call] = STATE(1370), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1370), + [sym_after_block] = STATE(4092), + [sym_rescue_block] = STATE(4092), + [sym_catch_block] = STATE(4092), + [sym_else_block] = STATE(4092), + [sym_stab_clause] = STATE(4019), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1370), + [aux_sym_do_block_repeat3] = STATE(4092), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(223), + [sym_float] = ACTIONS(223), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(225), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(223), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [31] = { + [sym__expression] = STATE(1385), + [sym_block] = STATE(1385), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1385), + [sym_atom] = STATE(1385), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1385), + [sym_charlist] = STATE(1385), + [sym_sigil] = STATE(1385), + [sym_unary_operator] = STATE(1385), + [sym_binary_operator] = STATE(1385), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1385), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1385), + [sym_tuple] = STATE(1385), + [sym_bitstring] = STATE(1385), + [sym_map] = STATE(1385), + [sym_boolean] = STATE(1385), + [sym_nil] = STATE(1385), + [sym_call] = STATE(1385), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1385), + [sym_after_block] = STATE(4103), + [sym_rescue_block] = STATE(4103), + [sym_catch_block] = STATE(4103), + [sym_else_block] = STATE(4103), + [sym_stab_clause] = STATE(4006), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1385), + [aux_sym_do_block_repeat3] = STATE(4103), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(227), + [sym_float] = ACTIONS(227), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(229), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [32] = { + [sym__expression] = STATE(1383), + [sym_block] = STATE(1383), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1383), + [sym_atom] = STATE(1383), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1383), + [sym_charlist] = STATE(1383), + [sym_sigil] = STATE(1383), + [sym_unary_operator] = STATE(1383), + [sym_binary_operator] = STATE(1383), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1383), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1383), + [sym_tuple] = STATE(1383), + [sym_bitstring] = STATE(1383), + [sym_map] = STATE(1383), + [sym_boolean] = STATE(1383), + [sym_nil] = STATE(1383), + [sym_call] = STATE(1383), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1383), + [sym_after_block] = STATE(4125), + [sym_rescue_block] = STATE(4125), + [sym_catch_block] = STATE(4125), + [sym_else_block] = STATE(4125), + [sym_stab_clause] = STATE(4039), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1383), + [aux_sym_do_block_repeat3] = STATE(4125), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(231), + [sym_float] = ACTIONS(231), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(233), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(231), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [33] = { + [sym__expression] = STATE(1380), + [sym_block] = STATE(1380), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1380), + [sym_atom] = STATE(1380), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1380), + [sym_charlist] = STATE(1380), + [sym_sigil] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_binary_operator] = STATE(1380), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1380), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_bitstring] = STATE(1380), + [sym_map] = STATE(1380), + [sym_boolean] = STATE(1380), + [sym_nil] = STATE(1380), + [sym_call] = STATE(1380), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1380), + [sym_after_block] = STATE(4117), + [sym_rescue_block] = STATE(4117), + [sym_catch_block] = STATE(4117), + [sym_else_block] = STATE(4117), + [sym_stab_clause] = STATE(4061), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1380), + [aux_sym_do_block_repeat3] = STATE(4117), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(235), + [sym_float] = ACTIONS(235), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(237), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [34] = { + [sym__expression] = STATE(1377), + [sym_block] = STATE(1377), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1377), + [sym_atom] = STATE(1377), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1377), + [sym_charlist] = STATE(1377), + [sym_sigil] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_binary_operator] = STATE(1377), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1377), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_bitstring] = STATE(1377), + [sym_map] = STATE(1377), + [sym_boolean] = STATE(1377), + [sym_nil] = STATE(1377), + [sym_call] = STATE(1377), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1377), + [sym_after_block] = STATE(4093), + [sym_rescue_block] = STATE(4093), + [sym_catch_block] = STATE(4093), + [sym_else_block] = STATE(4093), + [sym_stab_clause] = STATE(4020), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1377), + [aux_sym_do_block_repeat3] = STATE(4093), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(239), + [sym_float] = ACTIONS(239), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(241), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(239), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [35] = { + [sym__expression] = STATE(1376), + [sym_block] = STATE(1376), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1376), + [sym_atom] = STATE(1376), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1376), + [sym_charlist] = STATE(1376), + [sym_sigil] = STATE(1376), + [sym_unary_operator] = STATE(1376), + [sym_binary_operator] = STATE(1376), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1376), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1376), + [sym_tuple] = STATE(1376), + [sym_bitstring] = STATE(1376), + [sym_map] = STATE(1376), + [sym_boolean] = STATE(1376), + [sym_nil] = STATE(1376), + [sym_call] = STATE(1376), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1376), + [sym_after_block] = STATE(4128), + [sym_rescue_block] = STATE(4128), + [sym_catch_block] = STATE(4128), + [sym_else_block] = STATE(4128), + [sym_stab_clause] = STATE(4043), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1376), + [aux_sym_do_block_repeat3] = STATE(4128), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(243), + [sym_float] = ACTIONS(243), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(245), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(243), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [36] = { + [sym__expression] = STATE(1365), + [sym_block] = STATE(1365), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1365), + [sym_atom] = STATE(1365), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1365), + [sym_charlist] = STATE(1365), + [sym_sigil] = STATE(1365), + [sym_unary_operator] = STATE(1365), + [sym_binary_operator] = STATE(1365), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1365), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1365), + [sym_tuple] = STATE(1365), + [sym_bitstring] = STATE(1365), + [sym_map] = STATE(1365), + [sym_boolean] = STATE(1365), + [sym_nil] = STATE(1365), + [sym_call] = STATE(1365), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1365), + [sym_after_block] = STATE(4109), + [sym_rescue_block] = STATE(4109), + [sym_catch_block] = STATE(4109), + [sym_else_block] = STATE(4109), + [sym_stab_clause] = STATE(4066), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1365), + [aux_sym_do_block_repeat3] = STATE(4109), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(247), + [sym_float] = ACTIONS(247), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(249), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(247), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [37] = { + [sym__expression] = STATE(1371), + [sym_block] = STATE(1371), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1371), + [sym_atom] = STATE(1371), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1371), + [sym_charlist] = STATE(1371), + [sym_sigil] = STATE(1371), + [sym_unary_operator] = STATE(1371), + [sym_binary_operator] = STATE(1371), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1371), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1371), + [sym_tuple] = STATE(1371), + [sym_bitstring] = STATE(1371), + [sym_map] = STATE(1371), + [sym_boolean] = STATE(1371), + [sym_nil] = STATE(1371), + [sym_call] = STATE(1371), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1371), + [sym_after_block] = STATE(4104), + [sym_rescue_block] = STATE(4104), + [sym_catch_block] = STATE(4104), + [sym_else_block] = STATE(4104), + [sym_stab_clause] = STATE(4026), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1371), + [aux_sym_do_block_repeat3] = STATE(4104), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(251), + [sym_float] = ACTIONS(251), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(119), + [anon_sym_catch] = ACTIONS(121), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(123), + [anon_sym_end] = ACTIONS(253), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(129), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(251), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [38] = { + [sym__terminator] = STATE(157), + [sym__expression] = STATE(2227), + [sym_block] = STATE(2227), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2227), + [sym_atom] = STATE(2227), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2227), + [sym_charlist] = STATE(2227), + [sym_sigil] = STATE(2227), + [sym_unary_operator] = STATE(2227), + [sym_binary_operator] = STATE(2227), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2227), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2227), + [sym_tuple] = STATE(2227), + [sym_bitstring] = STATE(2227), + [sym_map] = STATE(2227), + [sym_boolean] = STATE(2227), + [sym_nil] = STATE(2227), + [sym_call] = STATE(2227), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2227), + [sym_stab_clause] = STATE(4787), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5243), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2227), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(257), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(259), + [sym_float] = ACTIONS(259), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(259), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [39] = { + [sym__terminator] = STATE(157), + [sym__expression] = STATE(2272), + [sym_block] = STATE(2272), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2272), + [sym_atom] = STATE(2272), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2272), + [sym_charlist] = STATE(2272), + [sym_sigil] = STATE(2272), + [sym_unary_operator] = STATE(2272), + [sym_binary_operator] = STATE(2272), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2272), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2272), + [sym_tuple] = STATE(2272), + [sym_bitstring] = STATE(2272), + [sym_map] = STATE(2272), + [sym_boolean] = STATE(2272), + [sym_nil] = STATE(2272), + [sym_call] = STATE(2272), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2272), + [sym_stab_clause] = STATE(4787), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2272), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(275), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(277), + [sym_float] = ACTIONS(277), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [40] = { + [sym__terminator] = STATE(170), + [sym__expression] = STATE(2250), + [sym_block] = STATE(2250), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2250), + [sym_atom] = STATE(2250), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2250), + [sym_charlist] = STATE(2250), + [sym_sigil] = STATE(2250), + [sym_unary_operator] = STATE(2250), + [sym_binary_operator] = STATE(2250), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2250), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2250), + [sym_tuple] = STATE(2250), + [sym_bitstring] = STATE(2250), + [sym_map] = STATE(2250), + [sym_boolean] = STATE(2250), + [sym_nil] = STATE(2250), + [sym_call] = STATE(2250), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2250), + [sym_stab_clause] = STATE(4811), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2250), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(281), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(283), + [sym_float] = ACTIONS(283), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [41] = { + [sym__terminator] = STATE(137), + [sym__expression] = STATE(2257), + [sym_block] = STATE(2257), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2257), + [sym_atom] = STATE(2257), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2257), + [sym_charlist] = STATE(2257), + [sym_sigil] = STATE(2257), + [sym_unary_operator] = STATE(2257), + [sym_binary_operator] = STATE(2257), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2257), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2257), + [sym_tuple] = STATE(2257), + [sym_bitstring] = STATE(2257), + [sym_map] = STATE(2257), + [sym_boolean] = STATE(2257), + [sym_nil] = STATE(2257), + [sym_call] = STATE(2257), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2257), + [sym_stab_clause] = STATE(4822), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2257), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(287), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(289), + [sym_float] = ACTIONS(289), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(289), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [42] = { + [sym__terminator] = STATE(199), + [sym__expression] = STATE(1470), + [sym_block] = STATE(1470), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1470), + [sym_atom] = STATE(1470), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1470), + [sym_charlist] = STATE(1470), + [sym_sigil] = STATE(1470), + [sym_unary_operator] = STATE(1470), + [sym_binary_operator] = STATE(1470), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1470), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1470), + [sym_tuple] = STATE(1470), + [sym_bitstring] = STATE(1470), + [sym_map] = STATE(1470), + [sym_boolean] = STATE(1470), + [sym_nil] = STATE(1470), + [sym_call] = STATE(1470), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1470), + [sym_stab_clause] = STATE(4157), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1470), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(293), + [sym_float] = ACTIONS(293), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(295), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(295), + [anon_sym_end] = ACTIONS(295), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(295), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(293), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [43] = { + [sym__terminator] = STATE(198), + [sym__expression] = STATE(1472), + [sym_block] = STATE(1472), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1472), + [sym_atom] = STATE(1472), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1472), + [sym_charlist] = STATE(1472), + [sym_sigil] = STATE(1472), + [sym_unary_operator] = STATE(1472), + [sym_binary_operator] = STATE(1472), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1472), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1472), + [sym_tuple] = STATE(1472), + [sym_bitstring] = STATE(1472), + [sym_map] = STATE(1472), + [sym_boolean] = STATE(1472), + [sym_nil] = STATE(1472), + [sym_call] = STATE(1472), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1472), + [sym_stab_clause] = STATE(4156), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1472), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(298), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(300), + [sym_float] = ACTIONS(300), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(302), + [anon_sym_catch] = ACTIONS(302), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(302), + [anon_sym_end] = ACTIONS(302), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(300), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [44] = { + [sym__terminator] = STATE(197), + [sym__expression] = STATE(1474), + [sym_block] = STATE(1474), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1474), + [sym_atom] = STATE(1474), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1474), + [sym_charlist] = STATE(1474), + [sym_sigil] = STATE(1474), + [sym_unary_operator] = STATE(1474), + [sym_binary_operator] = STATE(1474), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1474), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1474), + [sym_tuple] = STATE(1474), + [sym_bitstring] = STATE(1474), + [sym_map] = STATE(1474), + [sym_boolean] = STATE(1474), + [sym_nil] = STATE(1474), + [sym_call] = STATE(1474), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1474), + [sym_stab_clause] = STATE(4149), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1474), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(307), + [sym_float] = ACTIONS(307), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(309), + [anon_sym_catch] = ACTIONS(309), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(309), + [anon_sym_end] = ACTIONS(309), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(307), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [45] = { + [sym__terminator] = STATE(159), + [sym__expression] = STATE(2107), + [sym_block] = STATE(2107), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2107), + [sym_atom] = STATE(2107), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2107), + [sym_charlist] = STATE(2107), + [sym_sigil] = STATE(2107), + [sym_unary_operator] = STATE(2107), + [sym_binary_operator] = STATE(2107), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2107), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2107), + [sym_tuple] = STATE(2107), + [sym_bitstring] = STATE(2107), + [sym_map] = STATE(2107), + [sym_boolean] = STATE(2107), + [sym_nil] = STATE(2107), + [sym_call] = STATE(2107), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2107), + [sym_stab_clause] = STATE(4740), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2107), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(314), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(316), + [sym_float] = ACTIONS(316), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(316), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [46] = { + [sym__terminator] = STATE(200), + [sym__expression] = STATE(1468), + [sym_block] = STATE(1468), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1468), + [sym_atom] = STATE(1468), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1468), + [sym_charlist] = STATE(1468), + [sym_sigil] = STATE(1468), + [sym_unary_operator] = STATE(1468), + [sym_binary_operator] = STATE(1468), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1468), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1468), + [sym_tuple] = STATE(1468), + [sym_bitstring] = STATE(1468), + [sym_map] = STATE(1468), + [sym_boolean] = STATE(1468), + [sym_nil] = STATE(1468), + [sym_call] = STATE(1468), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1468), + [sym_stab_clause] = STATE(4160), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1468), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(320), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(322), + [anon_sym_catch] = ACTIONS(322), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(322), + [anon_sym_end] = ACTIONS(322), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(322), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [47] = { + [sym__terminator] = STATE(172), + [sym__expression] = STATE(2247), + [sym_block] = STATE(2247), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2247), + [sym_atom] = STATE(2247), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2247), + [sym_charlist] = STATE(2247), + [sym_sigil] = STATE(2247), + [sym_unary_operator] = STATE(2247), + [sym_binary_operator] = STATE(2247), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2247), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2247), + [sym_tuple] = STATE(2247), + [sym_bitstring] = STATE(2247), + [sym_map] = STATE(2247), + [sym_boolean] = STATE(2247), + [sym_nil] = STATE(2247), + [sym_call] = STATE(2247), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2247), + [sym_stab_clause] = STATE(4851), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2247), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(327), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(329), + [sym_float] = ACTIONS(329), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(329), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [48] = { + [sym__terminator] = STATE(192), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4849), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [49] = { + [sym__expression] = STATE(2264), + [sym_block] = STATE(2264), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2264), + [sym_atom] = STATE(2264), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2264), + [sym_charlist] = STATE(2264), + [sym_sigil] = STATE(2264), + [sym_unary_operator] = STATE(2264), + [sym_binary_operator] = STATE(2264), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2264), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2264), + [sym_tuple] = STATE(2264), + [sym_bitstring] = STATE(2264), + [sym_map] = STATE(2264), + [sym_boolean] = STATE(2264), + [sym_nil] = STATE(2264), + [sym_call] = STATE(2264), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__parenthesised_call_arguments] = STATE(1852), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1942), + [sym_access_call] = STATE(2264), + [sym_do_block] = STATE(3071), + [sym_anonymous_function] = STATE(2264), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(399), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(429), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(399), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_do] = ACTIONS(441), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(437), + }, + [50] = { + [sym__terminator] = STATE(185), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4834), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [51] = { + [sym__terminator] = STATE(181), + [sym__expression] = STATE(2238), + [sym_block] = STATE(2238), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2238), + [sym_atom] = STATE(2238), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2238), + [sym_charlist] = STATE(2238), + [sym_sigil] = STATE(2238), + [sym_unary_operator] = STATE(2238), + [sym_binary_operator] = STATE(2238), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2238), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2238), + [sym_tuple] = STATE(2238), + [sym_bitstring] = STATE(2238), + [sym_map] = STATE(2238), + [sym_boolean] = STATE(2238), + [sym_nil] = STATE(2238), + [sym_call] = STATE(2238), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2238), + [sym_stab_clause] = STATE(4765), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2238), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(449), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(451), + [sym_float] = ACTIONS(451), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(451), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [52] = { + [sym__terminator] = STATE(177), + [sym__expression] = STATE(2284), + [sym_block] = STATE(2284), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2284), + [sym_atom] = STATE(2284), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2284), + [sym_charlist] = STATE(2284), + [sym_sigil] = STATE(2284), + [sym_unary_operator] = STATE(2284), + [sym_binary_operator] = STATE(2284), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2284), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2284), + [sym_tuple] = STATE(2284), + [sym_bitstring] = STATE(2284), + [sym_map] = STATE(2284), + [sym_boolean] = STATE(2284), + [sym_nil] = STATE(2284), + [sym_call] = STATE(2284), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2284), + [sym_stab_clause] = STATE(4762), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2284), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(455), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(457), + [sym_float] = ACTIONS(457), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(457), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [53] = { + [sym__terminator] = STATE(128), + [sym__expression] = STATE(2278), + [sym_block] = STATE(2278), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2278), + [sym_atom] = STATE(2278), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2278), + [sym_charlist] = STATE(2278), + [sym_sigil] = STATE(2278), + [sym_unary_operator] = STATE(2278), + [sym_binary_operator] = STATE(2278), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2278), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2278), + [sym_tuple] = STATE(2278), + [sym_bitstring] = STATE(2278), + [sym_map] = STATE(2278), + [sym_boolean] = STATE(2278), + [sym_nil] = STATE(2278), + [sym_call] = STATE(2278), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2278), + [sym_stab_clause] = STATE(4736), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5243), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2278), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(461), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(463), + [sym_float] = ACTIONS(463), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(463), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [54] = { + [sym__terminator] = STATE(179), + [sym__expression] = STATE(2293), + [sym_block] = STATE(2293), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2293), + [sym_atom] = STATE(2293), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2293), + [sym_charlist] = STATE(2293), + [sym_sigil] = STATE(2293), + [sym_unary_operator] = STATE(2293), + [sym_binary_operator] = STATE(2293), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2293), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2293), + [sym_tuple] = STATE(2293), + [sym_bitstring] = STATE(2293), + [sym_map] = STATE(2293), + [sym_boolean] = STATE(2293), + [sym_nil] = STATE(2293), + [sym_call] = STATE(2293), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2293), + [sym_stab_clause] = STATE(4814), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2293), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(467), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(469), + [sym_float] = ACTIONS(469), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(469), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [55] = { + [sym__terminator] = STATE(170), + [sym__expression] = STATE(2235), + [sym_block] = STATE(2235), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2235), + [sym_atom] = STATE(2235), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2235), + [sym_charlist] = STATE(2235), + [sym_sigil] = STATE(2235), + [sym_unary_operator] = STATE(2235), + [sym_binary_operator] = STATE(2235), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2235), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2235), + [sym_tuple] = STATE(2235), + [sym_bitstring] = STATE(2235), + [sym_map] = STATE(2235), + [sym_boolean] = STATE(2235), + [sym_nil] = STATE(2235), + [sym_call] = STATE(2235), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2235), + [sym_stab_clause] = STATE(4811), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2235), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(279), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(281), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(471), + [sym_float] = ACTIONS(471), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(471), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [56] = { + [sym__terminator] = STATE(187), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4750), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [57] = { + [sym__terminator] = STATE(179), + [sym__expression] = STATE(2291), + [sym_block] = STATE(2291), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2291), + [sym_atom] = STATE(2291), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2291), + [sym_charlist] = STATE(2291), + [sym_sigil] = STATE(2291), + [sym_unary_operator] = STATE(2291), + [sym_binary_operator] = STATE(2291), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2291), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2291), + [sym_tuple] = STATE(2291), + [sym_bitstring] = STATE(2291), + [sym_map] = STATE(2291), + [sym_boolean] = STATE(2291), + [sym_nil] = STATE(2291), + [sym_call] = STATE(2291), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2291), + [sym_stab_clause] = STATE(4814), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2291), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(467), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(475), + [sym_float] = ACTIONS(475), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(475), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [58] = { + [sym__terminator] = STATE(186), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4816), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [59] = { + [sym__terminator] = STATE(188), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4767), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [60] = { + [sym__terminator] = STATE(128), + [sym__expression] = STATE(2101), + [sym_block] = STATE(2101), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2101), + [sym_atom] = STATE(2101), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2101), + [sym_charlist] = STATE(2101), + [sym_sigil] = STATE(2101), + [sym_unary_operator] = STATE(2101), + [sym_binary_operator] = STATE(2101), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2101), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2101), + [sym_tuple] = STATE(2101), + [sym_bitstring] = STATE(2101), + [sym_map] = STATE(2101), + [sym_boolean] = STATE(2101), + [sym_nil] = STATE(2101), + [sym_call] = STATE(2101), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2101), + [sym_stab_clause] = STATE(4736), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2101), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(481), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(483), + [sym_float] = ACTIONS(483), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [61] = { + [sym__expression] = STATE(2264), + [sym_block] = STATE(2264), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2264), + [sym_atom] = STATE(2264), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2264), + [sym_charlist] = STATE(2264), + [sym_sigil] = STATE(2264), + [sym_unary_operator] = STATE(2264), + [sym_binary_operator] = STATE(2264), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2264), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2264), + [sym_tuple] = STATE(2264), + [sym_bitstring] = STATE(2264), + [sym_map] = STATE(2264), + [sym_boolean] = STATE(2264), + [sym_nil] = STATE(2264), + [sym_call] = STATE(2264), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__parenthesised_call_arguments] = STATE(1899), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1914), + [sym_access_call] = STATE(2264), + [sym_do_block] = STATE(2143), + [sym_anonymous_function] = STATE(2264), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(399), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(399), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(437), + }, + [62] = { + [sym__expression] = STATE(2264), + [sym_block] = STATE(2264), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2264), + [sym_atom] = STATE(2264), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2264), + [sym_charlist] = STATE(2264), + [sym_sigil] = STATE(2264), + [sym_unary_operator] = STATE(2264), + [sym_binary_operator] = STATE(2264), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2264), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2264), + [sym_tuple] = STATE(2264), + [sym_bitstring] = STATE(2264), + [sym_map] = STATE(2264), + [sym_boolean] = STATE(2264), + [sym_nil] = STATE(2264), + [sym_call] = STATE(2264), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__parenthesised_call_arguments] = STATE(1898), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1910), + [sym_access_call] = STATE(2264), + [sym_do_block] = STATE(2105), + [sym_anonymous_function] = STATE(2264), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(399), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(499), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(399), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(504), + }, + [63] = { + [sym__terminator] = STATE(184), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4742), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [64] = { + [sym__terminator] = STATE(168), + [sym__expression] = STATE(2289), + [sym_block] = STATE(2289), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2289), + [sym_atom] = STATE(2289), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2289), + [sym_charlist] = STATE(2289), + [sym_sigil] = STATE(2289), + [sym_unary_operator] = STATE(2289), + [sym_binary_operator] = STATE(2289), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2289), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2289), + [sym_tuple] = STATE(2289), + [sym_bitstring] = STATE(2289), + [sym_map] = STATE(2289), + [sym_boolean] = STATE(2289), + [sym_nil] = STATE(2289), + [sym_call] = STATE(2289), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2289), + [sym_stab_clause] = STATE(4833), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2289), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(511), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(513), + [sym_float] = ACTIONS(513), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(513), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [65] = { + [sym__terminator] = STATE(189), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4768), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [66] = { + [sym__terminator] = STATE(190), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4827), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [67] = { + [sym__terminator] = STATE(194), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4824), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [68] = { + [sym__terminator] = STATE(195), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4807), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [69] = { + [sym__terminator] = STATE(172), + [sym__expression] = STATE(2269), + [sym_block] = STATE(2269), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2269), + [sym_atom] = STATE(2269), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2269), + [sym_charlist] = STATE(2269), + [sym_sigil] = STATE(2269), + [sym_unary_operator] = STATE(2269), + [sym_binary_operator] = STATE(2269), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2269), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2269), + [sym_tuple] = STATE(2269), + [sym_bitstring] = STATE(2269), + [sym_map] = STATE(2269), + [sym_boolean] = STATE(2269), + [sym_nil] = STATE(2269), + [sym_call] = STATE(2269), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2269), + [sym_stab_clause] = STATE(4851), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2269), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(325), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(327), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(523), + [sym_float] = ACTIONS(523), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(523), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [70] = { + [sym__terminator] = STATE(152), + [sym__expression] = STATE(2279), + [sym_block] = STATE(2279), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2279), + [sym_atom] = STATE(2279), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2279), + [sym_charlist] = STATE(2279), + [sym_sigil] = STATE(2279), + [sym_unary_operator] = STATE(2279), + [sym_binary_operator] = STATE(2279), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2279), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2279), + [sym_tuple] = STATE(2279), + [sym_bitstring] = STATE(2279), + [sym_map] = STATE(2279), + [sym_boolean] = STATE(2279), + [sym_nil] = STATE(2279), + [sym_call] = STATE(2279), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2279), + [sym_stab_clause] = STATE(4782), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2279), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(527), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(529), + [sym_float] = ACTIONS(529), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(529), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [71] = { + [sym__terminator] = STATE(177), + [sym__expression] = STATE(2288), + [sym_block] = STATE(2288), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2288), + [sym_atom] = STATE(2288), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2288), + [sym_charlist] = STATE(2288), + [sym_sigil] = STATE(2288), + [sym_unary_operator] = STATE(2288), + [sym_binary_operator] = STATE(2288), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2288), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2288), + [sym_tuple] = STATE(2288), + [sym_bitstring] = STATE(2288), + [sym_map] = STATE(2288), + [sym_boolean] = STATE(2288), + [sym_nil] = STATE(2288), + [sym_call] = STATE(2288), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2288), + [sym_stab_clause] = STATE(4762), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2288), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(455), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(531), + [sym_float] = ACTIONS(531), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(531), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [72] = { + [sym__terminator] = STATE(128), + [sym__expression] = STATE(2255), + [sym_block] = STATE(2255), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2255), + [sym_atom] = STATE(2255), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2255), + [sym_charlist] = STATE(2255), + [sym_sigil] = STATE(2255), + [sym_unary_operator] = STATE(2255), + [sym_binary_operator] = STATE(2255), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2255), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2255), + [sym_tuple] = STATE(2255), + [sym_bitstring] = STATE(2255), + [sym_map] = STATE(2255), + [sym_boolean] = STATE(2255), + [sym_nil] = STATE(2255), + [sym_call] = STATE(2255), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2255), + [sym_stab_clause] = STATE(4736), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2255), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(481), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(533), + [sym_float] = ACTIONS(533), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(533), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [73] = { + [sym__terminator] = STATE(157), + [sym__expression] = STATE(2239), + [sym_block] = STATE(2239), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2239), + [sym_atom] = STATE(2239), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2239), + [sym_charlist] = STATE(2239), + [sym_sigil] = STATE(2239), + [sym_unary_operator] = STATE(2239), + [sym_binary_operator] = STATE(2239), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2239), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2239), + [sym_tuple] = STATE(2239), + [sym_bitstring] = STATE(2239), + [sym_map] = STATE(2239), + [sym_boolean] = STATE(2239), + [sym_nil] = STATE(2239), + [sym_call] = STATE(2239), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2239), + [sym_stab_clause] = STATE(4787), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2239), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(275), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(535), + [sym_float] = ACTIONS(535), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [74] = { + [sym__terminator] = STATE(196), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4788), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [75] = { + [sym__terminator] = STATE(159), + [sym__expression] = STATE(2234), + [sym_block] = STATE(2234), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2234), + [sym_atom] = STATE(2234), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2234), + [sym_charlist] = STATE(2234), + [sym_sigil] = STATE(2234), + [sym_unary_operator] = STATE(2234), + [sym_binary_operator] = STATE(2234), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2234), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2234), + [sym_tuple] = STATE(2234), + [sym_bitstring] = STATE(2234), + [sym_map] = STATE(2234), + [sym_boolean] = STATE(2234), + [sym_nil] = STATE(2234), + [sym_call] = STATE(2234), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2234), + [sym_stab_clause] = STATE(4740), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2234), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(312), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(314), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(539), + [sym_float] = ACTIONS(539), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(539), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [76] = { + [sym__terminator] = STATE(133), + [sym__expression] = STATE(2277), + [sym_block] = STATE(2277), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2277), + [sym_atom] = STATE(2277), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2277), + [sym_charlist] = STATE(2277), + [sym_sigil] = STATE(2277), + [sym_unary_operator] = STATE(2277), + [sym_binary_operator] = STATE(2277), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2277), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2277), + [sym_tuple] = STATE(2277), + [sym_bitstring] = STATE(2277), + [sym_map] = STATE(2277), + [sym_boolean] = STATE(2277), + [sym_nil] = STATE(2277), + [sym_call] = STATE(2277), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2277), + [sym_stab_clause] = STATE(4831), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2277), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(543), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(545), + [sym_float] = ACTIONS(545), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(545), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [77] = { + [sym__terminator] = STATE(202), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4770), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [78] = { + [sym__terminator] = STATE(152), + [sym__expression] = STATE(2281), + [sym_block] = STATE(2281), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2281), + [sym_atom] = STATE(2281), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2281), + [sym_charlist] = STATE(2281), + [sym_sigil] = STATE(2281), + [sym_unary_operator] = STATE(2281), + [sym_binary_operator] = STATE(2281), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2281), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2281), + [sym_tuple] = STATE(2281), + [sym_bitstring] = STATE(2281), + [sym_map] = STATE(2281), + [sym_boolean] = STATE(2281), + [sym_nil] = STATE(2281), + [sym_call] = STATE(2281), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2281), + [sym_stab_clause] = STATE(4782), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2281), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(525), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(527), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(549), + [sym_float] = ACTIONS(549), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(549), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [79] = { + [sym__terminator] = STATE(181), + [sym__expression] = STATE(2222), + [sym_block] = STATE(2222), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2222), + [sym_atom] = STATE(2222), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2222), + [sym_charlist] = STATE(2222), + [sym_sigil] = STATE(2222), + [sym_unary_operator] = STATE(2222), + [sym_binary_operator] = STATE(2222), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2222), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2222), + [sym_tuple] = STATE(2222), + [sym_bitstring] = STATE(2222), + [sym_map] = STATE(2222), + [sym_boolean] = STATE(2222), + [sym_nil] = STATE(2222), + [sym_call] = STATE(2222), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2222), + [sym_stab_clause] = STATE(4765), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2222), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(447), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(449), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(551), + [sym_float] = ACTIONS(551), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(551), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [80] = { + [sym__terminator] = STATE(137), + [sym__expression] = STATE(2242), + [sym_block] = STATE(2242), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2242), + [sym_atom] = STATE(2242), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2242), + [sym_charlist] = STATE(2242), + [sym_sigil] = STATE(2242), + [sym_unary_operator] = STATE(2242), + [sym_binary_operator] = STATE(2242), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2242), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2242), + [sym_tuple] = STATE(2242), + [sym_bitstring] = STATE(2242), + [sym_map] = STATE(2242), + [sym_boolean] = STATE(2242), + [sym_nil] = STATE(2242), + [sym_call] = STATE(2242), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2242), + [sym_stab_clause] = STATE(4822), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2242), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(287), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(553), + [sym_float] = ACTIONS(553), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(553), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [81] = { + [sym__terminator] = STATE(168), + [sym__expression] = STATE(2225), + [sym_block] = STATE(2225), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2225), + [sym_atom] = STATE(2225), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2225), + [sym_charlist] = STATE(2225), + [sym_sigil] = STATE(2225), + [sym_unary_operator] = STATE(2225), + [sym_binary_operator] = STATE(2225), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2225), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2225), + [sym_tuple] = STATE(2225), + [sym_bitstring] = STATE(2225), + [sym_map] = STATE(2225), + [sym_boolean] = STATE(2225), + [sym_nil] = STATE(2225), + [sym_call] = STATE(2225), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2225), + [sym_stab_clause] = STATE(4833), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2225), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(511), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(555), + [sym_float] = ACTIONS(555), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(555), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [82] = { + [sym__terminator] = STATE(133), + [sym__expression] = STATE(2266), + [sym_block] = STATE(2266), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2266), + [sym_atom] = STATE(2266), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2266), + [sym_charlist] = STATE(2266), + [sym_sigil] = STATE(2266), + [sym_unary_operator] = STATE(2266), + [sym_binary_operator] = STATE(2266), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2266), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2266), + [sym_tuple] = STATE(2266), + [sym_bitstring] = STATE(2266), + [sym_map] = STATE(2266), + [sym_boolean] = STATE(2266), + [sym_nil] = STATE(2266), + [sym_call] = STATE(2266), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2266), + [sym_stab_clause] = STATE(4831), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2266), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(543), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(557), + [sym_float] = ACTIONS(557), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [83] = { + [sym__terminator] = STATE(189), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4768), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [84] = { + [sym__terminator] = STATE(192), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4849), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [85] = { + [sym__terminator] = STATE(184), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4742), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [86] = { + [sym__expression] = STATE(2413), + [sym_block] = STATE(2413), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2413), + [sym_atom] = STATE(2413), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2413), + [sym_charlist] = STATE(2413), + [sym_sigil] = STATE(2413), + [sym_unary_operator] = STATE(2413), + [sym_binary_operator] = STATE(2413), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2413), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2413), + [sym_tuple] = STATE(2413), + [sym_bitstring] = STATE(2413), + [sym_map] = STATE(2413), + [sym_boolean] = STATE(2413), + [sym_nil] = STATE(2413), + [sym_call] = STATE(2413), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__parenthesised_call_arguments] = STATE(1434), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1464), + [sym_access_call] = STATE(2413), + [sym_do_block] = STATE(1717), + [sym_anonymous_function] = STATE(2413), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(571), + [sym_float] = ACTIONS(571), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(604), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(504), + }, + [87] = { + [sym__expression] = STATE(2413), + [sym_block] = STATE(2413), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2413), + [sym_atom] = STATE(2413), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2413), + [sym_charlist] = STATE(2413), + [sym_sigil] = STATE(2413), + [sym_unary_operator] = STATE(2413), + [sym_binary_operator] = STATE(2413), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2413), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2413), + [sym_tuple] = STATE(2413), + [sym_bitstring] = STATE(2413), + [sym_map] = STATE(2413), + [sym_boolean] = STATE(2413), + [sym_nil] = STATE(2413), + [sym_call] = STATE(2413), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__parenthesised_call_arguments] = STATE(1402), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1566), + [sym_access_call] = STATE(2413), + [sym_do_block] = STATE(1610), + [sym_anonymous_function] = STATE(2413), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(571), + [sym_float] = ACTIONS(571), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(437), + }, + [88] = { + [sym__expression] = STATE(2351), + [sym_block] = STATE(2351), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(2351), + [sym_atom] = STATE(2351), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2351), + [sym_charlist] = STATE(2351), + [sym_sigil] = STATE(2351), + [sym_unary_operator] = STATE(2351), + [sym_binary_operator] = STATE(2351), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2351), + [sym_keywords] = STATE(3070), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(2351), + [sym_tuple] = STATE(2351), + [sym_bitstring] = STATE(2351), + [sym_map] = STATE(2351), + [sym_boolean] = STATE(2351), + [sym_nil] = STATE(2351), + [sym_call] = STATE(2351), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__parenthesised_call_arguments] = STATE(2229), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym__call_arguments] = STATE(2324), + [sym_access_call] = STATE(2351), + [sym_do_block] = STATE(3723), + [sym_anonymous_function] = STATE(2351), + [ts_builtin_sym_end] = ACTIONS(437), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(629), + [sym_float] = ACTIONS(629), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(659), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_do] = ACTIONS(669), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(437), + }, + [89] = { + [sym__terminator] = STATE(197), + [sym__expression] = STATE(1474), + [sym_block] = STATE(1474), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1474), + [sym_atom] = STATE(1474), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1474), + [sym_charlist] = STATE(1474), + [sym_sigil] = STATE(1474), + [sym_unary_operator] = STATE(1474), + [sym_binary_operator] = STATE(1474), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1474), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1474), + [sym_tuple] = STATE(1474), + [sym_bitstring] = STATE(1474), + [sym_map] = STATE(1474), + [sym_boolean] = STATE(1474), + [sym_nil] = STATE(1474), + [sym_call] = STATE(1474), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1474), + [sym_stab_clause] = STATE(4149), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1474), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(307), + [sym_float] = ACTIONS(307), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(309), + [anon_sym_catch] = ACTIONS(309), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(309), + [anon_sym_end] = ACTIONS(309), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(307), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [90] = { + [sym__expression] = STATE(2285), + [sym_block] = STATE(2285), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2285), + [sym_atom] = STATE(2285), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2285), + [sym_charlist] = STATE(2285), + [sym_sigil] = STATE(2285), + [sym_unary_operator] = STATE(2285), + [sym_binary_operator] = STATE(2285), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2285), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2285), + [sym_tuple] = STATE(2285), + [sym_bitstring] = STATE(2285), + [sym_map] = STATE(2285), + [sym_boolean] = STATE(2285), + [sym_nil] = STATE(2285), + [sym_call] = STATE(2285), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__parenthesised_call_arguments] = STATE(1391), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1398), + [sym_access_call] = STATE(2285), + [sym_do_block] = STATE(1551), + [sym_anonymous_function] = STATE(2285), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(679), + [sym_float] = ACTIONS(679), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(437), + }, + [91] = { + [sym__expression] = STATE(2285), + [sym_block] = STATE(2285), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2285), + [sym_atom] = STATE(2285), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2285), + [sym_charlist] = STATE(2285), + [sym_sigil] = STATE(2285), + [sym_unary_operator] = STATE(2285), + [sym_binary_operator] = STATE(2285), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2285), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2285), + [sym_tuple] = STATE(2285), + [sym_bitstring] = STATE(2285), + [sym_map] = STATE(2285), + [sym_boolean] = STATE(2285), + [sym_nil] = STATE(2285), + [sym_call] = STATE(2285), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__parenthesised_call_arguments] = STATE(1390), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1395), + [sym_access_call] = STATE(2285), + [sym_do_block] = STATE(1553), + [sym_anonymous_function] = STATE(2285), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(679), + [sym_float] = ACTIONS(679), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(722), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(504), + }, + [92] = { + [sym__terminator] = STATE(196), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4788), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [93] = { + [sym__terminator] = STATE(198), + [sym__expression] = STATE(1472), + [sym_block] = STATE(1472), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1472), + [sym_atom] = STATE(1472), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1472), + [sym_charlist] = STATE(1472), + [sym_sigil] = STATE(1472), + [sym_unary_operator] = STATE(1472), + [sym_binary_operator] = STATE(1472), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1472), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1472), + [sym_tuple] = STATE(1472), + [sym_bitstring] = STATE(1472), + [sym_map] = STATE(1472), + [sym_boolean] = STATE(1472), + [sym_nil] = STATE(1472), + [sym_call] = STATE(1472), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1472), + [sym_stab_clause] = STATE(4156), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1472), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(298), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(300), + [sym_float] = ACTIONS(300), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(302), + [anon_sym_catch] = ACTIONS(302), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(302), + [anon_sym_end] = ACTIONS(302), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(302), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(300), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [94] = { + [sym__terminator] = STATE(199), + [sym__expression] = STATE(1470), + [sym_block] = STATE(1470), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1470), + [sym_atom] = STATE(1470), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1470), + [sym_charlist] = STATE(1470), + [sym_sigil] = STATE(1470), + [sym_unary_operator] = STATE(1470), + [sym_binary_operator] = STATE(1470), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1470), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1470), + [sym_tuple] = STATE(1470), + [sym_bitstring] = STATE(1470), + [sym_map] = STATE(1470), + [sym_boolean] = STATE(1470), + [sym_nil] = STATE(1470), + [sym_call] = STATE(1470), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1470), + [sym_stab_clause] = STATE(4157), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1470), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(293), + [sym_float] = ACTIONS(293), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(295), + [anon_sym_catch] = ACTIONS(295), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(295), + [anon_sym_end] = ACTIONS(295), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(295), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(293), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [95] = { + [sym__terminator] = STATE(187), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4750), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [96] = { + [sym__expression] = STATE(2351), + [sym_block] = STATE(2351), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(2351), + [sym_atom] = STATE(2351), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2351), + [sym_charlist] = STATE(2351), + [sym_sigil] = STATE(2351), + [sym_unary_operator] = STATE(2351), + [sym_binary_operator] = STATE(2351), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2351), + [sym_keywords] = STATE(3070), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(2351), + [sym_tuple] = STATE(2351), + [sym_bitstring] = STATE(2351), + [sym_map] = STATE(2351), + [sym_boolean] = STATE(2351), + [sym_nil] = STATE(2351), + [sym_call] = STATE(2351), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__parenthesised_call_arguments] = STATE(2230), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym__call_arguments] = STATE(2362), + [sym_access_call] = STATE(2351), + [sym_do_block] = STATE(2997), + [sym_anonymous_function] = STATE(2351), + [ts_builtin_sym_end] = ACTIONS(437), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(629), + [sym_float] = ACTIONS(629), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(437), + }, + [97] = { + [sym__expression] = STATE(2264), + [sym_block] = STATE(2264), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2264), + [sym_atom] = STATE(2264), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2264), + [sym_charlist] = STATE(2264), + [sym_sigil] = STATE(2264), + [sym_unary_operator] = STATE(2264), + [sym_binary_operator] = STATE(2264), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2264), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2264), + [sym_tuple] = STATE(2264), + [sym_bitstring] = STATE(2264), + [sym_map] = STATE(2264), + [sym_boolean] = STATE(2264), + [sym_nil] = STATE(2264), + [sym_call] = STATE(2264), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__parenthesised_call_arguments] = STATE(1836), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1962), + [sym_access_call] = STATE(2264), + [sym_do_block] = STATE(3075), + [sym_anonymous_function] = STATE(2264), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(399), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(485), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(429), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(399), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(504), + }, + [98] = { + [sym__terminator] = STATE(202), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4770), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(547), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [99] = { + [sym__expression] = STATE(2413), + [sym_block] = STATE(2413), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2413), + [sym_atom] = STATE(2413), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2413), + [sym_charlist] = STATE(2413), + [sym_sigil] = STATE(2413), + [sym_unary_operator] = STATE(2413), + [sym_binary_operator] = STATE(2413), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2413), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2413), + [sym_tuple] = STATE(2413), + [sym_bitstring] = STATE(2413), + [sym_map] = STATE(2413), + [sym_boolean] = STATE(2413), + [sym_nil] = STATE(2413), + [sym_call] = STATE(2413), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__parenthesised_call_arguments] = STATE(1404), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1556), + [sym_access_call] = STATE(2413), + [sym_do_block] = STATE(2052), + [sym_anonymous_function] = STATE(2413), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(571), + [sym_float] = ACTIONS(571), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(725), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(727), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(437), + }, + [100] = { + [sym__expression] = STATE(2285), + [sym_block] = STATE(2285), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2285), + [sym_atom] = STATE(2285), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2285), + [sym_charlist] = STATE(2285), + [sym_sigil] = STATE(2285), + [sym_unary_operator] = STATE(2285), + [sym_binary_operator] = STATE(2285), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2285), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2285), + [sym_tuple] = STATE(2285), + [sym_bitstring] = STATE(2285), + [sym_map] = STATE(2285), + [sym_boolean] = STATE(2285), + [sym_nil] = STATE(2285), + [sym_call] = STATE(2285), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__parenthesised_call_arguments] = STATE(1388), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1425), + [sym_access_call] = STATE(2285), + [sym_do_block] = STATE(1872), + [sym_anonymous_function] = STATE(2285), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(679), + [sym_float] = ACTIONS(679), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(729), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_do] = ACTIONS(731), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(437), + }, + [101] = { + [sym__terminator] = STATE(185), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4834), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [102] = { + [sym__terminator] = STATE(200), + [sym__expression] = STATE(1468), + [sym_block] = STATE(1468), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1468), + [sym_atom] = STATE(1468), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1468), + [sym_charlist] = STATE(1468), + [sym_sigil] = STATE(1468), + [sym_unary_operator] = STATE(1468), + [sym_binary_operator] = STATE(1468), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1468), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1468), + [sym_tuple] = STATE(1468), + [sym_bitstring] = STATE(1468), + [sym_map] = STATE(1468), + [sym_boolean] = STATE(1468), + [sym_nil] = STATE(1468), + [sym_call] = STATE(1468), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1468), + [sym_stab_clause] = STATE(4160), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1468), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(318), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(320), + [sym_float] = ACTIONS(320), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(322), + [anon_sym_catch] = ACTIONS(322), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(322), + [anon_sym_end] = ACTIONS(322), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(322), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [103] = { + [sym__terminator] = STATE(195), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4807), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [104] = { + [sym__terminator] = STATE(194), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4824), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [105] = { + [sym__terminator] = STATE(186), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4816), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(477), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [106] = { + [sym__terminator] = STATE(188), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4767), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [107] = { + [sym__terminator] = STATE(190), + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4827), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [aux_sym__terminator_repeat1] = STATE(1306), + [anon_sym_LF] = ACTIONS(63), + [anon_sym_SEMI] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [108] = { + [sym__expression] = STATE(2351), + [sym_block] = STATE(2351), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(2351), + [sym_atom] = STATE(2351), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2351), + [sym_charlist] = STATE(2351), + [sym_sigil] = STATE(2351), + [sym_unary_operator] = STATE(2351), + [sym_binary_operator] = STATE(2351), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2351), + [sym_keywords] = STATE(3070), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(2351), + [sym_tuple] = STATE(2351), + [sym_bitstring] = STATE(2351), + [sym_map] = STATE(2351), + [sym_boolean] = STATE(2351), + [sym_nil] = STATE(2351), + [sym_call] = STATE(2351), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__parenthesised_call_arguments] = STATE(2231), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym__call_arguments] = STATE(2294), + [sym_access_call] = STATE(2351), + [sym_do_block] = STATE(2985), + [sym_anonymous_function] = STATE(2351), + [ts_builtin_sym_end] = ACTIONS(502), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(629), + [sym_float] = ACTIONS(629), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(736), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(504), + }, + [109] = { + [sym__expression] = STATE(1626), + [sym_block] = STATE(1626), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1626), + [sym_atom] = STATE(1626), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1626), + [sym_charlist] = STATE(1626), + [sym_sigil] = STATE(1626), + [sym_unary_operator] = STATE(1626), + [sym_binary_operator] = STATE(1626), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1626), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1626), + [sym_tuple] = STATE(1626), + [sym_bitstring] = STATE(1626), + [sym_map] = STATE(1626), + [sym_boolean] = STATE(1626), + [sym_nil] = STATE(1626), + [sym_call] = STATE(1626), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__parenthesised_call_arguments] = STATE(1434), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1464), + [sym_access_call] = STATE(1626), + [sym_do_block] = STATE(1717), + [sym_anonymous_function] = STATE(1626), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(739), + [sym_float] = ACTIONS(739), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(754), + [anon_sym_catch] = ACTIONS(754), + [anon_sym_do] = ACTIONS(604), + [anon_sym_else] = ACTIONS(754), + [anon_sym_end] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(739), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(504), + }, + [110] = { + [sym__expression] = STATE(2351), + [sym_block] = STATE(2351), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(2351), + [sym_atom] = STATE(2351), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2351), + [sym_charlist] = STATE(2351), + [sym_sigil] = STATE(2351), + [sym_unary_operator] = STATE(2351), + [sym_binary_operator] = STATE(2351), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2351), + [sym_keywords] = STATE(3070), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(2351), + [sym_tuple] = STATE(2351), + [sym_bitstring] = STATE(2351), + [sym_map] = STATE(2351), + [sym_boolean] = STATE(2351), + [sym_nil] = STATE(2351), + [sym_call] = STATE(2351), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__parenthesised_call_arguments] = STATE(2226), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym__call_arguments] = STATE(2334), + [sym_access_call] = STATE(2351), + [sym_do_block] = STATE(3657), + [sym_anonymous_function] = STATE(2351), + [ts_builtin_sym_end] = ACTIONS(502), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(629), + [sym_float] = ACTIONS(629), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(733), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(659), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(629), + [anon_sym_LPAREN2] = ACTIONS(665), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(504), + }, + [111] = { + [sym__expression] = STATE(2887), + [sym_block] = STATE(2887), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(2887), + [sym_atom] = STATE(2887), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(2887), + [sym_charlist] = STATE(2887), + [sym_sigil] = STATE(2887), + [sym_unary_operator] = STATE(2887), + [sym_binary_operator] = STATE(2887), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(2887), + [sym_keywords] = STATE(3447), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(2887), + [sym_tuple] = STATE(2887), + [sym_bitstring] = STATE(2887), + [sym_map] = STATE(2887), + [sym_boolean] = STATE(2887), + [sym_nil] = STATE(2887), + [sym_call] = STATE(2887), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__parenthesised_call_arguments] = STATE(2405), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym__call_arguments] = STATE(2930), + [sym_access_call] = STATE(2887), + [sym_do_block] = STATE(3219), + [sym_anonymous_function] = STATE(2887), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(771), + [sym_float] = ACTIONS(771), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(387), + [sym_char] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(805), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(437), + }, + [112] = { + [sym__expression] = STATE(2887), + [sym_block] = STATE(2887), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(2887), + [sym_atom] = STATE(2887), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(2887), + [sym_charlist] = STATE(2887), + [sym_sigil] = STATE(2887), + [sym_unary_operator] = STATE(2887), + [sym_binary_operator] = STATE(2887), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(2887), + [sym_keywords] = STATE(3447), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(2887), + [sym_tuple] = STATE(2887), + [sym_bitstring] = STATE(2887), + [sym_map] = STATE(2887), + [sym_boolean] = STATE(2887), + [sym_nil] = STATE(2887), + [sym_call] = STATE(2887), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__parenthesised_call_arguments] = STATE(2409), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym__call_arguments] = STATE(2920), + [sym_access_call] = STATE(2887), + [sym_do_block] = STATE(3220), + [sym_anonymous_function] = STATE(2887), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(771), + [sym_float] = ACTIONS(771), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(814), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(485), + [sym_char] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(805), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(504), + }, + [113] = { + [sym__expression] = STATE(1462), + [sym_block] = STATE(1462), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1462), + [sym_atom] = STATE(1462), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1462), + [sym_charlist] = STATE(1462), + [sym_sigil] = STATE(1462), + [sym_unary_operator] = STATE(1462), + [sym_binary_operator] = STATE(1462), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1462), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1462), + [sym_tuple] = STATE(1462), + [sym_bitstring] = STATE(1462), + [sym_map] = STATE(1462), + [sym_boolean] = STATE(1462), + [sym_nil] = STATE(1462), + [sym_call] = STATE(1462), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__parenthesised_call_arguments] = STATE(1388), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1425), + [sym_access_call] = STATE(1462), + [sym_do_block] = STATE(1872), + [sym_anonymous_function] = STATE(1462), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(817), + [sym_float] = ACTIONS(817), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(387), + [anon_sym_catch] = ACTIONS(387), + [anon_sym_do] = ACTIONS(729), + [anon_sym_else] = ACTIONS(387), + [anon_sym_end] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(817), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_do] = ACTIONS(731), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(437), + }, + [114] = { + [sym__expression] = STATE(2571), + [sym_block] = STATE(2571), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2571), + [sym_atom] = STATE(2571), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2571), + [sym_charlist] = STATE(2571), + [sym_sigil] = STATE(2571), + [sym_unary_operator] = STATE(2571), + [sym_binary_operator] = STATE(2571), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2571), + [sym_keywords] = STATE(2722), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2571), + [sym_tuple] = STATE(2571), + [sym_bitstring] = STATE(2571), + [sym_map] = STATE(2571), + [sym_boolean] = STATE(2571), + [sym_nil] = STATE(2571), + [sym_call] = STATE(2571), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__parenthesised_call_arguments] = STATE(2102), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym__call_arguments] = STATE(2576), + [sym_access_call] = STATE(2571), + [sym_do_block] = STATE(2699), + [sym_anonymous_function] = STATE(2571), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(837), + [sym_float] = ACTIONS(837), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(870), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(837), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(504), + }, + [115] = { + [sym__expression] = STATE(1626), + [sym_block] = STATE(1626), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1626), + [sym_atom] = STATE(1626), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1626), + [sym_charlist] = STATE(1626), + [sym_sigil] = STATE(1626), + [sym_unary_operator] = STATE(1626), + [sym_binary_operator] = STATE(1626), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1626), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1626), + [sym_tuple] = STATE(1626), + [sym_bitstring] = STATE(1626), + [sym_map] = STATE(1626), + [sym_boolean] = STATE(1626), + [sym_nil] = STATE(1626), + [sym_call] = STATE(1626), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__parenthesised_call_arguments] = STATE(1404), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1556), + [sym_access_call] = STATE(1626), + [sym_do_block] = STATE(2052), + [sym_anonymous_function] = STATE(1626), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(739), + [sym_float] = ACTIONS(739), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(387), + [anon_sym_catch] = ACTIONS(387), + [anon_sym_do] = ACTIONS(725), + [anon_sym_else] = ACTIONS(387), + [anon_sym_end] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(739), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(727), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(437), + }, + [116] = { + [sym__expression] = STATE(2544), + [sym_block] = STATE(2544), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2544), + [sym_atom] = STATE(2544), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2544), + [sym_charlist] = STATE(2544), + [sym_sigil] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_binary_operator] = STATE(2544), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2544), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_bitstring] = STATE(2544), + [sym_map] = STATE(2544), + [sym_boolean] = STATE(2544), + [sym_nil] = STATE(2544), + [sym_call] = STATE(2544), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__parenthesised_call_arguments] = STATE(1402), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1566), + [sym_access_call] = STATE(2544), + [sym_do_block] = STATE(1610), + [sym_anonymous_function] = STATE(2544), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(883), + [sym_float] = ACTIONS(883), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(437), + }, + [117] = { + [sym__expression] = STATE(2544), + [sym_block] = STATE(2544), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2544), + [sym_atom] = STATE(2544), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2544), + [sym_charlist] = STATE(2544), + [sym_sigil] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_binary_operator] = STATE(2544), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2544), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_bitstring] = STATE(2544), + [sym_map] = STATE(2544), + [sym_boolean] = STATE(2544), + [sym_nil] = STATE(2544), + [sym_call] = STATE(2544), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__parenthesised_call_arguments] = STATE(1434), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1464), + [sym_access_call] = STATE(2544), + [sym_do_block] = STATE(1717), + [sym_anonymous_function] = STATE(2544), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(883), + [sym_float] = ACTIONS(883), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(604), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(504), + }, + [118] = { + [sym__expression] = STATE(2413), + [sym_block] = STATE(2413), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2413), + [sym_atom] = STATE(2413), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2413), + [sym_charlist] = STATE(2413), + [sym_sigil] = STATE(2413), + [sym_unary_operator] = STATE(2413), + [sym_binary_operator] = STATE(2413), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2413), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2413), + [sym_tuple] = STATE(2413), + [sym_bitstring] = STATE(2413), + [sym_map] = STATE(2413), + [sym_boolean] = STATE(2413), + [sym_nil] = STATE(2413), + [sym_call] = STATE(2413), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__parenthesised_call_arguments] = STATE(1405), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1552), + [sym_access_call] = STATE(2413), + [sym_do_block] = STATE(2071), + [sym_anonymous_function] = STATE(2413), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(571), + [sym_float] = ACTIONS(571), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(725), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(571), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(504), + }, + [119] = { + [sym__expression] = STATE(2887), + [sym_block] = STATE(2887), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(2887), + [sym_atom] = STATE(2887), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(2887), + [sym_charlist] = STATE(2887), + [sym_sigil] = STATE(2887), + [sym_unary_operator] = STATE(2887), + [sym_binary_operator] = STATE(2887), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(2887), + [sym_keywords] = STATE(3447), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(2887), + [sym_tuple] = STATE(2887), + [sym_bitstring] = STATE(2887), + [sym_map] = STATE(2887), + [sym_boolean] = STATE(2887), + [sym_nil] = STATE(2887), + [sym_call] = STATE(2887), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__parenthesised_call_arguments] = STATE(2417), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym__call_arguments] = STATE(2886), + [sym_access_call] = STATE(2887), + [sym_do_block] = STATE(3869), + [sym_anonymous_function] = STATE(2887), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(771), + [sym_float] = ACTIONS(771), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(900), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(387), + [sym_char] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(805), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_do] = ACTIONS(902), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(437), + }, + [120] = { + [sym__expression] = STATE(1626), + [sym_block] = STATE(1626), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1626), + [sym_atom] = STATE(1626), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1626), + [sym_charlist] = STATE(1626), + [sym_sigil] = STATE(1626), + [sym_unary_operator] = STATE(1626), + [sym_binary_operator] = STATE(1626), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1626), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1626), + [sym_tuple] = STATE(1626), + [sym_bitstring] = STATE(1626), + [sym_map] = STATE(1626), + [sym_boolean] = STATE(1626), + [sym_nil] = STATE(1626), + [sym_call] = STATE(1626), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__parenthesised_call_arguments] = STATE(1402), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1566), + [sym_access_call] = STATE(1626), + [sym_do_block] = STATE(1610), + [sym_anonymous_function] = STATE(1626), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(739), + [sym_float] = ACTIONS(739), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(387), + [anon_sym_catch] = ACTIONS(387), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(387), + [anon_sym_end] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(739), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(437), + }, + [121] = { + [sym__expression] = STATE(2571), + [sym_block] = STATE(2571), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2571), + [sym_atom] = STATE(2571), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2571), + [sym_charlist] = STATE(2571), + [sym_sigil] = STATE(2571), + [sym_unary_operator] = STATE(2571), + [sym_binary_operator] = STATE(2571), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2571), + [sym_keywords] = STATE(2722), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2571), + [sym_tuple] = STATE(2571), + [sym_bitstring] = STATE(2571), + [sym_map] = STATE(2571), + [sym_boolean] = STATE(2571), + [sym_nil] = STATE(2571), + [sym_call] = STATE(2571), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__parenthesised_call_arguments] = STATE(2252), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym__call_arguments] = STATE(2568), + [sym_access_call] = STATE(2571), + [sym_do_block] = STATE(3588), + [sym_anonymous_function] = STATE(2571), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(837), + [sym_float] = ACTIONS(837), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(904), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(837), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_do] = ACTIONS(906), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(437), + }, + [122] = { + [sym__expression] = STATE(1462), + [sym_block] = STATE(1462), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1462), + [sym_atom] = STATE(1462), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1462), + [sym_charlist] = STATE(1462), + [sym_sigil] = STATE(1462), + [sym_unary_operator] = STATE(1462), + [sym_binary_operator] = STATE(1462), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1462), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1462), + [sym_tuple] = STATE(1462), + [sym_bitstring] = STATE(1462), + [sym_map] = STATE(1462), + [sym_boolean] = STATE(1462), + [sym_nil] = STATE(1462), + [sym_call] = STATE(1462), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__parenthesised_call_arguments] = STATE(1391), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1398), + [sym_access_call] = STATE(1462), + [sym_do_block] = STATE(1551), + [sym_anonymous_function] = STATE(1462), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(817), + [sym_float] = ACTIONS(817), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(387), + [anon_sym_catch] = ACTIONS(387), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(387), + [anon_sym_end] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(817), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(437), + }, + [123] = { + [sym__expression] = STATE(1462), + [sym_block] = STATE(1462), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1462), + [sym_atom] = STATE(1462), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1462), + [sym_charlist] = STATE(1462), + [sym_sigil] = STATE(1462), + [sym_unary_operator] = STATE(1462), + [sym_binary_operator] = STATE(1462), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1462), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1462), + [sym_tuple] = STATE(1462), + [sym_bitstring] = STATE(1462), + [sym_map] = STATE(1462), + [sym_boolean] = STATE(1462), + [sym_nil] = STATE(1462), + [sym_call] = STATE(1462), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__parenthesised_call_arguments] = STATE(1390), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1395), + [sym_access_call] = STATE(1462), + [sym_do_block] = STATE(1553), + [sym_anonymous_function] = STATE(1462), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(817), + [sym_float] = ACTIONS(817), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(754), + [anon_sym_catch] = ACTIONS(754), + [anon_sym_do] = ACTIONS(722), + [anon_sym_else] = ACTIONS(754), + [anon_sym_end] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(817), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(504), + }, + [124] = { + [sym__expression] = STATE(2285), + [sym_block] = STATE(2285), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2285), + [sym_atom] = STATE(2285), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2285), + [sym_charlist] = STATE(2285), + [sym_sigil] = STATE(2285), + [sym_unary_operator] = STATE(2285), + [sym_binary_operator] = STATE(2285), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2285), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2285), + [sym_tuple] = STATE(2285), + [sym_bitstring] = STATE(2285), + [sym_map] = STATE(2285), + [sym_boolean] = STATE(2285), + [sym_nil] = STATE(2285), + [sym_call] = STATE(2285), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__parenthesised_call_arguments] = STATE(1386), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1414), + [sym_access_call] = STATE(2285), + [sym_do_block] = STATE(1757), + [sym_anonymous_function] = STATE(2285), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(673), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(679), + [sym_float] = ACTIONS(679), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(719), + [anon_sym_DASH] = ACTIONS(719), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(729), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(679), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(504), + }, + [125] = { + [sym__expression] = STATE(2544), + [sym_block] = STATE(2544), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2544), + [sym_atom] = STATE(2544), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2544), + [sym_charlist] = STATE(2544), + [sym_sigil] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_binary_operator] = STATE(2544), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2544), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_bitstring] = STATE(2544), + [sym_map] = STATE(2544), + [sym_boolean] = STATE(2544), + [sym_nil] = STATE(2544), + [sym_call] = STATE(2544), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__parenthesised_call_arguments] = STATE(1404), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1556), + [sym_access_call] = STATE(2544), + [sym_do_block] = STATE(2052), + [sym_anonymous_function] = STATE(2544), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(883), + [sym_float] = ACTIONS(883), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(725), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_do] = ACTIONS(727), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(437), + }, + [126] = { + [sym__expression] = STATE(2571), + [sym_block] = STATE(2571), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2571), + [sym_atom] = STATE(2571), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2571), + [sym_charlist] = STATE(2571), + [sym_sigil] = STATE(2571), + [sym_unary_operator] = STATE(2571), + [sym_binary_operator] = STATE(2571), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2571), + [sym_keywords] = STATE(2722), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2571), + [sym_tuple] = STATE(2571), + [sym_bitstring] = STATE(2571), + [sym_map] = STATE(2571), + [sym_boolean] = STATE(2571), + [sym_nil] = STATE(2571), + [sym_call] = STATE(2571), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__parenthesised_call_arguments] = STATE(2103), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym__call_arguments] = STATE(2581), + [sym_access_call] = STATE(2571), + [sym_do_block] = STATE(2696), + [sym_anonymous_function] = STATE(2571), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(387), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(837), + [sym_float] = ACTIONS(837), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(837), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(437), + }, + [127] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(911), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [128] = { + [sym__expression] = STATE(2223), + [sym_block] = STATE(2223), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2223), + [sym_atom] = STATE(2223), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2223), + [sym_charlist] = STATE(2223), + [sym_sigil] = STATE(2223), + [sym_unary_operator] = STATE(2223), + [sym_binary_operator] = STATE(2223), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2223), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2223), + [sym_tuple] = STATE(2223), + [sym_bitstring] = STATE(2223), + [sym_map] = STATE(2223), + [sym_boolean] = STATE(2223), + [sym_nil] = STATE(2223), + [sym_call] = STATE(2223), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2223), + [sym_stab_clause] = STATE(4743), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2223), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(915), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(917), + [sym_float] = ACTIONS(917), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(917), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [129] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(919), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [130] = { + [sym__expression] = STATE(1462), + [sym_block] = STATE(1462), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1462), + [sym_atom] = STATE(1462), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1462), + [sym_charlist] = STATE(1462), + [sym_sigil] = STATE(1462), + [sym_unary_operator] = STATE(1462), + [sym_binary_operator] = STATE(1462), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1462), + [sym_keywords] = STATE(1555), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1462), + [sym_tuple] = STATE(1462), + [sym_bitstring] = STATE(1462), + [sym_map] = STATE(1462), + [sym_boolean] = STATE(1462), + [sym_nil] = STATE(1462), + [sym_call] = STATE(1462), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__parenthesised_call_arguments] = STATE(1386), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym__call_arguments] = STATE(1414), + [sym_access_call] = STATE(1462), + [sym_do_block] = STATE(1757), + [sym_anonymous_function] = STATE(1462), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(817), + [sym_float] = ACTIONS(817), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(908), + [anon_sym_DASH] = ACTIONS(908), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(754), + [anon_sym_catch] = ACTIONS(754), + [anon_sym_do] = ACTIONS(729), + [anon_sym_else] = ACTIONS(754), + [anon_sym_end] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(817), + [anon_sym_LPAREN2] = ACTIONS(713), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(504), + }, + [131] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(921), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [132] = { + [sym__expression] = STATE(2714), + [sym_block] = STATE(2714), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2714), + [sym_atom] = STATE(2714), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2714), + [sym_charlist] = STATE(2714), + [sym_sigil] = STATE(2714), + [sym_unary_operator] = STATE(2714), + [sym_binary_operator] = STATE(2714), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2714), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(2714), + [sym_tuple] = STATE(2714), + [sym_bitstring] = STATE(2714), + [sym_map] = STATE(2714), + [sym_boolean] = STATE(2714), + [sym_nil] = STATE(2714), + [sym_call] = STATE(2714), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__parenthesised_call_arguments] = STATE(1852), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1942), + [sym_access_call] = STATE(2714), + [sym_do_block] = STATE(3071), + [sym_anonymous_function] = STATE(2714), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(923), + [sym_float] = ACTIONS(923), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(429), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_do] = ACTIONS(441), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(437), + }, + [133] = { + [sym__expression] = STATE(2276), + [sym_block] = STATE(2276), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2276), + [sym_atom] = STATE(2276), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2276), + [sym_charlist] = STATE(2276), + [sym_sigil] = STATE(2276), + [sym_unary_operator] = STATE(2276), + [sym_binary_operator] = STATE(2276), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2276), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2276), + [sym_tuple] = STATE(2276), + [sym_bitstring] = STATE(2276), + [sym_map] = STATE(2276), + [sym_boolean] = STATE(2276), + [sym_nil] = STATE(2276), + [sym_call] = STATE(2276), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2276), + [sym_stab_clause] = STATE(4821), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2276), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(935), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(937), + [sym_float] = ACTIONS(937), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(937), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [134] = { + [sym__expression] = STATE(2544), + [sym_block] = STATE(2544), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2544), + [sym_atom] = STATE(2544), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2544), + [sym_charlist] = STATE(2544), + [sym_sigil] = STATE(2544), + [sym_unary_operator] = STATE(2544), + [sym_binary_operator] = STATE(2544), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2544), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2544), + [sym_tuple] = STATE(2544), + [sym_bitstring] = STATE(2544), + [sym_map] = STATE(2544), + [sym_boolean] = STATE(2544), + [sym_nil] = STATE(2544), + [sym_call] = STATE(2544), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__parenthesised_call_arguments] = STATE(1405), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1552), + [sym_access_call] = STATE(2544), + [sym_do_block] = STATE(2071), + [sym_anonymous_function] = STATE(2544), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(883), + [sym_float] = ACTIONS(883), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(725), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(883), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(504), + }, + [135] = { + [sym__expression] = STATE(2714), + [sym_block] = STATE(2714), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2714), + [sym_atom] = STATE(2714), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2714), + [sym_charlist] = STATE(2714), + [sym_sigil] = STATE(2714), + [sym_unary_operator] = STATE(2714), + [sym_binary_operator] = STATE(2714), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2714), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(2714), + [sym_tuple] = STATE(2714), + [sym_bitstring] = STATE(2714), + [sym_map] = STATE(2714), + [sym_boolean] = STATE(2714), + [sym_nil] = STATE(2714), + [sym_call] = STATE(2714), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__parenthesised_call_arguments] = STATE(1898), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1910), + [sym_access_call] = STATE(2714), + [sym_do_block] = STATE(2105), + [sym_anonymous_function] = STATE(2714), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(923), + [sym_float] = ACTIONS(923), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(499), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_do] = ACTIONS(502), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(504), + }, + [136] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(945), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [137] = { + [sym__expression] = STATE(2256), + [sym_block] = STATE(2256), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2256), + [sym_atom] = STATE(2256), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2256), + [sym_charlist] = STATE(2256), + [sym_sigil] = STATE(2256), + [sym_unary_operator] = STATE(2256), + [sym_binary_operator] = STATE(2256), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2256), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2256), + [sym_tuple] = STATE(2256), + [sym_bitstring] = STATE(2256), + [sym_map] = STATE(2256), + [sym_boolean] = STATE(2256), + [sym_nil] = STATE(2256), + [sym_call] = STATE(2256), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2256), + [sym_stab_clause] = STATE(4850), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2256), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(947), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(949), + [sym_float] = ACTIONS(949), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(949), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [138] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(951), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [139] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(953), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [140] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(955), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [141] = { + [sym__expression] = STATE(1626), + [sym_block] = STATE(1626), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1626), + [sym_atom] = STATE(1626), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1626), + [sym_charlist] = STATE(1626), + [sym_sigil] = STATE(1626), + [sym_unary_operator] = STATE(1626), + [sym_binary_operator] = STATE(1626), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1626), + [sym_keywords] = STATE(1730), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1626), + [sym_tuple] = STATE(1626), + [sym_bitstring] = STATE(1626), + [sym_map] = STATE(1626), + [sym_boolean] = STATE(1626), + [sym_nil] = STATE(1626), + [sym_call] = STATE(1626), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__parenthesised_call_arguments] = STATE(1405), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym__call_arguments] = STATE(1552), + [sym_access_call] = STATE(1626), + [sym_do_block] = STATE(2071), + [sym_anonymous_function] = STATE(1626), + [anon_sym_LF] = ACTIONS(502), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(739), + [sym_float] = ACTIONS(739), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(754), + [anon_sym_catch] = ACTIONS(754), + [anon_sym_do] = ACTIONS(725), + [anon_sym_else] = ACTIONS(754), + [anon_sym_end] = ACTIONS(754), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(739), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(504), + }, + [142] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(957), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [143] = { + [sym__expression] = STATE(2714), + [sym_block] = STATE(2714), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2714), + [sym_atom] = STATE(2714), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2714), + [sym_charlist] = STATE(2714), + [sym_sigil] = STATE(2714), + [sym_unary_operator] = STATE(2714), + [sym_binary_operator] = STATE(2714), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2714), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(2714), + [sym_tuple] = STATE(2714), + [sym_bitstring] = STATE(2714), + [sym_map] = STATE(2714), + [sym_boolean] = STATE(2714), + [sym_nil] = STATE(2714), + [sym_call] = STATE(2714), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__parenthesised_call_arguments] = STATE(1899), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1914), + [sym_access_call] = STATE(2714), + [sym_do_block] = STATE(2143), + [sym_anonymous_function] = STATE(2714), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(923), + [sym_float] = ACTIONS(923), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(387), + [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(387), + [anon_sym_CARET_CARET_CARET] = ACTIONS(387), + [anon_sym_SLASH_SLASH] = ACTIONS(387), + [anon_sym_STAR_STAR] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(387), + [anon_sym_BSLASH_BSLASH] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(387), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_AMP_AMP_AMP] = ACTIONS(387), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_EQ_TILDE] = ACTIONS(387), + [anon_sym_EQ_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ_EQ] = ACTIONS(387), + [anon_sym_LT] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_GT] = ACTIONS(387), + [anon_sym_LT_LT_LT] = ACTIONS(387), + [anon_sym_GT_GT_GT] = ACTIONS(387), + [anon_sym_LT_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT_GT] = ACTIONS(387), + [anon_sym_LT_TILDE] = ACTIONS(387), + [anon_sym_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_TILDE_GT] = ACTIONS(387), + [anon_sym_LT_PIPE_GT] = ACTIONS(387), + [anon_sym_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH] = ACTIONS(387), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(387), + [anon_sym_DASH_DASH_DASH] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_LT_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_or] = ACTIONS(387), + [anon_sym_and] = ACTIONS(387), + [anon_sym_in] = ACTIONS(387), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(387), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_do] = ACTIONS(437), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(437), + }, + [144] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(959), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [145] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(961), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [146] = { + [sym__expression] = STATE(2887), + [sym_block] = STATE(2887), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(2887), + [sym_atom] = STATE(2887), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(2887), + [sym_charlist] = STATE(2887), + [sym_sigil] = STATE(2887), + [sym_unary_operator] = STATE(2887), + [sym_binary_operator] = STATE(2887), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(2887), + [sym_keywords] = STATE(3447), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(2887), + [sym_tuple] = STATE(2887), + [sym_bitstring] = STATE(2887), + [sym_map] = STATE(2887), + [sym_boolean] = STATE(2887), + [sym_nil] = STATE(2887), + [sym_call] = STATE(2887), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__parenthesised_call_arguments] = STATE(2420), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym__call_arguments] = STATE(2883), + [sym_access_call] = STATE(2887), + [sym_do_block] = STATE(3820), + [sym_anonymous_function] = STATE(2887), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(771), + [sym_float] = ACTIONS(771), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(811), + [anon_sym_DASH] = ACTIONS(811), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(900), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [anon_sym_GT_GT] = ACTIONS(485), + [sym_char] = ACTIONS(771), + [anon_sym_LPAREN2] = ACTIONS(805), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(504), + }, + [147] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(963), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [148] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(965), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [149] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(967), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [150] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(969), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [151] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(971), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [152] = { + [sym__expression] = STATE(2280), + [sym_block] = STATE(2280), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2280), + [sym_atom] = STATE(2280), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2280), + [sym_charlist] = STATE(2280), + [sym_sigil] = STATE(2280), + [sym_unary_operator] = STATE(2280), + [sym_binary_operator] = STATE(2280), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2280), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2280), + [sym_tuple] = STATE(2280), + [sym_bitstring] = STATE(2280), + [sym_map] = STATE(2280), + [sym_boolean] = STATE(2280), + [sym_nil] = STATE(2280), + [sym_call] = STATE(2280), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2280), + [sym_stab_clause] = STATE(4766), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2280), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(973), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(975), + [sym_float] = ACTIONS(975), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(975), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [153] = { + [sym__expression] = STATE(2571), + [sym_block] = STATE(2571), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2571), + [sym_atom] = STATE(2571), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2571), + [sym_charlist] = STATE(2571), + [sym_sigil] = STATE(2571), + [sym_unary_operator] = STATE(2571), + [sym_binary_operator] = STATE(2571), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2571), + [sym_keywords] = STATE(2722), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2571), + [sym_tuple] = STATE(2571), + [sym_bitstring] = STATE(2571), + [sym_map] = STATE(2571), + [sym_boolean] = STATE(2571), + [sym_nil] = STATE(2571), + [sym_call] = STATE(2571), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__parenthesised_call_arguments] = STATE(2253), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym__call_arguments] = STATE(2570), + [sym_access_call] = STATE(2571), + [sym_do_block] = STATE(3566), + [sym_anonymous_function] = STATE(2571), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [anon_sym_RPAREN] = ACTIONS(485), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(837), + [sym_float] = ACTIONS(837), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(487), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(843), + [anon_sym_DASH] = ACTIONS(843), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(904), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(837), + [anon_sym_LPAREN2] = ACTIONS(877), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(504), + }, + [154] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(977), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [155] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(979), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [156] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(981), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [157] = { + [sym__expression] = STATE(2245), + [sym_block] = STATE(2245), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2245), + [sym_atom] = STATE(2245), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2245), + [sym_charlist] = STATE(2245), + [sym_sigil] = STATE(2245), + [sym_unary_operator] = STATE(2245), + [sym_binary_operator] = STATE(2245), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2245), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2245), + [sym_tuple] = STATE(2245), + [sym_bitstring] = STATE(2245), + [sym_map] = STATE(2245), + [sym_boolean] = STATE(2245), + [sym_nil] = STATE(2245), + [sym_call] = STATE(2245), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2245), + [sym_stab_clause] = STATE(4789), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2245), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(983), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(985), + [sym_float] = ACTIONS(985), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(985), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [158] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(987), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [159] = { + [sym__expression] = STATE(2228), + [sym_block] = STATE(2228), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2228), + [sym_atom] = STATE(2228), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2228), + [sym_charlist] = STATE(2228), + [sym_sigil] = STATE(2228), + [sym_unary_operator] = STATE(2228), + [sym_binary_operator] = STATE(2228), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2228), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2228), + [sym_tuple] = STATE(2228), + [sym_bitstring] = STATE(2228), + [sym_map] = STATE(2228), + [sym_boolean] = STATE(2228), + [sym_nil] = STATE(2228), + [sym_call] = STATE(2228), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2228), + [sym_stab_clause] = STATE(4758), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2228), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(989), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(991), + [sym_float] = ACTIONS(991), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(991), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [160] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(993), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [161] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(995), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [162] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(997), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [163] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(999), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [164] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1001), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [165] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1003), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [166] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1005), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [167] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1007), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [168] = { + [sym__expression] = STATE(2290), + [sym_block] = STATE(2290), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2290), + [sym_atom] = STATE(2290), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2290), + [sym_charlist] = STATE(2290), + [sym_sigil] = STATE(2290), + [sym_unary_operator] = STATE(2290), + [sym_binary_operator] = STATE(2290), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2290), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2290), + [sym_tuple] = STATE(2290), + [sym_bitstring] = STATE(2290), + [sym_map] = STATE(2290), + [sym_boolean] = STATE(2290), + [sym_nil] = STATE(2290), + [sym_call] = STATE(2290), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2290), + [sym_stab_clause] = STATE(4835), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2290), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1009), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1011), + [sym_float] = ACTIONS(1011), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1011), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [169] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1013), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [170] = { + [sym__expression] = STATE(2248), + [sym_block] = STATE(2248), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2248), + [sym_atom] = STATE(2248), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2248), + [sym_charlist] = STATE(2248), + [sym_sigil] = STATE(2248), + [sym_unary_operator] = STATE(2248), + [sym_binary_operator] = STATE(2248), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2248), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2248), + [sym_tuple] = STATE(2248), + [sym_bitstring] = STATE(2248), + [sym_map] = STATE(2248), + [sym_boolean] = STATE(2248), + [sym_nil] = STATE(2248), + [sym_call] = STATE(2248), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2248), + [sym_stab_clause] = STATE(4808), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2248), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1015), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1017), + [sym_float] = ACTIONS(1017), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1017), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [171] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1019), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [172] = { + [sym__expression] = STATE(2268), + [sym_block] = STATE(2268), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2268), + [sym_atom] = STATE(2268), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2268), + [sym_charlist] = STATE(2268), + [sym_sigil] = STATE(2268), + [sym_unary_operator] = STATE(2268), + [sym_binary_operator] = STATE(2268), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2268), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2268), + [sym_tuple] = STATE(2268), + [sym_bitstring] = STATE(2268), + [sym_map] = STATE(2268), + [sym_boolean] = STATE(2268), + [sym_nil] = STATE(2268), + [sym_call] = STATE(2268), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2268), + [sym_stab_clause] = STATE(4848), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2268), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1021), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1023), + [sym_float] = ACTIONS(1023), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1023), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [173] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1025), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [174] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1027), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [175] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1029), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [176] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1031), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [177] = { + [sym__expression] = STATE(2287), + [sym_block] = STATE(2287), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2287), + [sym_atom] = STATE(2287), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2287), + [sym_charlist] = STATE(2287), + [sym_sigil] = STATE(2287), + [sym_unary_operator] = STATE(2287), + [sym_binary_operator] = STATE(2287), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2287), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2287), + [sym_tuple] = STATE(2287), + [sym_bitstring] = STATE(2287), + [sym_map] = STATE(2287), + [sym_boolean] = STATE(2287), + [sym_nil] = STATE(2287), + [sym_call] = STATE(2287), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2287), + [sym_stab_clause] = STATE(4769), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2287), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1033), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1035), + [sym_float] = ACTIONS(1035), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1035), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [178] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1037), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [179] = { + [sym__expression] = STATE(2292), + [sym_block] = STATE(2292), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2292), + [sym_atom] = STATE(2292), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2292), + [sym_charlist] = STATE(2292), + [sym_sigil] = STATE(2292), + [sym_unary_operator] = STATE(2292), + [sym_binary_operator] = STATE(2292), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2292), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2292), + [sym_tuple] = STATE(2292), + [sym_bitstring] = STATE(2292), + [sym_map] = STATE(2292), + [sym_boolean] = STATE(2292), + [sym_nil] = STATE(2292), + [sym_call] = STATE(2292), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2292), + [sym_stab_clause] = STATE(4817), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2292), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1039), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1041), + [sym_float] = ACTIONS(1041), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1041), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [180] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1043), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [181] = { + [sym__expression] = STATE(2237), + [sym_block] = STATE(2237), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2237), + [sym_atom] = STATE(2237), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2237), + [sym_charlist] = STATE(2237), + [sym_sigil] = STATE(2237), + [sym_unary_operator] = STATE(2237), + [sym_binary_operator] = STATE(2237), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2237), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(2237), + [sym_tuple] = STATE(2237), + [sym_bitstring] = STATE(2237), + [sym_map] = STATE(2237), + [sym_boolean] = STATE(2237), + [sym_nil] = STATE(2237), + [sym_call] = STATE(2237), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2237), + [sym_stab_clause] = STATE(4771), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(2237), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1045), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1047), + [sym_float] = ACTIONS(1047), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1047), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [182] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_RPAREN] = ACTIONS(1049), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [183] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4690), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [184] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4752), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [185] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4839), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [186] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4825), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [187] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4774), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [188] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4780), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [189] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4749), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [190] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4806), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [191] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3208), + [sym_atom] = STATE(3208), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3208), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3208), + [sym_stab_clause] = STATE(5273), + [sym__stab_clause_left] = STATE(5417), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments_with_guard] = STATE(5417), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(913), + [sym_float] = ACTIONS(913), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(261), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(913), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [192] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4842), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [193] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(5285), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [194] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4745), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [195] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4812), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [196] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4795), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [197] = { + [sym__expression] = STATE(1491), + [sym_block] = STATE(1491), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1491), + [sym_atom] = STATE(1491), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1491), + [sym_charlist] = STATE(1491), + [sym_sigil] = STATE(1491), + [sym_unary_operator] = STATE(1491), + [sym_binary_operator] = STATE(1491), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1491), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1491), + [sym_tuple] = STATE(1491), + [sym_bitstring] = STATE(1491), + [sym_map] = STATE(1491), + [sym_boolean] = STATE(1491), + [sym_nil] = STATE(1491), + [sym_call] = STATE(1491), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1491), + [sym_stab_clause] = STATE(4137), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1491), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1051), + [sym_float] = ACTIONS(1051), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(1053), + [anon_sym_catch] = ACTIONS(1053), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(1053), + [anon_sym_end] = ACTIONS(1053), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(1053), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1051), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [198] = { + [sym__expression] = STATE(1493), + [sym_block] = STATE(1493), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1493), + [sym_atom] = STATE(1493), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1493), + [sym_charlist] = STATE(1493), + [sym_sigil] = STATE(1493), + [sym_unary_operator] = STATE(1493), + [sym_binary_operator] = STATE(1493), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1493), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1493), + [sym_tuple] = STATE(1493), + [sym_bitstring] = STATE(1493), + [sym_map] = STATE(1493), + [sym_boolean] = STATE(1493), + [sym_nil] = STATE(1493), + [sym_call] = STATE(1493), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1493), + [sym_stab_clause] = STATE(4154), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1493), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1056), + [sym_float] = ACTIONS(1056), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_end] = ACTIONS(1058), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(1058), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1056), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [199] = { + [sym__expression] = STATE(1507), + [sym_block] = STATE(1507), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1507), + [sym_atom] = STATE(1507), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1507), + [sym_charlist] = STATE(1507), + [sym_sigil] = STATE(1507), + [sym_unary_operator] = STATE(1507), + [sym_binary_operator] = STATE(1507), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1507), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1507), + [sym_tuple] = STATE(1507), + [sym_bitstring] = STATE(1507), + [sym_map] = STATE(1507), + [sym_boolean] = STATE(1507), + [sym_nil] = STATE(1507), + [sym_call] = STATE(1507), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1507), + [sym_stab_clause] = STATE(4152), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1507), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1061), + [sym_float] = ACTIONS(1061), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(1063), + [anon_sym_catch] = ACTIONS(1063), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_end] = ACTIONS(1063), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1061), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [200] = { + [sym__expression] = STATE(1508), + [sym_block] = STATE(1508), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1508), + [sym_atom] = STATE(1508), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1508), + [sym_charlist] = STATE(1508), + [sym_sigil] = STATE(1508), + [sym_unary_operator] = STATE(1508), + [sym_binary_operator] = STATE(1508), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1508), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(1508), + [sym_tuple] = STATE(1508), + [sym_bitstring] = STATE(1508), + [sym_map] = STATE(1508), + [sym_boolean] = STATE(1508), + [sym_nil] = STATE(1508), + [sym_call] = STATE(1508), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1508), + [sym_stab_clause] = STATE(4146), + [sym__stab_clause_left] = STATE(5331), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments_with_guard] = STATE(5331), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(1508), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(67), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1066), + [sym_float] = ACTIONS(1066), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(1068), + [anon_sym_catch] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(1068), + [anon_sym_end] = ACTIONS(1068), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(1068), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1066), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [201] = { + [sym__expression] = STATE(2714), + [sym_block] = STATE(2714), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2714), + [sym_atom] = STATE(2714), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2714), + [sym_charlist] = STATE(2714), + [sym_sigil] = STATE(2714), + [sym_unary_operator] = STATE(2714), + [sym_binary_operator] = STATE(2714), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2714), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(2714), + [sym_tuple] = STATE(2714), + [sym_bitstring] = STATE(2714), + [sym_map] = STATE(2714), + [sym_boolean] = STATE(2714), + [sym_nil] = STATE(2714), + [sym_call] = STATE(2714), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__parenthesised_call_arguments] = STATE(1836), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1962), + [sym_access_call] = STATE(2714), + [sym_do_block] = STATE(3075), + [sym_anonymous_function] = STATE(2714), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(923), + [sym_float] = ACTIONS(923), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(485), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(429), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(504), + }, + [202] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5245), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym_stab_clause] = STATE(4775), + [sym__stab_clause_left] = STATE(5428), + [sym__stab_clause_parentheses_arguments] = STATE(5296), + [sym__stab_clause_parentheses_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments_with_guard] = STATE(5428), + [sym__stab_clause_arguments] = STATE(5294), + [sym__stab_clause_arguments_expression] = STATE(4741), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(333), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(347), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [203] = { + [sym__expression] = STATE(2264), + [sym_block] = STATE(2264), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2264), + [sym_atom] = STATE(2264), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2264), + [sym_charlist] = STATE(2264), + [sym_sigil] = STATE(2264), + [sym_unary_operator] = STATE(2264), + [sym_binary_operator] = STATE(2264), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2264), + [sym_keywords] = STATE(2282), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2264), + [sym_tuple] = STATE(2264), + [sym_bitstring] = STATE(2264), + [sym_map] = STATE(2264), + [sym_boolean] = STATE(2264), + [sym_nil] = STATE(2264), + [sym_call] = STATE(2264), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__parenthesised_call_arguments] = STATE(1836), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym__call_arguments] = STATE(1962), + [sym_access_call] = STATE(2264), + [sym_do_block] = STATE(3075), + [sym_anonymous_function] = STATE(2264), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(399), + [sym_float] = ACTIONS(399), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(487), + [anon_sym_PIPE] = ACTIONS(487), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(487), + [anon_sym_CARET_CARET_CARET] = ACTIONS(490), + [anon_sym_SLASH_SLASH] = ACTIONS(490), + [anon_sym_STAR_STAR] = ACTIONS(487), + [anon_sym_DOT] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(487), + [anon_sym_BSLASH_BSLASH] = ACTIONS(487), + [anon_sym_PIPE_PIPE] = ACTIONS(487), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(487), + [anon_sym_AMP_AMP] = ACTIONS(487), + [anon_sym_AMP_AMP_AMP] = ACTIONS(487), + [anon_sym_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ] = ACTIONS(487), + [anon_sym_EQ_TILDE] = ACTIONS(487), + [anon_sym_EQ_EQ_EQ] = ACTIONS(487), + [anon_sym_BANG_EQ_EQ] = ACTIONS(487), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_LT_EQ] = ACTIONS(487), + [anon_sym_GT_EQ] = ACTIONS(487), + [anon_sym_PIPE_GT] = ACTIONS(487), + [anon_sym_LT_LT_LT] = ACTIONS(487), + [anon_sym_GT_GT_GT] = ACTIONS(487), + [anon_sym_LT_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT_GT] = ACTIONS(487), + [anon_sym_LT_TILDE] = ACTIONS(487), + [anon_sym_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_TILDE_GT] = ACTIONS(487), + [anon_sym_LT_PIPE_GT] = ACTIONS(487), + [anon_sym_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH] = ACTIONS(487), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(487), + [anon_sym_DASH_DASH_DASH] = ACTIONS(487), + [anon_sym_DOT_DOT] = ACTIONS(487), + [anon_sym_LT_GT] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_STAR] = ACTIONS(487), + [anon_sym_SLASH] = ACTIONS(487), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(1071), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(496), + [anon_sym_EQ_GT] = ACTIONS(485), + [anon_sym_or] = ACTIONS(496), + [anon_sym_and] = ACTIONS(496), + [anon_sym_in] = ACTIONS(496), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(429), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(399), + [anon_sym_LPAREN2] = ACTIONS(435), + [anon_sym_LBRACK2] = ACTIONS(502), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(504), + }, + [204] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5415), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1099), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [205] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5365), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [206] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5344), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [207] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5373), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [208] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5330), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1125), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [209] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5351), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [210] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5406), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [211] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5451), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1131), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [212] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5422), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [213] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5349), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [214] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5359), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [215] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5446), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [216] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5382), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1141), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [217] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5443), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [218] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5357), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [219] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5383), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [220] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5343), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1149), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [221] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5453), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [222] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5434), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [223] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5328), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [224] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5444), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [225] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5400), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [226] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5392), + [sym__items_with_trailing_separator] = STATE(5375), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [227] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym_map_content] = STATE(5404), + [sym__items_with_trailing_separator] = STATE(5327), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [228] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5416), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1165), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [229] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5339), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1167), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [230] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5445), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1169), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [231] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5435), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [232] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5426), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1221), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [233] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5457), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1227), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [234] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5452), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [235] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5326), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1231), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [236] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5334), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1233), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [237] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5371), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1235), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [238] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5369), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1237), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [239] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5429), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1239), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [240] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5352), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [241] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5353), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [242] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5354), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1245), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [243] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5432), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1247), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [244] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5447), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1249), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [245] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5356), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1251), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [246] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5376), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1253), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [247] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5380), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1255), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [248] = { + [sym__expression] = STATE(3192), + [sym_block] = STATE(3192), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3192), + [sym_atom] = STATE(3192), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3192), + [sym_charlist] = STATE(3192), + [sym_sigil] = STATE(3192), + [sym_unary_operator] = STATE(3192), + [sym_binary_operator] = STATE(3192), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3192), + [sym_keywords] = STATE(5073), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3192), + [sym_tuple] = STATE(3192), + [sym_bitstring] = STATE(3192), + [sym_map] = STATE(3192), + [sym_boolean] = STATE(3192), + [sym_nil] = STATE(3192), + [sym_call] = STATE(3192), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3192), + [sym_anonymous_function] = STATE(3192), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1257), + [sym_float] = ACTIONS(1257), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_RBRACK] = ACTIONS(1259), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1257), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [249] = { + [sym__expression] = STATE(3192), + [sym_block] = STATE(3192), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3192), + [sym_atom] = STATE(3192), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3192), + [sym_charlist] = STATE(3192), + [sym_sigil] = STATE(3192), + [sym_unary_operator] = STATE(3192), + [sym_binary_operator] = STATE(3192), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3192), + [sym_keywords] = STATE(5162), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3192), + [sym_tuple] = STATE(3192), + [sym_bitstring] = STATE(3192), + [sym_map] = STATE(3192), + [sym_boolean] = STATE(3192), + [sym_nil] = STATE(3192), + [sym_call] = STATE(3192), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3192), + [sym_anonymous_function] = STATE(3192), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1257), + [sym_float] = ACTIONS(1257), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1257), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [250] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5411), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1263), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [251] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5408), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [252] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5407), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [253] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5427), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1269), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [254] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5387), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1271), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [255] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5345), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [256] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5410), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1275), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [257] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5431), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1277), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [258] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5335), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1279), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [259] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5412), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [260] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5420), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1283), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [261] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5423), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1285), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [262] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5418), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [263] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5399), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1289), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [264] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5413), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [265] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5348), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1293), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [266] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5358), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1295), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [267] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5393), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [268] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5394), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1299), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [269] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5397), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1301), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [270] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5385), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1303), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [271] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5332), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1305), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [272] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5403), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1307), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [273] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5379), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1309), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [274] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5405), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1311), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [275] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5329), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [276] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5436), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [277] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5440), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1317), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [278] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5439), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1319), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [279] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5350), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1321), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [280] = { + [sym__expression] = STATE(3534), + [sym_block] = STATE(3534), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3534), + [sym_atom] = STATE(3534), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3534), + [sym_charlist] = STATE(3534), + [sym_sigil] = STATE(3534), + [sym_unary_operator] = STATE(3534), + [sym_binary_operator] = STATE(3534), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3534), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3534), + [sym_tuple] = STATE(3534), + [sym_bitstring] = STATE(3534), + [sym_map] = STATE(3534), + [sym__items_with_trailing_separator] = STATE(5341), + [sym_boolean] = STATE(3534), + [sym_nil] = STATE(3534), + [sym_call] = STATE(3534), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3534), + [sym_anonymous_function] = STATE(3534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1187), + [sym_float] = ACTIONS(1187), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1323), + [sym_char] = ACTIONS(1187), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [281] = { + [sym__expression] = STATE(3632), + [sym_block] = STATE(3632), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3632), + [sym_atom] = STATE(3632), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3632), + [sym_charlist] = STATE(3632), + [sym_sigil] = STATE(3632), + [sym_unary_operator] = STATE(3632), + [sym_binary_operator] = STATE(3632), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3632), + [sym_keywords] = STATE(5310), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3632), + [sym_tuple] = STATE(3632), + [sym_bitstring] = STATE(3632), + [sym_map] = STATE(3632), + [sym_boolean] = STATE(3632), + [sym_nil] = STATE(3632), + [sym_call] = STATE(3632), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym__call_arguments] = STATE(5347), + [sym_access_call] = STATE(3632), + [sym_anonymous_function] = STATE(3632), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1325), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1171), + [sym_float] = ACTIONS(1171), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1171), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [282] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5338), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_RBRACK] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [283] = { + [sym__expression] = STATE(3133), + [sym_block] = STATE(3133), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3133), + [sym_atom] = STATE(3133), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3133), + [sym_charlist] = STATE(3133), + [sym_sigil] = STATE(3133), + [sym_unary_operator] = STATE(3133), + [sym_binary_operator] = STATE(3133), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3133), + [sym_keywords] = STATE(5129), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3133), + [sym_tuple] = STATE(3133), + [sym_bitstring] = STATE(3133), + [sym_map] = STATE(3133), + [sym__items_with_trailing_separator] = STATE(5337), + [sym_boolean] = STATE(3133), + [sym_nil] = STATE(3133), + [sym_call] = STATE(3133), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3133), + [sym_anonymous_function] = STATE(3133), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1079), + [sym_float] = ACTIONS(1079), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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_RBRACE] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1079), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [284] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5238), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym__stab_clause_arguments_expression] = STATE(5173), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [285] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_keywords] = STATE(5237), + [sym_pair] = STATE(4739), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym__stab_clause_arguments_expression] = STATE(5173), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [286] = { + [sym__expression] = STATE(3891), + [sym_block] = STATE(3891), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3891), + [sym_atom] = STATE(3891), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3891), + [sym_charlist] = STATE(3891), + [sym_sigil] = STATE(3891), + [sym_unary_operator] = STATE(3891), + [sym_binary_operator] = STATE(3891), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3891), + [sym_keywords] = STATE(5162), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3891), + [sym_tuple] = STATE(3891), + [sym_bitstring] = STATE(3891), + [sym_map] = STATE(3891), + [sym_boolean] = STATE(3891), + [sym_nil] = STATE(3891), + [sym_call] = STATE(3891), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3891), + [sym_anonymous_function] = STATE(3891), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1261), + [sym_char] = ACTIONS(1333), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [287] = { + [sym__expression] = STATE(3891), + [sym_block] = STATE(3891), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3891), + [sym_atom] = STATE(3891), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3891), + [sym_charlist] = STATE(3891), + [sym_sigil] = STATE(3891), + [sym_unary_operator] = STATE(3891), + [sym_binary_operator] = STATE(3891), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3891), + [sym_keywords] = STATE(5073), + [sym_pair] = STATE(5241), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3891), + [sym_tuple] = STATE(3891), + [sym_bitstring] = STATE(3891), + [sym_map] = STATE(3891), + [sym_boolean] = STATE(3891), + [sym_nil] = STATE(3891), + [sym_call] = STATE(3891), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3891), + [sym_anonymous_function] = STATE(3891), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [anon_sym_GT_GT] = ACTIONS(1259), + [sym_char] = ACTIONS(1333), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [288] = { + [sym__expression] = STATE(3193), + [sym_block] = STATE(3193), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(3193), + [sym_atom] = STATE(3193), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3193), + [sym_charlist] = STATE(3193), + [sym_sigil] = STATE(3193), + [sym_unary_operator] = STATE(3193), + [sym_binary_operator] = STATE(3193), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3193), + [sym_keywords] = STATE(2265), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(3193), + [sym_tuple] = STATE(3193), + [sym_bitstring] = STATE(3193), + [sym_map] = STATE(3193), + [sym_boolean] = STATE(3193), + [sym_nil] = STATE(3193), + [sym_call] = STATE(3193), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3193), + [sym_anonymous_function] = STATE(3193), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1335), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [289] = { + [sym__expression] = STATE(3862), + [sym_block] = STATE(3862), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(1274), + [sym_special_identifier] = STATE(1274), + [sym_alias] = STATE(3862), + [sym_atom] = STATE(3862), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3443), + [sym__quoted_i_single] = STATE(3439), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3862), + [sym_charlist] = STATE(3862), + [sym_sigil] = STATE(3862), + [sym_unary_operator] = STATE(3862), + [sym_binary_operator] = STATE(3862), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3862), + [sym_keywords] = STATE(3485), + [sym_pair] = STATE(3244), + [sym_keyword] = STATE(785), + [sym_list] = STATE(3862), + [sym_tuple] = STATE(3862), + [sym_bitstring] = STATE(3862), + [sym_map] = STATE(3862), + [sym_boolean] = STATE(3862), + [sym_nil] = STATE(3862), + [sym_call] = STATE(3862), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3862), + [sym_anonymous_function] = STATE(3862), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(1337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [sym_unused_identifier] = ACTIONS(1339), + [anon_sym___MODULE__] = ACTIONS(1341), + [anon_sym___DIR__] = ACTIONS(1341), + [anon_sym___ENV__] = ACTIONS(1341), + [anon_sym___CALLER__] = ACTIONS(1341), + [anon_sym___STACKTRACE__] = ACTIONS(1341), + [sym__alias_single] = ACTIONS(1343), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1345), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_nil] = ACTIONS(1361), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1345), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [290] = { + [sym__expression] = STATE(3773), + [sym_block] = STATE(3773), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3773), + [sym_atom] = STATE(3773), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3773), + [sym_charlist] = STATE(3773), + [sym_sigil] = STATE(3773), + [sym_unary_operator] = STATE(3773), + [sym_binary_operator] = STATE(3773), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3773), + [sym_keywords] = STATE(2022), + [sym_pair] = STATE(3410), + [sym_keyword] = STATE(831), + [sym_list] = STATE(3773), + [sym_tuple] = STATE(3773), + [sym_bitstring] = STATE(3773), + [sym_map] = STATE(3773), + [sym_boolean] = STATE(3773), + [sym_nil] = STATE(3773), + [sym_call] = STATE(3773), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3773), + [sym_anonymous_function] = STATE(3773), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1371), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1395), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1371), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [291] = { + [sym__expression] = STATE(1629), + [sym_block] = STATE(1629), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1629), + [sym_atom] = STATE(1629), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1629), + [sym_charlist] = STATE(1629), + [sym_sigil] = STATE(1629), + [sym_unary_operator] = STATE(1629), + [sym_binary_operator] = STATE(1629), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1629), + [sym_keywords] = STATE(1512), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1629), + [sym_tuple] = STATE(1629), + [sym_bitstring] = STATE(1629), + [sym_map] = STATE(1629), + [sym_boolean] = STATE(1629), + [sym_nil] = STATE(1629), + [sym_call] = STATE(1629), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1629), + [sym_anonymous_function] = STATE(1629), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1409), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [292] = { + [sym__expression] = STATE(3849), + [sym_block] = STATE(3849), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3849), + [sym_atom] = STATE(3849), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3849), + [sym_charlist] = STATE(3849), + [sym_sigil] = STATE(3849), + [sym_unary_operator] = STATE(3849), + [sym_binary_operator] = STATE(3849), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3849), + [sym_keywords] = STATE(1925), + [sym_pair] = STATE(3410), + [sym_keyword] = STATE(831), + [sym_list] = STATE(3849), + [sym_tuple] = STATE(3849), + [sym_bitstring] = STATE(3849), + [sym_map] = STATE(3849), + [sym_boolean] = STATE(3849), + [sym_nil] = STATE(3849), + [sym_call] = STATE(3849), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3849), + [sym_anonymous_function] = STATE(3849), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1411), + [sym_float] = ACTIONS(1411), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1373), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1377), + [anon_sym_DASH] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1377), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1377), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1395), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1411), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [293] = { + [sym__expression] = STATE(1629), + [sym_block] = STATE(1629), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1629), + [sym_atom] = STATE(1629), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1629), + [sym_charlist] = STATE(1629), + [sym_sigil] = STATE(1629), + [sym_unary_operator] = STATE(1629), + [sym_binary_operator] = STATE(1629), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1629), + [sym_keywords] = STATE(1492), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1629), + [sym_tuple] = STATE(1629), + [sym_bitstring] = STATE(1629), + [sym_map] = STATE(1629), + [sym_boolean] = STATE(1629), + [sym_nil] = STATE(1629), + [sym_call] = STATE(1629), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1629), + [sym_anonymous_function] = STATE(1629), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1409), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [294] = { + [sym__expression] = STATE(2745), + [sym_block] = STATE(2745), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2745), + [sym_atom] = STATE(2745), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2745), + [sym_charlist] = STATE(2745), + [sym_sigil] = STATE(2745), + [sym_unary_operator] = STATE(2745), + [sym_binary_operator] = STATE(2745), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2745), + [sym_keywords] = STATE(2746), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2745), + [sym_tuple] = STATE(2745), + [sym_bitstring] = STATE(2745), + [sym_map] = STATE(2745), + [sym_boolean] = STATE(2745), + [sym_nil] = STATE(2745), + [sym_call] = STATE(2745), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2745), + [sym_anonymous_function] = STATE(2745), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(1413), + [sym_float] = ACTIONS(1413), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(1413), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [295] = { + [sym__expression] = STATE(2876), + [sym_block] = STATE(2876), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2876), + [sym_atom] = STATE(2876), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2876), + [sym_charlist] = STATE(2876), + [sym_sigil] = STATE(2876), + [sym_unary_operator] = STATE(2876), + [sym_binary_operator] = STATE(2876), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2876), + [sym_keywords] = STATE(2686), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2876), + [sym_tuple] = STATE(2876), + [sym_bitstring] = STATE(2876), + [sym_map] = STATE(2876), + [sym_boolean] = STATE(2876), + [sym_nil] = STATE(2876), + [sym_call] = STATE(2876), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2876), + [sym_anonymous_function] = STATE(2876), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(1415), + [sym_float] = ACTIONS(1415), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(1415), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [296] = { + [sym__expression] = STATE(2894), + [sym_block] = STATE(2894), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2894), + [sym_atom] = STATE(2894), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2894), + [sym_charlist] = STATE(2894), + [sym_sigil] = STATE(2894), + [sym_unary_operator] = STATE(2894), + [sym_binary_operator] = STATE(2894), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2894), + [sym_keywords] = STATE(1698), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2894), + [sym_tuple] = STATE(2894), + [sym_bitstring] = STATE(2894), + [sym_map] = STATE(2894), + [sym_boolean] = STATE(2894), + [sym_nil] = STATE(2894), + [sym_call] = STATE(2894), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2894), + [sym_anonymous_function] = STATE(2894), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1417), + [sym_float] = ACTIONS(1417), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1417), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [297] = { + [sym__expression] = STATE(2910), + [sym_block] = STATE(2910), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2910), + [sym_atom] = STATE(2910), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2910), + [sym_charlist] = STATE(2910), + [sym_sigil] = STATE(2910), + [sym_unary_operator] = STATE(2910), + [sym_binary_operator] = STATE(2910), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2910), + [sym_keywords] = STATE(1710), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2910), + [sym_tuple] = STATE(2910), + [sym_bitstring] = STATE(2910), + [sym_map] = STATE(2910), + [sym_boolean] = STATE(2910), + [sym_nil] = STATE(2910), + [sym_call] = STATE(2910), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2910), + [sym_anonymous_function] = STATE(2910), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1419), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [298] = { + [sym__expression] = STATE(3287), + [sym_block] = STATE(3287), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3287), + [sym_atom] = STATE(3287), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3287), + [sym_charlist] = STATE(3287), + [sym_sigil] = STATE(3287), + [sym_unary_operator] = STATE(3287), + [sym_binary_operator] = STATE(3287), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3287), + [sym_keywords] = STATE(1758), + [sym_pair] = STATE(2711), + [sym_keyword] = STATE(718), + [sym_list] = STATE(3287), + [sym_tuple] = STATE(3287), + [sym_bitstring] = STATE(3287), + [sym_map] = STATE(3287), + [sym_boolean] = STATE(3287), + [sym_nil] = STATE(3287), + [sym_call] = STATE(3287), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3287), + [sym_anonymous_function] = STATE(3287), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1423), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1423), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [299] = { + [sym__expression] = STATE(2771), + [sym_block] = STATE(2771), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2771), + [sym_atom] = STATE(2771), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2771), + [sym_charlist] = STATE(2771), + [sym_sigil] = STATE(2771), + [sym_unary_operator] = STATE(2771), + [sym_binary_operator] = STATE(2771), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2771), + [sym_keywords] = STATE(1671), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2771), + [sym_tuple] = STATE(2771), + [sym_bitstring] = STATE(2771), + [sym_map] = STATE(2771), + [sym_boolean] = STATE(2771), + [sym_nil] = STATE(2771), + [sym_call] = STATE(2771), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2771), + [sym_anonymous_function] = STATE(2771), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1425), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [300] = { + [sym__expression] = STATE(3310), + [sym_block] = STATE(3310), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(3310), + [sym_atom] = STATE(3310), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3310), + [sym_charlist] = STATE(3310), + [sym_sigil] = STATE(3310), + [sym_unary_operator] = STATE(3310), + [sym_binary_operator] = STATE(3310), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3310), + [sym_keywords] = STATE(2127), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(3310), + [sym_tuple] = STATE(3310), + [sym_bitstring] = STATE(3310), + [sym_map] = STATE(3310), + [sym_boolean] = STATE(3310), + [sym_nil] = STATE(3310), + [sym_call] = STATE(3310), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3310), + [sym_anonymous_function] = STATE(3310), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1427), + [sym_float] = ACTIONS(1427), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1427), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [301] = { + [sym__expression] = STATE(3297), + [sym_block] = STATE(3297), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(3297), + [sym_atom] = STATE(3297), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3297), + [sym_charlist] = STATE(3297), + [sym_sigil] = STATE(3297), + [sym_unary_operator] = STATE(3297), + [sym_binary_operator] = STATE(3297), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3297), + [sym_keywords] = STATE(2130), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(3297), + [sym_tuple] = STATE(3297), + [sym_bitstring] = STATE(3297), + [sym_map] = STATE(3297), + [sym_boolean] = STATE(3297), + [sym_nil] = STATE(3297), + [sym_call] = STATE(3297), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3297), + [sym_anonymous_function] = STATE(3297), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1429), + [sym_float] = ACTIONS(1429), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1429), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [302] = { + [sym__expression] = STATE(2503), + [sym_block] = STATE(2503), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2503), + [sym_atom] = STATE(2503), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2503), + [sym_charlist] = STATE(2503), + [sym_sigil] = STATE(2503), + [sym_unary_operator] = STATE(2503), + [sym_binary_operator] = STATE(2503), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2503), + [sym_keywords] = STATE(1536), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2503), + [sym_tuple] = STATE(2503), + [sym_bitstring] = STATE(2503), + [sym_map] = STATE(2503), + [sym_boolean] = STATE(2503), + [sym_nil] = STATE(2503), + [sym_call] = STATE(2503), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2503), + [sym_anonymous_function] = STATE(2503), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1431), + [sym_float] = ACTIONS(1431), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1431), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [303] = { + [sym__expression] = STATE(1661), + [sym_block] = STATE(1661), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1661), + [sym_atom] = STATE(1661), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1661), + [sym_charlist] = STATE(1661), + [sym_sigil] = STATE(1661), + [sym_unary_operator] = STATE(1661), + [sym_binary_operator] = STATE(1661), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1661), + [sym_keywords] = STATE(1533), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1661), + [sym_tuple] = STATE(1661), + [sym_bitstring] = STATE(1661), + [sym_map] = STATE(1661), + [sym_boolean] = STATE(1661), + [sym_nil] = STATE(1661), + [sym_call] = STATE(1661), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1661), + [sym_anonymous_function] = STATE(1661), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1433), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1433), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [304] = { + [sym__expression] = STATE(1604), + [sym_block] = STATE(1604), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1604), + [sym_atom] = STATE(1604), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1604), + [sym_charlist] = STATE(1604), + [sym_sigil] = STATE(1604), + [sym_unary_operator] = STATE(1604), + [sym_binary_operator] = STATE(1604), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1604), + [sym_keywords] = STATE(1536), + [sym_pair] = STATE(1449), + [sym_keyword] = STATE(823), + [sym_list] = STATE(1604), + [sym_tuple] = STATE(1604), + [sym_bitstring] = STATE(1604), + [sym_map] = STATE(1604), + [sym_boolean] = STATE(1604), + [sym_nil] = STATE(1604), + [sym_call] = STATE(1604), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1604), + [sym_anonymous_function] = STATE(1604), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1435), + [sym_float] = ACTIONS(1435), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(819), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(821), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(823), + [anon_sym_DASH] = ACTIONS(823), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_CARET] = ACTIONS(823), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(823), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(827), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1435), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [305] = { + [sym__expression] = STATE(2771), + [sym_block] = STATE(2771), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2771), + [sym_atom] = STATE(2771), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2771), + [sym_charlist] = STATE(2771), + [sym_sigil] = STATE(2771), + [sym_unary_operator] = STATE(2771), + [sym_binary_operator] = STATE(2771), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2771), + [sym_keywords] = STATE(1643), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2771), + [sym_tuple] = STATE(2771), + [sym_bitstring] = STATE(2771), + [sym_map] = STATE(2771), + [sym_boolean] = STATE(2771), + [sym_nil] = STATE(2771), + [sym_call] = STATE(2771), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2771), + [sym_anonymous_function] = STATE(2771), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1425), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [306] = { + [sym__expression] = STATE(2406), + [sym_block] = STATE(2406), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2406), + [sym_atom] = STATE(2406), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2406), + [sym_charlist] = STATE(2406), + [sym_sigil] = STATE(2406), + [sym_unary_operator] = STATE(2406), + [sym_binary_operator] = STATE(2406), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2406), + [sym_keywords] = STATE(2259), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2406), + [sym_tuple] = STATE(2406), + [sym_bitstring] = STATE(2406), + [sym_map] = STATE(2406), + [sym_boolean] = STATE(2406), + [sym_nil] = STATE(2406), + [sym_call] = STATE(2406), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2406), + [sym_anonymous_function] = STATE(2406), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1437), + [sym_float] = ACTIONS(1437), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [307] = { + [sym__expression] = STATE(3331), + [sym_block] = STATE(3331), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3331), + [sym_atom] = STATE(3331), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3331), + [sym_charlist] = STATE(3331), + [sym_sigil] = STATE(3331), + [sym_unary_operator] = STATE(3331), + [sym_binary_operator] = STATE(3331), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3331), + [sym_keywords] = STATE(1793), + [sym_pair] = STATE(2711), + [sym_keyword] = STATE(718), + [sym_list] = STATE(3331), + [sym_tuple] = STATE(3331), + [sym_bitstring] = STATE(3331), + [sym_map] = STATE(3331), + [sym_boolean] = STATE(3331), + [sym_nil] = STATE(3331), + [sym_call] = STATE(3331), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3331), + [sym_anonymous_function] = STATE(3331), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1439), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(263), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(267), + [anon_sym_DASH] = ACTIONS(267), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(267), + [anon_sym_CARET] = ACTIONS(267), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(267), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(271), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1439), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [308] = { + [sym__expression] = STATE(3890), + [sym_block] = STATE(3890), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3890), + [sym_atom] = STATE(3890), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3890), + [sym_charlist] = STATE(3890), + [sym_sigil] = STATE(3890), + [sym_unary_operator] = STATE(3890), + [sym_binary_operator] = STATE(3890), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3890), + [sym_keywords] = STATE(2022), + [sym_pair] = STATE(3086), + [sym_keyword] = STATE(838), + [sym_list] = STATE(3890), + [sym_tuple] = STATE(3890), + [sym_bitstring] = STATE(3890), + [sym_map] = STATE(3890), + [sym_boolean] = STATE(3890), + [sym_nil] = STATE(3890), + [sym_call] = STATE(3890), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3890), + [sym_anonymous_function] = STATE(3890), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1441), + [sym_float] = ACTIONS(1441), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1441), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [309] = { + [sym__expression] = STATE(3739), + [sym_block] = STATE(3739), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3739), + [sym_atom] = STATE(3739), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3739), + [sym_charlist] = STATE(3739), + [sym_sigil] = STATE(3739), + [sym_unary_operator] = STATE(3739), + [sym_binary_operator] = STATE(3739), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3739), + [sym_keywords] = STATE(3738), + [sym_pair] = STATE(3505), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3739), + [sym_tuple] = STATE(3739), + [sym_bitstring] = STATE(3739), + [sym_map] = STATE(3739), + [sym_boolean] = STATE(3739), + [sym_nil] = STATE(3739), + [sym_call] = STATE(3739), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3739), + [sym_anonymous_function] = STATE(3739), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1455), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(1455), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [310] = { + [sym__expression] = STATE(3730), + [sym_block] = STATE(3730), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(1284), + [sym_special_identifier] = STATE(1284), + [sym_alias] = STATE(3730), + [sym_atom] = STATE(3730), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3463), + [sym__quoted_i_single] = STATE(3464), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3730), + [sym_charlist] = STATE(3730), + [sym_sigil] = STATE(3730), + [sym_unary_operator] = STATE(3730), + [sym_binary_operator] = STATE(3730), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3730), + [sym_keywords] = STATE(3824), + [sym_pair] = STATE(3505), + [sym_keyword] = STATE(1195), + [sym_list] = STATE(3730), + [sym_tuple] = STATE(3730), + [sym_bitstring] = STATE(3730), + [sym_map] = STATE(3730), + [sym_boolean] = STATE(3730), + [sym_nil] = STATE(3730), + [sym_call] = STATE(3730), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3730), + [sym_anonymous_function] = STATE(3730), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), + [sym_unused_identifier] = ACTIONS(1179), + [anon_sym___MODULE__] = ACTIONS(1181), + [anon_sym___DIR__] = ACTIONS(1181), + [anon_sym___ENV__] = ACTIONS(1181), + [anon_sym___CALLER__] = ACTIONS(1181), + [anon_sym___STACKTRACE__] = ACTIONS(1181), + [sym__alias_single] = ACTIONS(1183), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1457), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1191), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1193), + [anon_sym_DASH] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1193), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [anon_sym_SQUOTE] = ACTIONS(1199), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_nil] = ACTIONS(1215), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(1457), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [311] = { + [sym__expression] = STATE(2775), + [sym_block] = STATE(2775), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2775), + [sym_atom] = STATE(2775), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2775), + [sym_charlist] = STATE(2775), + [sym_sigil] = STATE(2775), + [sym_unary_operator] = STATE(2775), + [sym_binary_operator] = STATE(2775), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2775), + [sym_keywords] = STATE(1671), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2775), + [sym_tuple] = STATE(2775), + [sym_bitstring] = STATE(2775), + [sym_map] = STATE(2775), + [sym_boolean] = STATE(2775), + [sym_nil] = STATE(2775), + [sym_call] = STATE(2775), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2775), + [sym_anonymous_function] = STATE(2775), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1459), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [312] = { + [sym__expression] = STATE(3428), + [sym_block] = STATE(3428), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(3428), + [sym_atom] = STATE(3428), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3428), + [sym_charlist] = STATE(3428), + [sym_sigil] = STATE(3428), + [sym_unary_operator] = STATE(3428), + [sym_binary_operator] = STATE(3428), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3428), + [sym_keywords] = STATE(3257), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(3428), + [sym_tuple] = STATE(3428), + [sym_bitstring] = STATE(3428), + [sym_map] = STATE(3428), + [sym_boolean] = STATE(3428), + [sym_nil] = STATE(3428), + [sym_call] = STATE(3428), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3428), + [sym_anonymous_function] = STATE(3428), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(1461), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [313] = { + [sym__expression] = STATE(3731), + [sym_block] = STATE(3731), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3731), + [sym_atom] = STATE(3731), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3731), + [sym_charlist] = STATE(3731), + [sym_sigil] = STATE(3731), + [sym_unary_operator] = STATE(3731), + [sym_binary_operator] = STATE(3731), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3731), + [sym_keywords] = STATE(1925), + [sym_pair] = STATE(3086), + [sym_keyword] = STATE(838), + [sym_list] = STATE(3731), + [sym_tuple] = STATE(3731), + [sym_bitstring] = STATE(3731), + [sym_map] = STATE(3731), + [sym_boolean] = STATE(3731), + [sym_nil] = STATE(3731), + [sym_call] = STATE(3731), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3731), + [sym_anonymous_function] = STATE(3731), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1463), + [sym_float] = ACTIONS(1463), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1451), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1463), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [314] = { + [sym__expression] = STATE(2865), + [sym_block] = STATE(2865), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2865), + [sym_atom] = STATE(2865), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2865), + [sym_charlist] = STATE(2865), + [sym_sigil] = STATE(2865), + [sym_unary_operator] = STATE(2865), + [sym_binary_operator] = STATE(2865), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2865), + [sym_keywords] = STATE(1710), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2865), + [sym_tuple] = STATE(2865), + [sym_bitstring] = STATE(2865), + [sym_map] = STATE(2865), + [sym_boolean] = STATE(2865), + [sym_nil] = STATE(2865), + [sym_call] = STATE(2865), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2865), + [sym_anonymous_function] = STATE(2865), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1465), + [sym_float] = ACTIONS(1465), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1465), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [315] = { + [sym__expression] = STATE(3912), + [sym_block] = STATE(3912), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3912), + [sym_atom] = STATE(3912), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3912), + [sym_charlist] = STATE(3912), + [sym_sigil] = STATE(3912), + [sym_unary_operator] = STATE(3912), + [sym_binary_operator] = STATE(3912), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3912), + [sym_keywords] = STATE(2965), + [sym_pair] = STATE(3728), + [sym_keyword] = STATE(836), + [sym_list] = STATE(3912), + [sym_tuple] = STATE(3912), + [sym_bitstring] = STATE(3912), + [sym_map] = STATE(3912), + [sym_boolean] = STATE(3912), + [sym_nil] = STATE(3912), + [sym_call] = STATE(3912), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3912), + [sym_anonymous_function] = STATE(3912), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1467), + [sym_float] = ACTIONS(1467), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1471), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1475), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1467), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [316] = { + [sym__expression] = STATE(2406), + [sym_block] = STATE(2406), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2406), + [sym_atom] = STATE(2406), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2406), + [sym_charlist] = STATE(2406), + [sym_sigil] = STATE(2406), + [sym_unary_operator] = STATE(2406), + [sym_binary_operator] = STATE(2406), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2406), + [sym_keywords] = STATE(2265), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2406), + [sym_tuple] = STATE(2406), + [sym_bitstring] = STATE(2406), + [sym_map] = STATE(2406), + [sym_boolean] = STATE(2406), + [sym_nil] = STATE(2406), + [sym_call] = STATE(2406), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2406), + [sym_anonymous_function] = STATE(2406), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1437), + [sym_float] = ACTIONS(1437), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1437), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [317] = { + [sym__expression] = STATE(3816), + [sym_block] = STATE(3816), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3816), + [sym_atom] = STATE(3816), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3816), + [sym_charlist] = STATE(3816), + [sym_sigil] = STATE(3816), + [sym_unary_operator] = STATE(3816), + [sym_binary_operator] = STATE(3816), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3816), + [sym_keywords] = STATE(2965), + [sym_pair] = STATE(3231), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3816), + [sym_tuple] = STATE(3816), + [sym_bitstring] = STATE(3816), + [sym_map] = STATE(3816), + [sym_boolean] = STATE(3816), + [sym_nil] = STATE(3816), + [sym_call] = STATE(3816), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3816), + [sym_anonymous_function] = STATE(3816), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1479), + [sym_float] = ACTIONS(1479), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1483), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1487), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1479), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [318] = { + [sym__expression] = STATE(3896), + [sym_block] = STATE(3896), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3896), + [sym_atom] = STATE(3896), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3896), + [sym_charlist] = STATE(3896), + [sym_sigil] = STATE(3896), + [sym_unary_operator] = STATE(3896), + [sym_binary_operator] = STATE(3896), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3896), + [sym_keywords] = STATE(2879), + [sym_pair] = STATE(3231), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3896), + [sym_tuple] = STATE(3896), + [sym_bitstring] = STATE(3896), + [sym_map] = STATE(3896), + [sym_boolean] = STATE(3896), + [sym_nil] = STATE(3896), + [sym_call] = STATE(3896), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3896), + [sym_anonymous_function] = STATE(3896), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1491), + [sym_float] = ACTIONS(1491), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1483), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1487), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1491), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [319] = { + [sym__expression] = STATE(3428), + [sym_block] = STATE(3428), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(3428), + [sym_atom] = STATE(3428), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3428), + [sym_charlist] = STATE(3428), + [sym_sigil] = STATE(3428), + [sym_unary_operator] = STATE(3428), + [sym_binary_operator] = STATE(3428), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3428), + [sym_keywords] = STATE(3213), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(3428), + [sym_tuple] = STATE(3428), + [sym_bitstring] = STATE(3428), + [sym_map] = STATE(3428), + [sym_boolean] = STATE(3428), + [sym_nil] = STATE(3428), + [sym_call] = STATE(3428), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3428), + [sym_anonymous_function] = STATE(3428), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(1461), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [320] = { + [sym__expression] = STATE(3945), + [sym_block] = STATE(3945), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3945), + [sym_atom] = STATE(3945), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3945), + [sym_charlist] = STATE(3945), + [sym_sigil] = STATE(3945), + [sym_unary_operator] = STATE(3945), + [sym_binary_operator] = STATE(3945), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3945), + [sym_keywords] = STATE(3661), + [sym_pair] = STATE(3503), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3945), + [sym_tuple] = STATE(3945), + [sym_bitstring] = STATE(3945), + [sym_map] = STATE(3945), + [sym_boolean] = STATE(3945), + [sym_nil] = STATE(3945), + [sym_call] = STATE(3945), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3945), + [sym_anonymous_function] = STATE(3945), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(1493), + [sym_float] = ACTIONS(1493), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(1501), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(1493), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [321] = { + [sym__expression] = STATE(3950), + [sym_block] = STATE(3950), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3950), + [sym_atom] = STATE(3950), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3950), + [sym_charlist] = STATE(3950), + [sym_sigil] = STATE(3950), + [sym_unary_operator] = STATE(3950), + [sym_binary_operator] = STATE(3950), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3950), + [sym_keywords] = STATE(3691), + [sym_pair] = STATE(3503), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3950), + [sym_tuple] = STATE(3950), + [sym_bitstring] = STATE(3950), + [sym_map] = STATE(3950), + [sym_boolean] = STATE(3950), + [sym_nil] = STATE(3950), + [sym_call] = STATE(3950), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3950), + [sym_anonymous_function] = STATE(3950), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(1505), + [sym_float] = ACTIONS(1505), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1497), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1499), + [anon_sym_DASH] = ACTIONS(1499), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_CARET] = ACTIONS(1499), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1499), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(1501), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(1505), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [322] = { + [sym__expression] = STATE(2775), + [sym_block] = STATE(2775), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2775), + [sym_atom] = STATE(2775), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2775), + [sym_charlist] = STATE(2775), + [sym_sigil] = STATE(2775), + [sym_unary_operator] = STATE(2775), + [sym_binary_operator] = STATE(2775), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2775), + [sym_keywords] = STATE(1643), + [sym_pair] = STATE(2518), + [sym_keyword] = STATE(645), + [sym_list] = STATE(2775), + [sym_tuple] = STATE(2775), + [sym_bitstring] = STATE(2775), + [sym_map] = STATE(2775), + [sym_boolean] = STATE(2775), + [sym_nil] = STATE(2775), + [sym_call] = STATE(2775), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2775), + [sym_anonymous_function] = STATE(2775), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(887), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(889), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(893), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1459), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [323] = { + [sym__expression] = STATE(3025), + [sym_block] = STATE(3025), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(3025), + [sym_atom] = STATE(3025), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3025), + [sym_charlist] = STATE(3025), + [sym_sigil] = STATE(3025), + [sym_unary_operator] = STATE(3025), + [sym_binary_operator] = STATE(3025), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3025), + [sym_keywords] = STATE(3026), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(3025), + [sym_tuple] = STATE(3025), + [sym_bitstring] = STATE(3025), + [sym_map] = STATE(3025), + [sym_boolean] = STATE(3025), + [sym_nil] = STATE(3025), + [sym_call] = STATE(3025), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3025), + [sym_anonymous_function] = STATE(3025), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(1507), + [sym_float] = ACTIONS(1507), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(1507), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [324] = { + [sym__expression] = STATE(3684), + [sym_block] = STATE(3684), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3684), + [sym_atom] = STATE(3684), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3684), + [sym_charlist] = STATE(3684), + [sym_sigil] = STATE(3684), + [sym_unary_operator] = STATE(3684), + [sym_binary_operator] = STATE(3684), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3684), + [sym_keywords] = STATE(2022), + [sym_pair] = STATE(3139), + [sym_keyword] = STATE(831), + [sym_list] = STATE(3684), + [sym_tuple] = STATE(3684), + [sym_bitstring] = STATE(3684), + [sym_map] = STATE(3684), + [sym_boolean] = STATE(3684), + [sym_nil] = STATE(3684), + [sym_call] = STATE(3684), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3684), + [sym_anonymous_function] = STATE(3684), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1509), + [sym_float] = ACTIONS(1509), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1517), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1509), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [325] = { + [sym__expression] = STATE(3934), + [sym_block] = STATE(3934), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3934), + [sym_atom] = STATE(3934), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3934), + [sym_charlist] = STATE(3934), + [sym_sigil] = STATE(3934), + [sym_unary_operator] = STATE(3934), + [sym_binary_operator] = STATE(3934), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3934), + [sym_keywords] = STATE(2879), + [sym_pair] = STATE(3728), + [sym_keyword] = STATE(836), + [sym_list] = STATE(3934), + [sym_tuple] = STATE(3934), + [sym_bitstring] = STATE(3934), + [sym_map] = STATE(3934), + [sym_boolean] = STATE(3934), + [sym_nil] = STATE(3934), + [sym_call] = STATE(3934), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3934), + [sym_anonymous_function] = STATE(3934), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1521), + [sym_float] = ACTIONS(1521), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1471), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1475), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1521), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [326] = { + [sym__expression] = STATE(3044), + [sym_block] = STATE(3044), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(3044), + [sym_atom] = STATE(3044), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3044), + [sym_charlist] = STATE(3044), + [sym_sigil] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_binary_operator] = STATE(3044), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3044), + [sym_keywords] = STATE(3048), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_bitstring] = STATE(3044), + [sym_map] = STATE(3044), + [sym_boolean] = STATE(3044), + [sym_nil] = STATE(3044), + [sym_call] = STATE(3044), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3044), + [sym_anonymous_function] = STATE(3044), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(1523), + [sym_float] = ACTIONS(1523), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(1523), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [327] = { + [sym__expression] = STATE(3151), + [sym_block] = STATE(3151), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(3151), + [sym_atom] = STATE(3151), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3151), + [sym_charlist] = STATE(3151), + [sym_sigil] = STATE(3151), + [sym_unary_operator] = STATE(3151), + [sym_binary_operator] = STATE(3151), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3151), + [sym_keywords] = STATE(3150), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(3151), + [sym_tuple] = STATE(3151), + [sym_bitstring] = STATE(3151), + [sym_map] = STATE(3151), + [sym_boolean] = STATE(3151), + [sym_nil] = STATE(3151), + [sym_call] = STATE(3151), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3151), + [sym_anonymous_function] = STATE(3151), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(1525), + [sym_float] = ACTIONS(1525), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(1525), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [328] = { + [sym__expression] = STATE(3180), + [sym_block] = STATE(3180), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3180), + [sym_atom] = STATE(3180), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3180), + [sym_charlist] = STATE(3180), + [sym_sigil] = STATE(3180), + [sym_unary_operator] = STATE(3180), + [sym_binary_operator] = STATE(3180), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3180), + [sym_keywords] = STATE(2879), + [sym_pair] = STATE(2972), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3180), + [sym_tuple] = STATE(3180), + [sym_bitstring] = STATE(3180), + [sym_map] = STATE(3180), + [sym_boolean] = STATE(3180), + [sym_nil] = STATE(3180), + [sym_call] = STATE(3180), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3180), + [sym_anonymous_function] = STATE(3180), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1527), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1527), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [329] = { + [sym__expression] = STATE(3167), + [sym_block] = STATE(3167), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3167), + [sym_atom] = STATE(3167), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3167), + [sym_charlist] = STATE(3167), + [sym_sigil] = STATE(3167), + [sym_unary_operator] = STATE(3167), + [sym_binary_operator] = STATE(3167), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3167), + [sym_keywords] = STATE(2965), + [sym_pair] = STATE(2972), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3167), + [sym_tuple] = STATE(3167), + [sym_bitstring] = STATE(3167), + [sym_map] = STATE(3167), + [sym_boolean] = STATE(3167), + [sym_nil] = STATE(3167), + [sym_call] = STATE(3167), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3167), + [sym_anonymous_function] = STATE(3167), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1529), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [330] = { + [sym__expression] = STATE(1879), + [sym_block] = STATE(1879), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1879), + [sym_atom] = STATE(1879), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1879), + [sym_charlist] = STATE(1879), + [sym_sigil] = STATE(1879), + [sym_unary_operator] = STATE(1879), + [sym_binary_operator] = STATE(1879), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1879), + [sym_keywords] = STATE(1643), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1879), + [sym_tuple] = STATE(1879), + [sym_bitstring] = STATE(1879), + [sym_map] = STATE(1879), + [sym_boolean] = STATE(1879), + [sym_nil] = STATE(1879), + [sym_call] = STATE(1879), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1879), + [sym_anonymous_function] = STATE(1879), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1531), + [sym_float] = ACTIONS(1531), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1531), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [331] = { + [sym__expression] = STATE(3540), + [sym_block] = STATE(3540), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3540), + [sym_atom] = STATE(3540), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3540), + [sym_charlist] = STATE(3540), + [sym_sigil] = STATE(3540), + [sym_unary_operator] = STATE(3540), + [sym_binary_operator] = STATE(3540), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3540), + [sym_keywords] = STATE(3661), + [sym_pair] = STATE(3358), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3540), + [sym_tuple] = STATE(3540), + [sym_bitstring] = STATE(3540), + [sym_map] = STATE(3540), + [sym_boolean] = STATE(3540), + [sym_nil] = STATE(3540), + [sym_call] = STATE(3540), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3540), + [sym_anonymous_function] = STATE(3540), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(1533), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [332] = { + [sym__expression] = STATE(3692), + [sym_block] = STATE(3692), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3692), + [sym_atom] = STATE(3692), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3127), + [sym__quoted_i_single] = STATE(3125), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3692), + [sym_charlist] = STATE(3692), + [sym_sigil] = STATE(3692), + [sym_unary_operator] = STATE(3692), + [sym_binary_operator] = STATE(3692), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3692), + [sym_keywords] = STATE(3691), + [sym_pair] = STATE(3358), + [sym_keyword] = STATE(677), + [sym_list] = STATE(3692), + [sym_tuple] = STATE(3692), + [sym_bitstring] = STATE(3692), + [sym_map] = STATE(3692), + [sym_boolean] = STATE(3692), + [sym_nil] = STATE(3692), + [sym_call] = STATE(3692), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3692), + [sym_anonymous_function] = STATE(3692), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(341), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1535), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(349), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(351), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(353), + [anon_sym_CARET] = ACTIONS(353), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(357), + [anon_sym_SQUOTE] = ACTIONS(359), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(371), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(373), + [anon_sym_false] = ACTIONS(373), + [anon_sym_nil] = ACTIONS(375), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(377), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(1535), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [333] = { + [sym__expression] = STATE(3682), + [sym_block] = STATE(3682), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3682), + [sym_atom] = STATE(3682), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3682), + [sym_charlist] = STATE(3682), + [sym_sigil] = STATE(3682), + [sym_unary_operator] = STATE(3682), + [sym_binary_operator] = STATE(3682), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3682), + [sym_keywords] = STATE(1925), + [sym_pair] = STATE(3139), + [sym_keyword] = STATE(831), + [sym_list] = STATE(3682), + [sym_tuple] = STATE(3682), + [sym_bitstring] = STATE(3682), + [sym_map] = STATE(3682), + [sym_boolean] = STATE(3682), + [sym_nil] = STATE(3682), + [sym_call] = STATE(3682), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3682), + [sym_anonymous_function] = STATE(3682), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1537), + [sym_float] = ACTIONS(1537), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1513), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1515), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1517), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1537), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [334] = { + [sym__expression] = STATE(2566), + [sym_block] = STATE(2566), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2566), + [sym_atom] = STATE(2566), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2566), + [sym_charlist] = STATE(2566), + [sym_sigil] = STATE(2566), + [sym_unary_operator] = STATE(2566), + [sym_binary_operator] = STATE(2566), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2566), + [sym_keywords] = STATE(2127), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2566), + [sym_tuple] = STATE(2566), + [sym_bitstring] = STATE(2566), + [sym_map] = STATE(2566), + [sym_boolean] = STATE(2566), + [sym_nil] = STATE(2566), + [sym_call] = STATE(2566), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2566), + [sym_anonymous_function] = STATE(2566), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1539), + [sym_float] = ACTIONS(1539), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1539), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [335] = { + [sym__expression] = STATE(3481), + [sym_block] = STATE(3481), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3481), + [sym_atom] = STATE(3481), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3481), + [sym_charlist] = STATE(3481), + [sym_sigil] = STATE(3481), + [sym_unary_operator] = STATE(3481), + [sym_binary_operator] = STATE(3481), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3481), + [sym_keywords] = STATE(1925), + [sym_pair] = STATE(3089), + [sym_keyword] = STATE(838), + [sym_list] = STATE(3481), + [sym_tuple] = STATE(3481), + [sym_bitstring] = STATE(3481), + [sym_map] = STATE(3481), + [sym_boolean] = STATE(3481), + [sym_nil] = STATE(3481), + [sym_call] = STATE(3481), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3481), + [sym_anonymous_function] = STATE(3481), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1541), + [sym_float] = ACTIONS(1541), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1545), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1547), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1541), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [336] = { + [sym__expression] = STATE(3479), + [sym_block] = STATE(3479), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(3479), + [sym_atom] = STATE(3479), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3479), + [sym_charlist] = STATE(3479), + [sym_sigil] = STATE(3479), + [sym_unary_operator] = STATE(3479), + [sym_binary_operator] = STATE(3479), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3479), + [sym_keywords] = STATE(2022), + [sym_pair] = STATE(3089), + [sym_keyword] = STATE(838), + [sym_list] = STATE(3479), + [sym_tuple] = STATE(3479), + [sym_bitstring] = STATE(3479), + [sym_map] = STATE(3479), + [sym_boolean] = STATE(3479), + [sym_nil] = STATE(3479), + [sym_call] = STATE(3479), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3479), + [sym_anonymous_function] = STATE(3479), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1553), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1545), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1547), + [anon_sym_CARET] = ACTIONS(1547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1547), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1549), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1553), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [337] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2246), + [sym_atom] = STATE(2246), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2246), + [sym_keywords] = STATE(2022), + [sym_pair] = STATE(2056), + [sym_keyword] = STATE(852), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1555), + [sym_float] = ACTIONS(1555), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1559), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1555), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [338] = { + [sym__expression] = STATE(2262), + [sym_block] = STATE(2262), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2262), + [sym_atom] = STATE(2262), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2262), + [sym_charlist] = STATE(2262), + [sym_sigil] = STATE(2262), + [sym_unary_operator] = STATE(2262), + [sym_binary_operator] = STATE(2262), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2262), + [sym_keywords] = STATE(1925), + [sym_pair] = STATE(2056), + [sym_keyword] = STATE(852), + [sym_list] = STATE(2262), + [sym_tuple] = STATE(2262), + [sym_bitstring] = STATE(2262), + [sym_map] = STATE(2262), + [sym_boolean] = STATE(2262), + [sym_nil] = STATE(2262), + [sym_call] = STATE(2262), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2262), + [sym_anonymous_function] = STATE(2262), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1569), + [sym_float] = ACTIONS(1569), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1559), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1565), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1569), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [339] = { + [sym__expression] = STATE(3749), + [sym_block] = STATE(3749), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3749), + [sym_atom] = STATE(3749), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3749), + [sym_charlist] = STATE(3749), + [sym_sigil] = STATE(3749), + [sym_unary_operator] = STATE(3749), + [sym_binary_operator] = STATE(3749), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3749), + [sym_keywords] = STATE(2879), + [sym_pair] = STATE(3726), + [sym_keyword] = STATE(836), + [sym_list] = STATE(3749), + [sym_tuple] = STATE(3749), + [sym_bitstring] = STATE(3749), + [sym_map] = STATE(3749), + [sym_boolean] = STATE(3749), + [sym_nil] = STATE(3749), + [sym_call] = STATE(3749), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3749), + [sym_anonymous_function] = STATE(3749), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1571), + [sym_float] = ACTIONS(1571), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1571), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [340] = { + [sym__expression] = STATE(3753), + [sym_block] = STATE(3753), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3753), + [sym_atom] = STATE(3753), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3753), + [sym_charlist] = STATE(3753), + [sym_sigil] = STATE(3753), + [sym_unary_operator] = STATE(3753), + [sym_binary_operator] = STATE(3753), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3753), + [sym_keywords] = STATE(2965), + [sym_pair] = STATE(3726), + [sym_keyword] = STATE(836), + [sym_list] = STATE(3753), + [sym_tuple] = STATE(3753), + [sym_bitstring] = STATE(3753), + [sym_map] = STATE(3753), + [sym_boolean] = STATE(3753), + [sym_nil] = STATE(3753), + [sym_call] = STATE(3753), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3753), + [sym_anonymous_function] = STATE(3753), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1583), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1575), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1577), + [anon_sym_CARET] = ACTIONS(1577), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1579), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1583), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [341] = { + [sym__expression] = STATE(2550), + [sym_block] = STATE(2550), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2550), + [sym_atom] = STATE(2550), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2550), + [sym_charlist] = STATE(2550), + [sym_sigil] = STATE(2550), + [sym_unary_operator] = STATE(2550), + [sym_binary_operator] = STATE(2550), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2550), + [sym_keywords] = STATE(2130), + [sym_pair] = STATE(2233), + [sym_keyword] = STATE(932), + [sym_list] = STATE(2550), + [sym_tuple] = STATE(2550), + [sym_bitstring] = STATE(2550), + [sym_map] = STATE(2550), + [sym_boolean] = STATE(2550), + [sym_nil] = STATE(2550), + [sym_call] = STATE(2550), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2550), + [sym_anonymous_function] = STATE(2550), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1585), + [sym_float] = ACTIONS(1585), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(403), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(423), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1585), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [342] = { + [sym__expression] = STATE(2516), + [sym_block] = STATE(2516), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2516), + [sym_atom] = STATE(2516), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2516), + [sym_charlist] = STATE(2516), + [sym_sigil] = STATE(2516), + [sym_unary_operator] = STATE(2516), + [sym_binary_operator] = STATE(2516), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2516), + [sym_keywords] = STATE(1533), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2516), + [sym_tuple] = STATE(2516), + [sym_bitstring] = STATE(2516), + [sym_map] = STATE(2516), + [sym_boolean] = STATE(2516), + [sym_nil] = STATE(2516), + [sym_call] = STATE(2516), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2516), + [sym_anonymous_function] = STATE(2516), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1587), + [sym_float] = ACTIONS(1587), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1587), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [343] = { + [sym__expression] = STATE(3192), + [sym_block] = STATE(3192), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3192), + [sym_atom] = STATE(3192), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3192), + [sym_charlist] = STATE(3192), + [sym_sigil] = STATE(3192), + [sym_unary_operator] = STATE(3192), + [sym_binary_operator] = STATE(3192), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3192), + [sym_keywords] = STATE(5314), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3192), + [sym_tuple] = STATE(3192), + [sym_bitstring] = STATE(3192), + [sym_map] = STATE(3192), + [sym_boolean] = STATE(3192), + [sym_nil] = STATE(3192), + [sym_call] = STATE(3192), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3192), + [sym_anonymous_function] = STATE(3192), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1257), + [sym_float] = ACTIONS(1257), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1257), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [344] = { + [sym__expression] = STATE(1989), + [sym_block] = STATE(1989), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(1989), + [sym_atom] = STATE(1989), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1989), + [sym_charlist] = STATE(1989), + [sym_sigil] = STATE(1989), + [sym_unary_operator] = STATE(1989), + [sym_binary_operator] = STATE(1989), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1989), + [sym_keywords] = STATE(1758), + [sym_pair] = STATE(1812), + [sym_keyword] = STATE(844), + [sym_list] = STATE(1989), + [sym_tuple] = STATE(1989), + [sym_bitstring] = STATE(1989), + [sym_map] = STATE(1989), + [sym_boolean] = STATE(1989), + [sym_nil] = STATE(1989), + [sym_call] = STATE(1989), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1989), + [sym_anonymous_function] = STATE(1989), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1589), + [sym_float] = ACTIONS(1589), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1589), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [345] = { + [sym__expression] = STATE(3659), + [sym_block] = STATE(3659), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(1274), + [sym_special_identifier] = STATE(1274), + [sym_alias] = STATE(3659), + [sym_atom] = STATE(3659), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3443), + [sym__quoted_i_single] = STATE(3439), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3659), + [sym_charlist] = STATE(3659), + [sym_sigil] = STATE(3659), + [sym_unary_operator] = STATE(3659), + [sym_binary_operator] = STATE(3659), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3659), + [sym_keywords] = STATE(3485), + [sym_pair] = STATE(3434), + [sym_keyword] = STATE(785), + [sym_list] = STATE(3659), + [sym_tuple] = STATE(3659), + [sym_bitstring] = STATE(3659), + [sym_map] = STATE(3659), + [sym_boolean] = STATE(3659), + [sym_nil] = STATE(3659), + [sym_call] = STATE(3659), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3659), + [sym_anonymous_function] = STATE(3659), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(1337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [sym_unused_identifier] = ACTIONS(1339), + [anon_sym___MODULE__] = ACTIONS(1341), + [anon_sym___DIR__] = ACTIONS(1341), + [anon_sym___ENV__] = ACTIONS(1341), + [anon_sym___CALLER__] = ACTIONS(1341), + [anon_sym___STACKTRACE__] = ACTIONS(1341), + [sym__alias_single] = ACTIONS(1343), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1591), + [sym_float] = ACTIONS(1591), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_CARET] = ACTIONS(1597), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1597), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_nil] = ACTIONS(1361), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1591), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [346] = { + [sym__expression] = STATE(3664), + [sym_block] = STATE(3664), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(1274), + [sym_special_identifier] = STATE(1274), + [sym_alias] = STATE(3664), + [sym_atom] = STATE(3664), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3443), + [sym__quoted_i_single] = STATE(3439), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3664), + [sym_charlist] = STATE(3664), + [sym_sigil] = STATE(3664), + [sym_unary_operator] = STATE(3664), + [sym_binary_operator] = STATE(3664), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3664), + [sym_keywords] = STATE(3459), + [sym_pair] = STATE(3434), + [sym_keyword] = STATE(785), + [sym_list] = STATE(3664), + [sym_tuple] = STATE(3664), + [sym_bitstring] = STATE(3664), + [sym_map] = STATE(3664), + [sym_boolean] = STATE(3664), + [sym_nil] = STATE(3664), + [sym_call] = STATE(3664), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3664), + [sym_anonymous_function] = STATE(3664), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(1337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [sym_unused_identifier] = ACTIONS(1339), + [anon_sym___MODULE__] = ACTIONS(1341), + [anon_sym___DIR__] = ACTIONS(1341), + [anon_sym___ENV__] = ACTIONS(1341), + [anon_sym___CALLER__] = ACTIONS(1341), + [anon_sym___STACKTRACE__] = ACTIONS(1341), + [sym__alias_single] = ACTIONS(1343), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1603), + [sym_float] = ACTIONS(1603), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1593), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1595), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1597), + [anon_sym_CARET] = ACTIONS(1597), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1597), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1599), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_nil] = ACTIONS(1361), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1603), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [347] = { + [sym__expression] = STATE(3192), + [sym_block] = STATE(3192), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(1229), + [sym_special_identifier] = STATE(1229), + [sym_alias] = STATE(3192), + [sym_atom] = STATE(3192), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2495), + [sym__quoted_i_single] = STATE(2472), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3192), + [sym_charlist] = STATE(3192), + [sym_sigil] = STATE(3192), + [sym_unary_operator] = STATE(3192), + [sym_binary_operator] = STATE(3192), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3192), + [sym_keywords] = STATE(5292), + [sym_pair] = STATE(4843), + [sym_keyword] = STATE(866), + [sym_list] = STATE(3192), + [sym_tuple] = STATE(3192), + [sym_bitstring] = STATE(3192), + [sym_map] = STATE(3192), + [sym_boolean] = STATE(3192), + [sym_nil] = STATE(3192), + [sym_call] = STATE(3192), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3192), + [sym_anonymous_function] = STATE(3192), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(335), + [sym_unused_identifier] = ACTIONS(337), + [anon_sym___MODULE__] = ACTIONS(339), + [anon_sym___DIR__] = ACTIONS(339), + [anon_sym___ENV__] = ACTIONS(339), + [anon_sym___CALLER__] = ACTIONS(339), + [anon_sym___STACKTRACE__] = ACTIONS(339), + [sym__alias_single] = ACTIONS(1075), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1257), + [sym_float] = ACTIONS(1257), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1083), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1085), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_CARET] = ACTIONS(1085), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1085), + [anon_sym_PERCENT] = ACTIONS(1087), + [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(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1105), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1107), + [anon_sym_false] = ACTIONS(1107), + [anon_sym_nil] = ACTIONS(1109), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1111), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1257), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [348] = { + [sym__expression] = STATE(2441), + [sym_block] = STATE(2441), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2441), + [sym_atom] = STATE(2441), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2441), + [sym_charlist] = STATE(2441), + [sym_sigil] = STATE(2441), + [sym_unary_operator] = STATE(2441), + [sym_binary_operator] = STATE(2441), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2441), + [sym_keywords] = STATE(1925), + [sym_pair] = STATE(2097), + [sym_keyword] = STATE(852), + [sym_list] = STATE(2441), + [sym_tuple] = STATE(2441), + [sym_bitstring] = STATE(2441), + [sym_map] = STATE(2441), + [sym_boolean] = STATE(2441), + [sym_nil] = STATE(2441), + [sym_call] = STATE(2441), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2441), + [sym_anonymous_function] = STATE(2441), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1605), + [sym_float] = ACTIONS(1605), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1609), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1613), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1605), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [349] = { + [sym__expression] = STATE(2841), + [sym_block] = STATE(2841), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(2841), + [sym_atom] = STATE(2841), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2841), + [sym_charlist] = STATE(2841), + [sym_sigil] = STATE(2841), + [sym_unary_operator] = STATE(2841), + [sym_binary_operator] = STATE(2841), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2841), + [sym_keywords] = STATE(2807), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(2841), + [sym_tuple] = STATE(2841), + [sym_bitstring] = STATE(2841), + [sym_map] = STATE(2841), + [sym_boolean] = STATE(2841), + [sym_nil] = STATE(2841), + [sym_call] = STATE(2841), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2841), + [sym_anonymous_function] = STATE(2841), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1617), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(1617), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [350] = { + [sym__expression] = STATE(2065), + [sym_block] = STATE(2065), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2065), + [sym_atom] = STATE(2065), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1723), + [sym__quoted_i_single] = STATE(1640), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2065), + [sym_charlist] = STATE(2065), + [sym_sigil] = STATE(2065), + [sym_unary_operator] = STATE(2065), + [sym_binary_operator] = STATE(2065), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2065), + [sym_keywords] = STATE(1793), + [sym_pair] = STATE(1812), + [sym_keyword] = STATE(844), + [sym_list] = STATE(2065), + [sym_tuple] = STATE(2065), + [sym_bitstring] = STATE(2065), + [sym_map] = STATE(2065), + [sym_boolean] = STATE(2065), + [sym_nil] = STATE(2065), + [sym_call] = STATE(2065), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2065), + [sym_anonymous_function] = STATE(2065), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(75), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(1619), + [sym_float] = ACTIONS(1619), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(91), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(111), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(115), + [anon_sym_false] = ACTIONS(115), + [anon_sym_nil] = ACTIONS(117), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(127), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(1619), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [351] = { + [sym__expression] = STATE(2954), + [sym_block] = STATE(2954), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2954), + [sym_atom] = STATE(2954), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2954), + [sym_charlist] = STATE(2954), + [sym_sigil] = STATE(2954), + [sym_unary_operator] = STATE(2954), + [sym_binary_operator] = STATE(2954), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2954), + [sym_keywords] = STATE(2837), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2954), + [sym_tuple] = STATE(2954), + [sym_bitstring] = STATE(2954), + [sym_map] = STATE(2954), + [sym_boolean] = STATE(2954), + [sym_nil] = STATE(2954), + [sym_call] = STATE(2954), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2954), + [sym_anonymous_function] = STATE(2954), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(1621), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(1621), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [352] = { + [sym__expression] = STATE(2466), + [sym_block] = STATE(2466), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(1257), + [sym_special_identifier] = STATE(1257), + [sym_alias] = STATE(2466), + [sym_atom] = STATE(2466), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1786), + [sym__quoted_i_single] = STATE(1873), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2466), + [sym_charlist] = STATE(2466), + [sym_sigil] = STATE(2466), + [sym_unary_operator] = STATE(2466), + [sym_binary_operator] = STATE(2466), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2466), + [sym_keywords] = STATE(2022), + [sym_pair] = STATE(2097), + [sym_keyword] = STATE(852), + [sym_list] = STATE(2466), + [sym_tuple] = STATE(2466), + [sym_bitstring] = STATE(2466), + [sym_map] = STATE(2466), + [sym_boolean] = STATE(2466), + [sym_nil] = STATE(2466), + [sym_call] = STATE(2466), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2466), + [sym_anonymous_function] = STATE(2466), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(69), + [sym_unused_identifier] = ACTIONS(71), + [anon_sym___MODULE__] = ACTIONS(73), + [anon_sym___DIR__] = ACTIONS(73), + [anon_sym___ENV__] = ACTIONS(73), + [anon_sym___CALLER__] = ACTIONS(73), + [anon_sym___STACKTRACE__] = ACTIONS(73), + [sym__alias_single] = ACTIONS(1367), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1623), + [sym_float] = ACTIONS(1623), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1607), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1609), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1611), + [anon_sym_DASH] = ACTIONS(1611), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1611), + [anon_sym_CARET] = ACTIONS(1611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1611), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1383), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1613), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1397), + [anon_sym_false] = ACTIONS(1397), + [anon_sym_nil] = ACTIONS(1399), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1401), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1623), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [353] = { + [sym__expression] = STATE(3177), + [sym_block] = STATE(3177), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(1250), + [sym_special_identifier] = STATE(1250), + [sym_alias] = STATE(3177), + [sym_atom] = STATE(3177), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2762), + [sym__quoted_i_single] = STATE(2761), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3177), + [sym_charlist] = STATE(3177), + [sym_sigil] = STATE(3177), + [sym_unary_operator] = STATE(3177), + [sym_binary_operator] = STATE(3177), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3177), + [sym_keywords] = STATE(3176), + [sym_pair] = STATE(2938), + [sym_keyword] = STATE(833), + [sym_list] = STATE(3177), + [sym_tuple] = STATE(3177), + [sym_bitstring] = STATE(3177), + [sym_map] = STATE(3177), + [sym_boolean] = STATE(3177), + [sym_nil] = STATE(3177), + [sym_call] = STATE(3177), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3177), + [sym_anonymous_function] = STATE(3177), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(761), + [sym_unused_identifier] = ACTIONS(763), + [anon_sym___MODULE__] = ACTIONS(765), + [anon_sym___DIR__] = ACTIONS(765), + [anon_sym___ENV__] = ACTIONS(765), + [anon_sym___CALLER__] = ACTIONS(765), + [anon_sym___STACKTRACE__] = ACTIONS(765), + [sym__alias_single] = ACTIONS(767), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(1625), + [sym_float] = ACTIONS(1625), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(775), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(777), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_CARET] = ACTIONS(777), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(777), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(783), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(795), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [anon_sym_nil] = ACTIONS(799), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(801), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(1625), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [354] = { + [sym__expression] = STATE(2954), + [sym_block] = STATE(2954), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(2954), + [sym_atom] = STATE(2954), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2494), + [sym__quoted_i_single] = STATE(2496), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2954), + [sym_charlist] = STATE(2954), + [sym_sigil] = STATE(2954), + [sym_unary_operator] = STATE(2954), + [sym_binary_operator] = STATE(2954), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2954), + [sym_keywords] = STATE(2835), + [sym_pair] = STATE(2398), + [sym_keyword] = STATE(870), + [sym_list] = STATE(2954), + [sym_tuple] = STATE(2954), + [sym_bitstring] = STATE(2954), + [sym_map] = STATE(2954), + [sym_boolean] = STATE(2954), + [sym_nil] = STATE(2954), + [sym_call] = STATE(2954), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2954), + [sym_anonymous_function] = STATE(2954), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(833), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(1621), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(839), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(841), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(846), + [anon_sym_DASH] = ACTIONS(846), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(846), + [anon_sym_CARET] = ACTIONS(846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(846), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(864), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_nil] = ACTIONS(868), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(873), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(1621), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [355] = { + [sym__expression] = STATE(2841), + [sym_block] = STATE(2841), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(1234), + [sym_special_identifier] = STATE(1234), + [sym_alias] = STATE(2841), + [sym_atom] = STATE(2841), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(2425), + [sym__quoted_i_single] = STATE(2421), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2841), + [sym_charlist] = STATE(2841), + [sym_sigil] = STATE(2841), + [sym_unary_operator] = STATE(2841), + [sym_binary_operator] = STATE(2841), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2841), + [sym_keywords] = STATE(2678), + [sym_pair] = STATE(2332), + [sym_keyword] = STATE(1047), + [sym_list] = STATE(2841), + [sym_tuple] = STATE(2841), + [sym_bitstring] = STATE(2841), + [sym_map] = STATE(2841), + [sym_boolean] = STATE(2841), + [sym_nil] = STATE(2841), + [sym_call] = STATE(2841), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2841), + [sym_anonymous_function] = STATE(2841), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [sym_unused_identifier] = ACTIONS(621), + [anon_sym___MODULE__] = ACTIONS(623), + [anon_sym___DIR__] = ACTIONS(623), + [anon_sym___ENV__] = ACTIONS(623), + [anon_sym___CALLER__] = ACTIONS(623), + [anon_sym___STACKTRACE__] = ACTIONS(623), + [sym__alias_single] = ACTIONS(625), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1617), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(633), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_CARET] = ACTIONS(635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(635), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [anon_sym_SQUOTE] = ACTIONS(641), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(653), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_nil] = ACTIONS(657), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(1617), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [356] = { + [sym__expression] = STATE(1879), + [sym_block] = STATE(1879), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1879), + [sym_atom] = STATE(1879), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1879), + [sym_charlist] = STATE(1879), + [sym_sigil] = STATE(1879), + [sym_unary_operator] = STATE(1879), + [sym_binary_operator] = STATE(1879), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1879), + [sym_keywords] = STATE(1671), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1879), + [sym_tuple] = STATE(1879), + [sym_bitstring] = STATE(1879), + [sym_map] = STATE(1879), + [sym_boolean] = STATE(1879), + [sym_nil] = STATE(1879), + [sym_call] = STATE(1879), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1879), + [sym_anonymous_function] = STATE(1879), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1531), + [sym_float] = ACTIONS(1531), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1531), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [357] = { + [sym__expression] = STATE(2846), + [sym_block] = STATE(2846), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2846), + [sym_atom] = STATE(2846), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2846), + [sym_charlist] = STATE(2846), + [sym_sigil] = STATE(2846), + [sym_unary_operator] = STATE(2846), + [sym_binary_operator] = STATE(2846), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2846), + [sym_keywords] = STATE(1698), + [sym_pair] = STATE(2539), + [sym_keyword] = STATE(787), + [sym_list] = STATE(2846), + [sym_tuple] = STATE(2846), + [sym_bitstring] = STATE(2846), + [sym_map] = STATE(2846), + [sym_boolean] = STATE(2846), + [sym_nil] = STATE(2846), + [sym_call] = STATE(2846), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2846), + [sym_anonymous_function] = STATE(2846), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1627), + [sym_float] = ACTIONS(1627), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(575), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(580), + [anon_sym_DASH] = ACTIONS(580), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(580), + [anon_sym_CARET] = ACTIONS(580), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(580), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(598), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1627), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [358] = { + [sym__expression] = STATE(3193), + [sym_block] = STATE(3193), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(1211), + [sym_special_identifier] = STATE(1211), + [sym_alias] = STATE(3193), + [sym_atom] = STATE(3193), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1993), + [sym__quoted_i_single] = STATE(1995), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3193), + [sym_charlist] = STATE(3193), + [sym_sigil] = STATE(3193), + [sym_unary_operator] = STATE(3193), + [sym_binary_operator] = STATE(3193), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3193), + [sym_keywords] = STATE(2259), + [sym_pair] = STATE(2728), + [sym_keyword] = STATE(648), + [sym_list] = STATE(3193), + [sym_tuple] = STATE(3193), + [sym_bitstring] = STATE(3193), + [sym_map] = STATE(3193), + [sym_boolean] = STATE(3193), + [sym_nil] = STATE(3193), + [sym_call] = STATE(3193), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3193), + [sym_anonymous_function] = STATE(3193), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [sym_unused_identifier] = ACTIONS(391), + [anon_sym___MODULE__] = ACTIONS(393), + [anon_sym___DIR__] = ACTIONS(393), + [anon_sym___ENV__] = ACTIONS(393), + [anon_sym___CALLER__] = ACTIONS(393), + [anon_sym___STACKTRACE__] = ACTIONS(393), + [sym__alias_single] = ACTIONS(395), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(927), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(409), + [anon_sym_SQUOTE] = ACTIONS(411), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(931), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(425), + [anon_sym_false] = ACTIONS(425), + [anon_sym_nil] = ACTIONS(427), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(431), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1335), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [359] = { + [sym__expression] = STATE(1819), + [sym_block] = STATE(1819), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1819), + [sym_atom] = STATE(1819), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1819), + [sym_charlist] = STATE(1819), + [sym_sigil] = STATE(1819), + [sym_unary_operator] = STATE(1819), + [sym_binary_operator] = STATE(1819), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1819), + [sym_keywords] = STATE(1710), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1819), + [sym_tuple] = STATE(1819), + [sym_bitstring] = STATE(1819), + [sym_map] = STATE(1819), + [sym_boolean] = STATE(1819), + [sym_nil] = STATE(1819), + [sym_call] = STATE(1819), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1819), + [sym_anonymous_function] = STATE(1819), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1629), + [sym_float] = ACTIONS(1629), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1629), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [360] = { + [sym__expression] = STATE(1782), + [sym_block] = STATE(1782), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(1782), + [sym_atom] = STATE(1782), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1583), + [sym__quoted_i_single] = STATE(1584), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1782), + [sym_charlist] = STATE(1782), + [sym_sigil] = STATE(1782), + [sym_unary_operator] = STATE(1782), + [sym_binary_operator] = STATE(1782), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1782), + [sym_keywords] = STATE(1698), + [sym_pair] = STATE(1657), + [sym_keyword] = STATE(840), + [sym_list] = STATE(1782), + [sym_tuple] = STATE(1782), + [sym_bitstring] = STATE(1782), + [sym_map] = STATE(1782), + [sym_boolean] = STATE(1782), + [sym_nil] = STATE(1782), + [sym_call] = STATE(1782), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1782), + [sym_anonymous_function] = STATE(1782), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(567), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1631), + [sym_float] = ACTIONS(1631), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(743), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(748), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(748), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(584), + [anon_sym_SQUOTE] = ACTIONS(586), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(752), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(600), + [anon_sym_false] = ACTIONS(600), + [anon_sym_nil] = ACTIONS(602), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(607), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1631), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [361] = { + [sym__expression] = STATE(3830), + [sym_block] = STATE(3830), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(1274), + [sym_special_identifier] = STATE(1274), + [sym_alias] = STATE(3830), + [sym_atom] = STATE(3830), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(3443), + [sym__quoted_i_single] = STATE(3439), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3830), + [sym_charlist] = STATE(3830), + [sym_sigil] = STATE(3830), + [sym_unary_operator] = STATE(3830), + [sym_binary_operator] = STATE(3830), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3830), + [sym_keywords] = STATE(3459), + [sym_pair] = STATE(3244), + [sym_keyword] = STATE(785), + [sym_list] = STATE(3830), + [sym_tuple] = STATE(3830), + [sym_bitstring] = STATE(3830), + [sym_map] = STATE(3830), + [sym_boolean] = STATE(3830), + [sym_nil] = STATE(3830), + [sym_call] = STATE(3830), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3830), + [sym_anonymous_function] = STATE(3830), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(1337), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [sym_unused_identifier] = ACTIONS(1339), + [anon_sym___MODULE__] = ACTIONS(1341), + [anon_sym___DIR__] = ACTIONS(1341), + [anon_sym___ENV__] = ACTIONS(1341), + [anon_sym___CALLER__] = ACTIONS(1341), + [anon_sym___STACKTRACE__] = ACTIONS(1341), + [sym__alias_single] = ACTIONS(1343), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1633), + [sym_float] = ACTIONS(1633), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1351), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1351), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(1353), + [anon_sym_SQUOTE] = ACTIONS(1355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1357), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_nil] = ACTIONS(1361), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1633), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [362] = { + [sym__expression] = STATE(2475), + [sym_block] = STATE(2475), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2475), + [sym_atom] = STATE(2475), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2475), + [sym_charlist] = STATE(2475), + [sym_sigil] = STATE(2475), + [sym_unary_operator] = STATE(2475), + [sym_binary_operator] = STATE(2475), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2475), + [sym_keywords] = STATE(1512), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2475), + [sym_tuple] = STATE(2475), + [sym_bitstring] = STATE(2475), + [sym_map] = STATE(2475), + [sym_boolean] = STATE(2475), + [sym_nil] = STATE(2475), + [sym_call] = STATE(2475), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2475), + [sym_anonymous_function] = STATE(2475), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1635), + [sym_float] = ACTIONS(1635), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1635), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [363] = { + [sym__expression] = STATE(2475), + [sym_block] = STATE(2475), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(1216), + [sym_special_identifier] = STATE(1216), + [sym_alias] = STATE(2475), + [sym_atom] = STATE(2475), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(1430), + [sym__quoted_i_single] = STATE(1429), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2475), + [sym_charlist] = STATE(2475), + [sym_sigil] = STATE(2475), + [sym_unary_operator] = STATE(2475), + [sym_binary_operator] = STATE(2475), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2475), + [sym_keywords] = STATE(1492), + [sym_pair] = STATE(2254), + [sym_keyword] = STATE(996), + [sym_list] = STATE(2475), + [sym_tuple] = STATE(2475), + [sym_bitstring] = STATE(2475), + [sym_map] = STATE(2475), + [sym_boolean] = STATE(2475), + [sym_nil] = STATE(2475), + [sym_call] = STATE(2475), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2475), + [sym_anonymous_function] = STATE(2475), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(561), + [sym_unused_identifier] = ACTIONS(563), + [anon_sym___MODULE__] = ACTIONS(565), + [anon_sym___DIR__] = ACTIONS(565), + [anon_sym___ENV__] = ACTIONS(565), + [anon_sym___CALLER__] = ACTIONS(565), + [anon_sym___STACKTRACE__] = ACTIONS(565), + [sym__alias_single] = ACTIONS(675), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1635), + [sym_float] = ACTIONS(1635), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(85), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_AT] = ACTIONS(683), + [anon_sym_LT_DASH] = ACTIONS(85), + [anon_sym_BSLASH_BSLASH] = ACTIONS(85), + [anon_sym_PIPE_PIPE] = ACTIONS(85), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(85), + [anon_sym_AMP_AMP] = ACTIONS(85), + [anon_sym_AMP_AMP_AMP] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_EQ_TILDE] = ACTIONS(85), + [anon_sym_EQ_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ_EQ] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_PIPE_GT] = ACTIONS(85), + [anon_sym_LT_LT_LT] = ACTIONS(85), + [anon_sym_GT_GT_GT] = ACTIONS(85), + [anon_sym_LT_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT_GT] = ACTIONS(85), + [anon_sym_LT_TILDE] = ACTIONS(85), + [anon_sym_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_TILDE_GT] = ACTIONS(85), + [anon_sym_LT_PIPE_GT] = ACTIONS(85), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH_DASH] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(85), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(685), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_SLASH] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(685), + [anon_sym_CARET] = ACTIONS(685), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(685), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(691), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(703), + [anon_sym_when] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(705), + [anon_sym_false] = ACTIONS(705), + [anon_sym_nil] = ACTIONS(707), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(709), + [anon_sym_rescue] = ACTIONS(81), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1635), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [364] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4130), + [sym_rescue_block] = STATE(4130), + [sym_catch_block] = STATE(4130), + [sym_else_block] = STATE(4130), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4130), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1665), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [365] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4119), + [sym_rescue_block] = STATE(4119), + [sym_catch_block] = STATE(4119), + [sym_else_block] = STATE(4119), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4119), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1671), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [366] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4118), + [sym_rescue_block] = STATE(4118), + [sym_catch_block] = STATE(4118), + [sym_else_block] = STATE(4118), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4118), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1673), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [367] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4086), + [sym_rescue_block] = STATE(4086), + [sym_catch_block] = STATE(4086), + [sym_else_block] = STATE(4086), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4086), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1675), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [368] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4112), + [sym_rescue_block] = STATE(4112), + [sym_catch_block] = STATE(4112), + [sym_else_block] = STATE(4112), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4112), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1677), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [369] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4089), + [sym_rescue_block] = STATE(4089), + [sym_catch_block] = STATE(4089), + [sym_else_block] = STATE(4089), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4089), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1679), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [370] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4120), + [sym_rescue_block] = STATE(4120), + [sym_catch_block] = STATE(4120), + [sym_else_block] = STATE(4120), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4120), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1681), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [371] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4096), + [sym_rescue_block] = STATE(4096), + [sym_catch_block] = STATE(4096), + [sym_else_block] = STATE(4096), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4096), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1683), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [372] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4083), + [sym_rescue_block] = STATE(4083), + [sym_catch_block] = STATE(4083), + [sym_else_block] = STATE(4083), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4083), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1685), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [373] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4081), + [sym_rescue_block] = STATE(4081), + [sym_catch_block] = STATE(4081), + [sym_else_block] = STATE(4081), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4081), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1687), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [374] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4097), + [sym_rescue_block] = STATE(4097), + [sym_catch_block] = STATE(4097), + [sym_else_block] = STATE(4097), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4097), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1689), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [375] = { + [sym__terminator] = STATE(402), + [sym__expression] = STATE(1848), + [sym_block] = STATE(1848), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(1848), + [sym_atom] = STATE(1848), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1848), + [sym_charlist] = STATE(1848), + [sym_sigil] = STATE(1848), + [sym_unary_operator] = STATE(1848), + [sym_binary_operator] = STATE(1848), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1848), + [sym_list] = STATE(1848), + [sym_tuple] = STATE(1848), + [sym_bitstring] = STATE(1848), + [sym_map] = STATE(1848), + [sym_boolean] = STATE(1848), + [sym_nil] = STATE(1848), + [sym_call] = STATE(1848), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1848), + [sym_body] = STATE(4196), + [sym_anonymous_function] = STATE(1848), + [aux_sym__terminator_repeat1] = STATE(1310), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1695), + [sym_float] = ACTIONS(1695), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1700), + [anon_sym_catch] = ACTIONS(1700), + [anon_sym_else] = ACTIONS(1700), + [anon_sym_end] = ACTIONS(1700), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1700), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1695), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [376] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4122), + [sym_rescue_block] = STATE(4122), + [sym_catch_block] = STATE(4122), + [sym_else_block] = STATE(4122), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4122), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1704), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [377] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4116), + [sym_rescue_block] = STATE(4116), + [sym_catch_block] = STATE(4116), + [sym_else_block] = STATE(4116), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4116), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1706), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [378] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4098), + [sym_rescue_block] = STATE(4098), + [sym_catch_block] = STATE(4098), + [sym_else_block] = STATE(4098), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4098), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1708), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [379] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4114), + [sym_rescue_block] = STATE(4114), + [sym_catch_block] = STATE(4114), + [sym_else_block] = STATE(4114), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4114), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1710), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [380] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4115), + [sym_rescue_block] = STATE(4115), + [sym_catch_block] = STATE(4115), + [sym_else_block] = STATE(4115), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4115), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1712), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [381] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4078), + [sym_rescue_block] = STATE(4078), + [sym_catch_block] = STATE(4078), + [sym_else_block] = STATE(4078), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4078), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1714), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [382] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4110), + [sym_rescue_block] = STATE(4110), + [sym_catch_block] = STATE(4110), + [sym_else_block] = STATE(4110), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4110), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [383] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4123), + [sym_rescue_block] = STATE(4123), + [sym_catch_block] = STATE(4123), + [sym_else_block] = STATE(4123), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4123), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1718), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [384] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4102), + [sym_rescue_block] = STATE(4102), + [sym_catch_block] = STATE(4102), + [sym_else_block] = STATE(4102), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4102), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [385] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4124), + [sym_rescue_block] = STATE(4124), + [sym_catch_block] = STATE(4124), + [sym_else_block] = STATE(4124), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4124), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1722), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [386] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4101), + [sym_rescue_block] = STATE(4101), + [sym_catch_block] = STATE(4101), + [sym_else_block] = STATE(4101), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4101), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1724), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [387] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4129), + [sym_rescue_block] = STATE(4129), + [sym_catch_block] = STATE(4129), + [sym_else_block] = STATE(4129), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4129), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1726), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [388] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4105), + [sym_rescue_block] = STATE(4105), + [sym_catch_block] = STATE(4105), + [sym_else_block] = STATE(4105), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4105), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1728), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [389] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4094), + [sym_rescue_block] = STATE(4094), + [sym_catch_block] = STATE(4094), + [sym_else_block] = STATE(4094), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4094), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1730), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [390] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4121), + [sym_rescue_block] = STATE(4121), + [sym_catch_block] = STATE(4121), + [sym_else_block] = STATE(4121), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4121), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1732), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [391] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4126), + [sym_rescue_block] = STATE(4126), + [sym_catch_block] = STATE(4126), + [sym_else_block] = STATE(4126), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4126), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1734), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [392] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4136), + [sym_rescue_block] = STATE(4136), + [sym_catch_block] = STATE(4136), + [sym_else_block] = STATE(4136), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4136), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1736), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [393] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4085), + [sym_rescue_block] = STATE(4085), + [sym_catch_block] = STATE(4085), + [sym_else_block] = STATE(4085), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4085), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1738), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [394] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4084), + [sym_rescue_block] = STATE(4084), + [sym_catch_block] = STATE(4084), + [sym_else_block] = STATE(4084), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4084), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1740), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [395] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4099), + [sym_rescue_block] = STATE(4099), + [sym_catch_block] = STATE(4099), + [sym_else_block] = STATE(4099), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4099), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1742), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [396] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4095), + [sym_rescue_block] = STATE(4095), + [sym_catch_block] = STATE(4095), + [sym_else_block] = STATE(4095), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4095), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1744), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [397] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4134), + [sym_rescue_block] = STATE(4134), + [sym_catch_block] = STATE(4134), + [sym_else_block] = STATE(4134), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4134), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1746), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [398] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4135), + [sym_rescue_block] = STATE(4135), + [sym_catch_block] = STATE(4135), + [sym_else_block] = STATE(4135), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4135), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1748), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [399] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4106), + [sym_rescue_block] = STATE(4106), + [sym_catch_block] = STATE(4106), + [sym_else_block] = STATE(4106), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4106), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1750), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [400] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_after_block] = STATE(4077), + [sym_rescue_block] = STATE(4077), + [sym_catch_block] = STATE(4077), + [sym_else_block] = STATE(4077), + [sym_anonymous_function] = STATE(2295), + [aux_sym_do_block_repeat3] = STATE(4077), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1752), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [401] = { + [sym__terminator] = STATE(402), + [sym__expression] = STATE(1848), + [sym_block] = STATE(1848), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(1848), + [sym_atom] = STATE(1848), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1848), + [sym_charlist] = STATE(1848), + [sym_sigil] = STATE(1848), + [sym_unary_operator] = STATE(1848), + [sym_binary_operator] = STATE(1848), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1848), + [sym_list] = STATE(1848), + [sym_tuple] = STATE(1848), + [sym_bitstring] = STATE(1848), + [sym_map] = STATE(1848), + [sym_boolean] = STATE(1848), + [sym_nil] = STATE(1848), + [sym_call] = STATE(1848), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1848), + [sym_body] = STATE(4199), + [sym_anonymous_function] = STATE(1848), + [aux_sym__terminator_repeat1] = STATE(1310), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_SEMI] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1695), + [sym_float] = ACTIONS(1695), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1754), + [anon_sym_catch] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_end] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1754), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1695), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [402] = { + [sym__terminator] = STATE(4195), + [sym__expression] = STATE(1751), + [sym_block] = STATE(1751), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(1751), + [sym_atom] = STATE(1751), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1751), + [sym_charlist] = STATE(1751), + [sym_sigil] = STATE(1751), + [sym_unary_operator] = STATE(1751), + [sym_binary_operator] = STATE(1751), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1751), + [sym_list] = STATE(1751), + [sym_tuple] = STATE(1751), + [sym_bitstring] = STATE(1751), + [sym_map] = STATE(1751), + [sym_boolean] = STATE(1751), + [sym_nil] = STATE(1751), + [sym_call] = STATE(1751), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1751), + [sym_anonymous_function] = STATE(1751), + [aux_sym__terminator_repeat1] = STATE(4176), + [anon_sym_LF] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1762), + [sym_float] = ACTIONS(1762), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1764), + [anon_sym_catch] = ACTIONS(1764), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_end] = ACTIONS(1764), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1764), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1762), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [403] = { + [sym__expression] = STATE(2482), + [sym_block] = STATE(2482), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2482), + [sym_atom] = STATE(2482), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2482), + [sym_charlist] = STATE(2482), + [sym_sigil] = STATE(2482), + [sym_unary_operator] = STATE(2482), + [sym_binary_operator] = STATE(2482), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2482), + [sym_list] = STATE(2482), + [sym_tuple] = STATE(2482), + [sym_bitstring] = STATE(2482), + [sym_map] = STATE(2482), + [sym_boolean] = STATE(2482), + [sym_nil] = STATE(2482), + [sym_call] = STATE(2482), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2482), + [sym_anonymous_function] = STATE(2482), + [anon_sym_LF] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1770), + [sym_float] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1768), + [anon_sym_catch] = ACTIONS(1768), + [anon_sym_else] = ACTIONS(1768), + [anon_sym_end] = ACTIONS(1768), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1768), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1770), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [404] = { + [sym__expression] = STATE(2482), + [sym_block] = STATE(2482), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2482), + [sym_atom] = STATE(2482), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2482), + [sym_charlist] = STATE(2482), + [sym_sigil] = STATE(2482), + [sym_unary_operator] = STATE(2482), + [sym_binary_operator] = STATE(2482), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2482), + [sym_list] = STATE(2482), + [sym_tuple] = STATE(2482), + [sym_bitstring] = STATE(2482), + [sym_map] = STATE(2482), + [sym_boolean] = STATE(2482), + [sym_nil] = STATE(2482), + [sym_call] = STATE(2482), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2482), + [sym_anonymous_function] = STATE(2482), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1770), + [sym_float] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1774), + [anon_sym_catch] = ACTIONS(1774), + [anon_sym_else] = ACTIONS(1774), + [anon_sym_end] = ACTIONS(1774), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1770), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [405] = { + [sym__expression] = STATE(2482), + [sym_block] = STATE(2482), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2482), + [sym_atom] = STATE(2482), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2482), + [sym_charlist] = STATE(2482), + [sym_sigil] = STATE(2482), + [sym_unary_operator] = STATE(2482), + [sym_binary_operator] = STATE(2482), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2482), + [sym_list] = STATE(2482), + [sym_tuple] = STATE(2482), + [sym_bitstring] = STATE(2482), + [sym_map] = STATE(2482), + [sym_boolean] = STATE(2482), + [sym_nil] = STATE(2482), + [sym_call] = STATE(2482), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2482), + [sym_anonymous_function] = STATE(2482), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1770), + [sym_float] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1778), + [anon_sym_catch] = ACTIONS(1778), + [anon_sym_else] = ACTIONS(1778), + [anon_sym_end] = ACTIONS(1778), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1778), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1770), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [406] = { + [sym__terminator] = STATE(423), + [sym__expression] = STATE(3014), + [sym_block] = STATE(3014), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3014), + [sym_atom] = STATE(3014), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3014), + [sym_charlist] = STATE(3014), + [sym_sigil] = STATE(3014), + [sym_unary_operator] = STATE(3014), + [sym_binary_operator] = STATE(3014), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3014), + [sym_list] = STATE(3014), + [sym_tuple] = STATE(3014), + [sym_bitstring] = STATE(3014), + [sym_map] = STATE(3014), + [sym_boolean] = STATE(3014), + [sym_nil] = STATE(3014), + [sym_call] = STATE(3014), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3014), + [sym_body] = STATE(4196), + [sym_anonymous_function] = STATE(3014), + [aux_sym__terminator_repeat1] = STATE(1327), + [anon_sym_LF] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1786), + [sym_float] = ACTIONS(1786), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_end] = ACTIONS(1700), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1786), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [407] = { + [sym__terminator] = STATE(422), + [sym__expression] = STATE(3066), + [sym_block] = STATE(3066), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3066), + [sym_atom] = STATE(3066), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3066), + [sym_charlist] = STATE(3066), + [sym_sigil] = STATE(3066), + [sym_unary_operator] = STATE(3066), + [sym_binary_operator] = STATE(3066), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3066), + [sym_list] = STATE(3066), + [sym_tuple] = STATE(3066), + [sym_bitstring] = STATE(3066), + [sym_map] = STATE(3066), + [sym_boolean] = STATE(3066), + [sym_nil] = STATE(3066), + [sym_call] = STATE(3066), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3066), + [sym_body] = STATE(4196), + [sym_anonymous_function] = STATE(3066), + [aux_sym__terminator_repeat1] = STATE(1319), + [anon_sym_LF] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1700), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1800), + [sym_float] = ACTIONS(1800), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1800), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [408] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1808), + [anon_sym_catch] = ACTIONS(1808), + [anon_sym_else] = ACTIONS(1808), + [anon_sym_end] = ACTIONS(1808), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1808), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [409] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1810), + [anon_sym_catch] = ACTIONS(1810), + [anon_sym_else] = ACTIONS(1810), + [anon_sym_end] = ACTIONS(1810), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1810), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [410] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1812), + [anon_sym_catch] = ACTIONS(1812), + [anon_sym_else] = ACTIONS(1812), + [anon_sym_end] = ACTIONS(1812), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1812), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [411] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1814), + [anon_sym_catch] = ACTIONS(1814), + [anon_sym_else] = ACTIONS(1814), + [anon_sym_end] = ACTIONS(1814), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1814), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [412] = { + [sym__terminator] = STATE(422), + [sym__expression] = STATE(3066), + [sym_block] = STATE(3066), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3066), + [sym_atom] = STATE(3066), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3066), + [sym_charlist] = STATE(3066), + [sym_sigil] = STATE(3066), + [sym_unary_operator] = STATE(3066), + [sym_binary_operator] = STATE(3066), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3066), + [sym_list] = STATE(3066), + [sym_tuple] = STATE(3066), + [sym_bitstring] = STATE(3066), + [sym_map] = STATE(3066), + [sym_boolean] = STATE(3066), + [sym_nil] = STATE(3066), + [sym_call] = STATE(3066), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3066), + [sym_body] = STATE(4199), + [sym_anonymous_function] = STATE(3066), + [aux_sym__terminator_repeat1] = STATE(1319), + [anon_sym_LF] = ACTIONS(1794), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1754), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1800), + [sym_float] = ACTIONS(1800), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1800), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [413] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1816), + [anon_sym_catch] = ACTIONS(1816), + [anon_sym_else] = ACTIONS(1816), + [anon_sym_end] = ACTIONS(1816), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1816), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [414] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1818), + [anon_sym_catch] = ACTIONS(1818), + [anon_sym_else] = ACTIONS(1818), + [anon_sym_end] = ACTIONS(1818), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1818), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [415] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1820), + [anon_sym_catch] = ACTIONS(1820), + [anon_sym_else] = ACTIONS(1820), + [anon_sym_end] = ACTIONS(1820), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1820), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [416] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1822), + [anon_sym_catch] = ACTIONS(1822), + [anon_sym_else] = ACTIONS(1822), + [anon_sym_end] = ACTIONS(1822), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1822), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [417] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1824), + [anon_sym_catch] = ACTIONS(1824), + [anon_sym_else] = ACTIONS(1824), + [anon_sym_end] = ACTIONS(1824), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1824), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [418] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_end] = ACTIONS(1826), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1826), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [419] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1828), + [anon_sym_catch] = ACTIONS(1828), + [anon_sym_else] = ACTIONS(1828), + [anon_sym_end] = ACTIONS(1828), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1828), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [420] = { + [sym__terminator] = STATE(423), + [sym__expression] = STATE(3014), + [sym_block] = STATE(3014), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3014), + [sym_atom] = STATE(3014), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3014), + [sym_charlist] = STATE(3014), + [sym_sigil] = STATE(3014), + [sym_unary_operator] = STATE(3014), + [sym_binary_operator] = STATE(3014), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3014), + [sym_list] = STATE(3014), + [sym_tuple] = STATE(3014), + [sym_bitstring] = STATE(3014), + [sym_map] = STATE(3014), + [sym_boolean] = STATE(3014), + [sym_nil] = STATE(3014), + [sym_call] = STATE(3014), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3014), + [sym_body] = STATE(4199), + [sym_anonymous_function] = STATE(3014), + [aux_sym__terminator_repeat1] = STATE(1327), + [anon_sym_LF] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1786), + [sym_float] = ACTIONS(1786), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_end] = ACTIONS(1754), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1786), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [421] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_after] = ACTIONS(1830), + [anon_sym_catch] = ACTIONS(1830), + [anon_sym_else] = ACTIONS(1830), + [anon_sym_end] = ACTIONS(1830), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_rescue] = ACTIONS(1830), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [422] = { + [sym__terminator] = STATE(4195), + [sym__expression] = STATE(2821), + [sym_block] = STATE(2821), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2821), + [sym_atom] = STATE(2821), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2821), + [sym_charlist] = STATE(2821), + [sym_sigil] = STATE(2821), + [sym_unary_operator] = STATE(2821), + [sym_binary_operator] = STATE(2821), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2821), + [sym_list] = STATE(2821), + [sym_tuple] = STATE(2821), + [sym_bitstring] = STATE(2821), + [sym_map] = STATE(2821), + [sym_boolean] = STATE(2821), + [sym_nil] = STATE(2821), + [sym_call] = STATE(2821), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2821), + [sym_anonymous_function] = STATE(2821), + [aux_sym__terminator_repeat1] = STATE(4176), + [anon_sym_LF] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1764), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1832), + [sym_float] = ACTIONS(1832), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1832), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [423] = { + [sym__terminator] = STATE(4195), + [sym__expression] = STATE(3056), + [sym_block] = STATE(3056), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3056), + [sym_atom] = STATE(3056), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3056), + [sym_charlist] = STATE(3056), + [sym_sigil] = STATE(3056), + [sym_unary_operator] = STATE(3056), + [sym_binary_operator] = STATE(3056), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3056), + [sym_list] = STATE(3056), + [sym_tuple] = STATE(3056), + [sym_bitstring] = STATE(3056), + [sym_map] = STATE(3056), + [sym_boolean] = STATE(3056), + [sym_nil] = STATE(3056), + [sym_call] = STATE(3056), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3056), + [sym_anonymous_function] = STATE(3056), + [aux_sym__terminator_repeat1] = STATE(4176), + [anon_sym_LF] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1834), + [sym_float] = ACTIONS(1834), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_end] = ACTIONS(1764), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1834), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [424] = { + [sym__expression] = STATE(3472), + [sym_block] = STATE(3472), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3472), + [sym_atom] = STATE(3472), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3472), + [sym_charlist] = STATE(3472), + [sym_sigil] = STATE(3472), + [sym_unary_operator] = STATE(3472), + [sym__capture_expression] = STATE(3642), + [sym_binary_operator] = STATE(3472), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3472), + [sym_list] = STATE(3472), + [sym_tuple] = STATE(3472), + [sym_bitstring] = STATE(3472), + [sym_map] = STATE(3472), + [sym_boolean] = STATE(3472), + [sym_nil] = STATE(3472), + [sym_call] = STATE(3472), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3472), + [sym_anonymous_function] = STATE(3472), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1836), + [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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1838), + [sym_float] = ACTIONS(1840), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1840), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [425] = { + [sym__expression] = STATE(3640), + [sym_block] = STATE(3640), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3640), + [sym_atom] = STATE(3640), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3640), + [sym_charlist] = STATE(3640), + [sym_sigil] = STATE(3640), + [sym_unary_operator] = STATE(3640), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3640), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3640), + [sym_list] = STATE(3640), + [sym_tuple] = STATE(3640), + [sym_bitstring] = STATE(3640), + [sym_map] = STATE(3640), + [sym_boolean] = STATE(3640), + [sym_nil] = STATE(3640), + [sym_call] = STATE(3640), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3640), + [sym_anonymous_function] = STATE(3640), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(1852), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [426] = { + [sym__expression] = STATE(3456), + [sym_block] = STATE(3456), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3456), + [sym_atom] = STATE(3456), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3456), + [sym_charlist] = STATE(3456), + [sym_sigil] = STATE(3456), + [sym_unary_operator] = STATE(3456), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3456), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3456), + [sym_list] = STATE(3456), + [sym_tuple] = STATE(3456), + [sym_bitstring] = STATE(3456), + [sym_map] = STATE(3456), + [sym_boolean] = STATE(3456), + [sym_nil] = STATE(3456), + [sym_call] = STATE(3456), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3456), + [sym_anonymous_function] = STATE(3456), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(1870), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1870), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [427] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5419), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [428] = { + [sym__expression] = STATE(2481), + [sym_block] = STATE(2481), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2481), + [sym_atom] = STATE(2481), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2481), + [sym_charlist] = STATE(2481), + [sym_sigil] = STATE(2481), + [sym_unary_operator] = STATE(2481), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(2481), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2481), + [sym_list] = STATE(2481), + [sym_tuple] = STATE(2481), + [sym_bitstring] = STATE(2481), + [sym_map] = STATE(2481), + [sym_boolean] = STATE(2481), + [sym_nil] = STATE(2481), + [sym_call] = STATE(2481), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2481), + [sym_anonymous_function] = STATE(2481), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(1900), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1900), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [429] = { + [sym__expression] = STATE(1787), + [sym_block] = STATE(1787), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1787), + [sym_atom] = STATE(1787), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1787), + [sym_charlist] = STATE(1787), + [sym_sigil] = STATE(1787), + [sym_unary_operator] = STATE(1787), + [sym__capture_expression] = STATE(1625), + [sym_binary_operator] = STATE(1787), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1787), + [sym_list] = STATE(1787), + [sym_tuple] = STATE(1787), + [sym_bitstring] = STATE(1787), + [sym_map] = STATE(1787), + [sym_boolean] = STATE(1787), + [sym_nil] = STATE(1787), + [sym_call] = STATE(1787), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1787), + [sym_anonymous_function] = STATE(1787), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1910), + [sym_float] = ACTIONS(1912), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1912), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [430] = { + [sym__expression] = STATE(3732), + [sym_block] = STATE(3732), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3732), + [sym_atom] = STATE(3732), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3732), + [sym_charlist] = STATE(3732), + [sym_sigil] = STATE(3732), + [sym_unary_operator] = STATE(3732), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3732), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3732), + [sym_list] = STATE(3732), + [sym_tuple] = STATE(3732), + [sym_bitstring] = STATE(3732), + [sym_map] = STATE(3732), + [sym_boolean] = STATE(3732), + [sym_nil] = STATE(3732), + [sym_call] = STATE(3732), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3732), + [sym_anonymous_function] = STATE(3732), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(1930), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1930), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [431] = { + [sym__expression] = STATE(3115), + [sym_block] = STATE(3115), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3115), + [sym_atom] = STATE(3115), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3115), + [sym_charlist] = STATE(3115), + [sym_sigil] = STATE(3115), + [sym_unary_operator] = STATE(3115), + [sym__capture_expression] = STATE(2152), + [sym_binary_operator] = STATE(3115), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3115), + [sym_list] = STATE(3115), + [sym_tuple] = STATE(3115), + [sym_bitstring] = STATE(3115), + [sym_map] = STATE(3115), + [sym_boolean] = STATE(3115), + [sym_nil] = STATE(3115), + [sym_call] = STATE(3115), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3115), + [sym_anonymous_function] = STATE(3115), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1946), + [sym_float] = ACTIONS(1948), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1948), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [432] = { + [sym__expression] = STATE(3822), + [sym_block] = STATE(3822), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3822), + [sym_atom] = STATE(3822), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3822), + [sym_charlist] = STATE(3822), + [sym_sigil] = STATE(3822), + [sym_unary_operator] = STATE(3822), + [sym_binary_operator] = STATE(3822), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3822), + [sym_list] = STATE(3822), + [sym_tuple] = STATE(3822), + [sym_bitstring] = STATE(3822), + [sym_map] = STATE(3822), + [sym_boolean] = STATE(3822), + [sym_nil] = STATE(3822), + [sym_call] = STATE(3822), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3822), + [sym_anonymous_function] = STATE(3822), + [anon_sym_LF] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1966), + [sym_float] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_end] = ACTIONS(1768), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1966), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [433] = { + [sym__expression] = STATE(3801), + [sym_block] = STATE(3801), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3801), + [sym_atom] = STATE(3801), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3801), + [sym_charlist] = STATE(3801), + [sym_sigil] = STATE(3801), + [sym_unary_operator] = STATE(3801), + [sym__capture_expression] = STATE(3802), + [sym_binary_operator] = STATE(3801), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3801), + [sym_list] = STATE(3801), + [sym_tuple] = STATE(3801), + [sym_bitstring] = STATE(3801), + [sym_map] = STATE(3801), + [sym_boolean] = STATE(3801), + [sym_nil] = STATE(3801), + [sym_call] = STATE(3801), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3801), + [sym_anonymous_function] = STATE(3801), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1968), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1976), + [sym_float] = ACTIONS(1978), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(1978), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [434] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5402), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [435] = { + [sym__expression] = STATE(2969), + [sym_block] = STATE(2969), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2969), + [sym_atom] = STATE(2969), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2969), + [sym_charlist] = STATE(2969), + [sym_sigil] = STATE(2969), + [sym_unary_operator] = STATE(2969), + [sym__capture_expression] = STATE(1625), + [sym_binary_operator] = STATE(2969), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2969), + [sym_list] = STATE(2969), + [sym_tuple] = STATE(2969), + [sym_bitstring] = STATE(2969), + [sym_map] = STATE(2969), + [sym_boolean] = STATE(2969), + [sym_nil] = STATE(2969), + [sym_call] = STATE(2969), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2969), + [sym_anonymous_function] = STATE(2969), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1910), + [sym_float] = ACTIONS(2000), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2000), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [436] = { + [sym__expression] = STATE(3822), + [sym_block] = STATE(3822), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3822), + [sym_atom] = STATE(3822), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3822), + [sym_charlist] = STATE(3822), + [sym_sigil] = STATE(3822), + [sym_unary_operator] = STATE(3822), + [sym_binary_operator] = STATE(3822), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3822), + [sym_list] = STATE(3822), + [sym_tuple] = STATE(3822), + [sym_bitstring] = STATE(3822), + [sym_map] = STATE(3822), + [sym_boolean] = STATE(3822), + [sym_nil] = STATE(3822), + [sym_call] = STATE(3822), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3822), + [sym_anonymous_function] = STATE(3822), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1966), + [sym_float] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_end] = ACTIONS(1774), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1966), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [437] = { + [sym__expression] = STATE(2940), + [sym_block] = STATE(2940), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2940), + [sym_atom] = STATE(2940), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2940), + [sym_charlist] = STATE(2940), + [sym_sigil] = STATE(2940), + [sym_unary_operator] = STATE(2940), + [sym__capture_expression] = STATE(2941), + [sym_binary_operator] = STATE(2940), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2940), + [sym_list] = STATE(2940), + [sym_tuple] = STATE(2940), + [sym_bitstring] = STATE(2940), + [sym_map] = STATE(2940), + [sym_boolean] = STATE(2940), + [sym_nil] = STATE(2940), + [sym_call] = STATE(2940), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2940), + [sym_anonymous_function] = STATE(2940), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2008), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2016), + [sym_float] = ACTIONS(2018), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2018), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [438] = { + [sym__expression] = STATE(3828), + [sym_block] = STATE(3828), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3828), + [sym_atom] = STATE(3828), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3828), + [sym_charlist] = STATE(3828), + [sym_sigil] = STATE(3828), + [sym_unary_operator] = STATE(3828), + [sym_binary_operator] = STATE(3828), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3828), + [sym_list] = STATE(3828), + [sym_tuple] = STATE(3828), + [sym_bitstring] = STATE(3828), + [sym_map] = STATE(3828), + [sym_boolean] = STATE(3828), + [sym_nil] = STATE(3828), + [sym_call] = STATE(3828), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3828), + [sym_anonymous_function] = STATE(3828), + [anon_sym_LF] = ACTIONS(1766), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1768), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2036), + [sym_float] = ACTIONS(2036), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2036), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [439] = { + [sym__expression] = STATE(3467), + [sym_block] = STATE(3467), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3467), + [sym_atom] = STATE(3467), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3467), + [sym_charlist] = STATE(3467), + [sym_sigil] = STATE(3467), + [sym_unary_operator] = STATE(3467), + [sym__capture_expression] = STATE(3468), + [sym_binary_operator] = STATE(3467), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3467), + [sym_list] = STATE(3467), + [sym_tuple] = STATE(3467), + [sym_bitstring] = STATE(3467), + [sym_map] = STATE(3467), + [sym_boolean] = STATE(3467), + [sym_nil] = STATE(3467), + [sym_call] = STATE(3467), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3467), + [sym_anonymous_function] = STATE(3467), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2038), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2042), + [sym_float] = ACTIONS(2044), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2044), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [440] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5360), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [441] = { + [sym__expression] = STATE(3822), + [sym_block] = STATE(3822), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3822), + [sym_atom] = STATE(3822), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3822), + [sym_charlist] = STATE(3822), + [sym_sigil] = STATE(3822), + [sym_unary_operator] = STATE(3822), + [sym_binary_operator] = STATE(3822), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3822), + [sym_list] = STATE(3822), + [sym_tuple] = STATE(3822), + [sym_bitstring] = STATE(3822), + [sym_map] = STATE(3822), + [sym_boolean] = STATE(3822), + [sym_nil] = STATE(3822), + [sym_call] = STATE(3822), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3822), + [sym_anonymous_function] = STATE(3822), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1966), + [sym_float] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_end] = ACTIONS(1778), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1966), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [442] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5362), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [443] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5366), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [444] = { + [sym__expression] = STATE(1960), + [sym_block] = STATE(1960), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1960), + [sym_atom] = STATE(1960), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1960), + [sym_charlist] = STATE(1960), + [sym_sigil] = STATE(1960), + [sym_unary_operator] = STATE(1960), + [sym__capture_expression] = STATE(1803), + [sym_binary_operator] = STATE(1960), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1960), + [sym_list] = STATE(1960), + [sym_tuple] = STATE(1960), + [sym_bitstring] = STATE(1960), + [sym_map] = STATE(1960), + [sym_boolean] = STATE(1960), + [sym_nil] = STATE(1960), + [sym_call] = STATE(1960), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1960), + [sym_anonymous_function] = STATE(1960), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2068), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2072), + [sym_float] = ACTIONS(2074), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2074), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [445] = { + [sym__expression] = STATE(2709), + [sym_block] = STATE(2709), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2709), + [sym_atom] = STATE(2709), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2709), + [sym_charlist] = STATE(2709), + [sym_sigil] = STATE(2709), + [sym_unary_operator] = STATE(2709), + [sym__capture_expression] = STATE(2708), + [sym_binary_operator] = STATE(2709), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2709), + [sym_list] = STATE(2709), + [sym_tuple] = STATE(2709), + [sym_bitstring] = STATE(2709), + [sym_map] = STATE(2709), + [sym_boolean] = STATE(2709), + [sym_nil] = STATE(2709), + [sym_call] = STATE(2709), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2709), + [sym_anonymous_function] = STATE(2709), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2092), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2096), + [sym_float] = ACTIONS(2098), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2098), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [446] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5370), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [447] = { + [sym__expression] = STATE(2251), + [sym_block] = STATE(2251), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2251), + [sym_atom] = STATE(2251), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2251), + [sym_charlist] = STATE(2251), + [sym_sigil] = STATE(2251), + [sym_unary_operator] = STATE(2251), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(2251), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2251), + [sym_list] = STATE(2251), + [sym_tuple] = STATE(2251), + [sym_bitstring] = STATE(2251), + [sym_map] = STATE(2251), + [sym_boolean] = STATE(2251), + [sym_nil] = STATE(2251), + [sym_call] = STATE(2251), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2251), + [sym_anonymous_function] = STATE(2251), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2118), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2118), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [448] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5377), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [449] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5381), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [450] = { + [sym__expression] = STATE(3349), + [sym_block] = STATE(3349), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3349), + [sym_atom] = STATE(3349), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3349), + [sym_charlist] = STATE(3349), + [sym_sigil] = STATE(3349), + [sym_unary_operator] = STATE(3349), + [sym__capture_expression] = STATE(1803), + [sym_binary_operator] = STATE(3349), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3349), + [sym_list] = STATE(3349), + [sym_tuple] = STATE(3349), + [sym_bitstring] = STATE(3349), + [sym_map] = STATE(3349), + [sym_boolean] = STATE(3349), + [sym_nil] = STATE(3349), + [sym_call] = STATE(3349), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3349), + [sym_anonymous_function] = STATE(3349), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2068), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2072), + [sym_float] = ACTIONS(2132), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2132), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [451] = { + [sym__expression] = STATE(3765), + [sym_block] = STATE(3765), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3765), + [sym_atom] = STATE(3765), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3765), + [sym_charlist] = STATE(3765), + [sym_sigil] = STATE(3765), + [sym_unary_operator] = STATE(3765), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3765), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3765), + [sym_list] = STATE(3765), + [sym_tuple] = STATE(3765), + [sym_bitstring] = STATE(3765), + [sym_map] = STATE(3765), + [sym_boolean] = STATE(3765), + [sym_nil] = STATE(3765), + [sym_call] = STATE(3765), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3765), + [sym_anonymous_function] = STATE(3765), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2140), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [452] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5384), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [453] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5388), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [454] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5390), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [455] = { + [sym__expression] = STATE(1621), + [sym_block] = STATE(1621), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1621), + [sym_atom] = STATE(1621), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1621), + [sym_charlist] = STATE(1621), + [sym_sigil] = STATE(1621), + [sym_unary_operator] = STATE(1621), + [sym__capture_expression] = STATE(1565), + [sym_binary_operator] = STATE(1621), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1621), + [sym_list] = STATE(1621), + [sym_tuple] = STATE(1621), + [sym_bitstring] = STATE(1621), + [sym_map] = STATE(1621), + [sym_boolean] = STATE(1621), + [sym_nil] = STATE(1621), + [sym_call] = STATE(1621), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1621), + [sym_anonymous_function] = STATE(1621), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2148), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2152), + [sym_float] = ACTIONS(2154), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2154), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [456] = { + [sym__expression] = STATE(2797), + [sym_block] = STATE(2797), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2797), + [sym_atom] = STATE(2797), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2797), + [sym_charlist] = STATE(2797), + [sym_sigil] = STATE(2797), + [sym_unary_operator] = STATE(2797), + [sym__capture_expression] = STATE(1625), + [sym_binary_operator] = STATE(2797), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2797), + [sym_list] = STATE(2797), + [sym_tuple] = STATE(2797), + [sym_bitstring] = STATE(2797), + [sym_map] = STATE(2797), + [sym_boolean] = STATE(2797), + [sym_nil] = STATE(2797), + [sym_call] = STATE(2797), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2797), + [sym_anonymous_function] = STATE(2797), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1910), + [sym_float] = ACTIONS(2174), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2174), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [457] = { + [sym__expression] = STATE(3919), + [sym_block] = STATE(3919), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3919), + [sym_atom] = STATE(3919), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3919), + [sym_charlist] = STATE(3919), + [sym_sigil] = STATE(3919), + [sym_unary_operator] = STATE(3919), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3919), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3919), + [sym_list] = STATE(3919), + [sym_tuple] = STATE(3919), + [sym_bitstring] = STATE(3919), + [sym_map] = STATE(3919), + [sym_boolean] = STATE(3919), + [sym_nil] = STATE(3919), + [sym_call] = STATE(3919), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3919), + [sym_anonymous_function] = STATE(3919), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(2184), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2184), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [458] = { + [sym__expression] = STATE(3828), + [sym_block] = STATE(3828), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3828), + [sym_atom] = STATE(3828), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3828), + [sym_charlist] = STATE(3828), + [sym_sigil] = STATE(3828), + [sym_unary_operator] = STATE(3828), + [sym_binary_operator] = STATE(3828), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3828), + [sym_list] = STATE(3828), + [sym_tuple] = STATE(3828), + [sym_bitstring] = STATE(3828), + [sym_map] = STATE(3828), + [sym_boolean] = STATE(3828), + [sym_nil] = STATE(3828), + [sym_call] = STATE(3828), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3828), + [sym_anonymous_function] = STATE(3828), + [anon_sym_LF] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1778), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2036), + [sym_float] = ACTIONS(2036), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2036), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [459] = { + [sym__expression] = STATE(2540), + [sym_block] = STATE(2540), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2540), + [sym_atom] = STATE(2540), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2540), + [sym_charlist] = STATE(2540), + [sym_sigil] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym__capture_expression] = STATE(2152), + [sym_binary_operator] = STATE(2540), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2540), + [sym_list] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_bitstring] = STATE(2540), + [sym_map] = STATE(2540), + [sym_boolean] = STATE(2540), + [sym_nil] = STATE(2540), + [sym_call] = STATE(2540), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2540), + [sym_anonymous_function] = STATE(2540), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1946), + [sym_float] = ACTIONS(2188), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2188), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [460] = { + [sym__expression] = STATE(3828), + [sym_block] = STATE(3828), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3828), + [sym_atom] = STATE(3828), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3828), + [sym_charlist] = STATE(3828), + [sym_sigil] = STATE(3828), + [sym_unary_operator] = STATE(3828), + [sym_binary_operator] = STATE(3828), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3828), + [sym_list] = STATE(3828), + [sym_tuple] = STATE(3828), + [sym_bitstring] = STATE(3828), + [sym_map] = STATE(3828), + [sym_boolean] = STATE(3828), + [sym_nil] = STATE(3828), + [sym_call] = STATE(3828), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3828), + [sym_anonymous_function] = STATE(3828), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1774), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2036), + [sym_float] = ACTIONS(2036), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2036), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [461] = { + [sym__expression] = STATE(3948), + [sym_block] = STATE(3948), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3948), + [sym_atom] = STATE(3948), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3948), + [sym_charlist] = STATE(3948), + [sym_sigil] = STATE(3948), + [sym_unary_operator] = STATE(3948), + [sym__capture_expression] = STATE(3468), + [sym_binary_operator] = STATE(3948), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3948), + [sym_list] = STATE(3948), + [sym_tuple] = STATE(3948), + [sym_bitstring] = STATE(3948), + [sym_map] = STATE(3948), + [sym_boolean] = STATE(3948), + [sym_nil] = STATE(3948), + [sym_call] = STATE(3948), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2038), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2042), + [sym_float] = ACTIONS(2196), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2196), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [462] = { + [sym__expression] = STATE(3229), + [sym_block] = STATE(3229), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3229), + [sym_atom] = STATE(3229), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3229), + [sym_charlist] = STATE(3229), + [sym_sigil] = STATE(3229), + [sym_unary_operator] = STATE(3229), + [sym__capture_expression] = STATE(3228), + [sym_binary_operator] = STATE(3229), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3229), + [sym_list] = STATE(3229), + [sym_tuple] = STATE(3229), + [sym_bitstring] = STATE(3229), + [sym_map] = STATE(3229), + [sym_boolean] = STATE(3229), + [sym_nil] = STATE(3229), + [sym_call] = STATE(3229), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3229), + [sym_anonymous_function] = STATE(3229), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2204), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2212), + [sym_float] = ACTIONS(2214), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2214), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [463] = { + [sym__expression] = STATE(3815), + [sym_block] = STATE(3815), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3815), + [sym_atom] = STATE(3815), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3815), + [sym_charlist] = STATE(3815), + [sym_sigil] = STATE(3815), + [sym_unary_operator] = STATE(3815), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3815), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3815), + [sym_list] = STATE(3815), + [sym_tuple] = STATE(3815), + [sym_bitstring] = STATE(3815), + [sym_map] = STATE(3815), + [sym_boolean] = STATE(3815), + [sym_nil] = STATE(3815), + [sym_call] = STATE(3815), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3815), + [sym_anonymous_function] = STATE(3815), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2232), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2232), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [464] = { + [sym__expression] = STATE(3644), + [sym_block] = STATE(3644), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3644), + [sym_atom] = STATE(3644), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3644), + [sym_charlist] = STATE(3644), + [sym_sigil] = STATE(3644), + [sym_unary_operator] = STATE(3644), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3644), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3644), + [sym_list] = STATE(3644), + [sym_tuple] = STATE(3644), + [sym_bitstring] = STATE(3644), + [sym_map] = STATE(3644), + [sym_boolean] = STATE(3644), + [sym_nil] = STATE(3644), + [sym_call] = STATE(3644), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3644), + [sym_anonymous_function] = STATE(3644), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2234), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2234), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [465] = { + [sym__expression] = STATE(3764), + [sym_block] = STATE(3764), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3764), + [sym_atom] = STATE(3764), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3764), + [sym_charlist] = STATE(3764), + [sym_sigil] = STATE(3764), + [sym_unary_operator] = STATE(3764), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3764), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3764), + [sym_list] = STATE(3764), + [sym_tuple] = STATE(3764), + [sym_bitstring] = STATE(3764), + [sym_map] = STATE(3764), + [sym_boolean] = STATE(3764), + [sym_nil] = STATE(3764), + [sym_call] = STATE(3764), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3764), + [sym_anonymous_function] = STATE(3764), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(2242), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2242), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [466] = { + [sym__expression] = STATE(2497), + [sym_block] = STATE(2497), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2497), + [sym_atom] = STATE(2497), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2497), + [sym_charlist] = STATE(2497), + [sym_sigil] = STATE(2497), + [sym_unary_operator] = STATE(2497), + [sym__capture_expression] = STATE(1565), + [sym_binary_operator] = STATE(2497), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2497), + [sym_list] = STATE(2497), + [sym_tuple] = STATE(2497), + [sym_bitstring] = STATE(2497), + [sym_map] = STATE(2497), + [sym_boolean] = STATE(2497), + [sym_nil] = STATE(2497), + [sym_call] = STATE(2497), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2497), + [sym_anonymous_function] = STATE(2497), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2148), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2152), + [sym_float] = ACTIONS(2252), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2252), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [467] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym__identifier] = STATE(203), + [sym_identifier] = STATE(203), + [sym_special_identifier] = STATE(203), + [sym_alias] = STATE(3930), + [sym_atom] = STATE(3930), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3967), + [sym_charlist] = STATE(3967), + [sym_sigil] = STATE(3967), + [sym_unary_operator] = STATE(3930), + [sym_binary_operator] = STATE(3967), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3930), + [sym_list] = STATE(3967), + [sym_tuple] = STATE(3967), + [sym_bitstring] = STATE(3967), + [sym_map] = STATE(3967), + [sym_struct] = STATE(5395), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym_call] = STATE(3967), + [sym__parenthesised_call] = STATE(5401), + [sym__call_on_call] = STATE(3924), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(3646), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(3646), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(3646), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1888), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1890), + [sym_float] = ACTIONS(1890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [468] = { + [sym__expression] = STATE(3761), + [sym_block] = STATE(3761), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3761), + [sym_atom] = STATE(3761), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3761), + [sym_charlist] = STATE(3761), + [sym_sigil] = STATE(3761), + [sym_unary_operator] = STATE(3761), + [sym__capture_expression] = STATE(3642), + [sym_binary_operator] = STATE(3761), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3761), + [sym_list] = STATE(3761), + [sym_tuple] = STATE(3761), + [sym_bitstring] = STATE(3761), + [sym_map] = STATE(3761), + [sym_boolean] = STATE(3761), + [sym_nil] = STATE(3761), + [sym_call] = STATE(3761), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3761), + [sym_anonymous_function] = STATE(3761), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1836), + [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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1838), + [sym_float] = ACTIONS(2262), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2262), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [469] = { + [sym__expression] = STATE(3732), + [sym_block] = STATE(3732), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3732), + [sym_atom] = STATE(3732), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3732), + [sym_charlist] = STATE(3732), + [sym_sigil] = STATE(3732), + [sym_unary_operator] = STATE(3732), + [sym__capture_expression] = STATE(3049), + [sym_binary_operator] = STATE(3732), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3732), + [sym_list] = STATE(3732), + [sym_tuple] = STATE(3732), + [sym_bitstring] = STATE(3732), + [sym_map] = STATE(3732), + [sym_boolean] = STATE(3732), + [sym_nil] = STATE(3732), + [sym_call] = STATE(3732), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3732), + [sym_anonymous_function] = STATE(3732), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2264), + [sym_float] = ACTIONS(1930), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1930), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [470] = { + [sym__expression] = STATE(1621), + [sym_block] = STATE(1621), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1621), + [sym_atom] = STATE(1621), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1621), + [sym_charlist] = STATE(1621), + [sym_sigil] = STATE(1621), + [sym_unary_operator] = STATE(1621), + [sym__capture_expression] = STATE(1547), + [sym_binary_operator] = STATE(1621), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1621), + [sym_list] = STATE(1621), + [sym_tuple] = STATE(1621), + [sym_bitstring] = STATE(1621), + [sym_map] = STATE(1621), + [sym_boolean] = STATE(1621), + [sym_nil] = STATE(1621), + [sym_call] = STATE(1621), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1621), + [sym_anonymous_function] = STATE(1621), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2148), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2266), + [sym_float] = ACTIONS(2154), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2154), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [471] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [472] = { + [sym__expression] = STATE(2497), + [sym_block] = STATE(2497), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2497), + [sym_atom] = STATE(2497), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2497), + [sym_charlist] = STATE(2497), + [sym_sigil] = STATE(2497), + [sym_unary_operator] = STATE(2497), + [sym__capture_expression] = STATE(1547), + [sym_binary_operator] = STATE(2497), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2497), + [sym_list] = STATE(2497), + [sym_tuple] = STATE(2497), + [sym_bitstring] = STATE(2497), + [sym_map] = STATE(2497), + [sym_boolean] = STATE(2497), + [sym_nil] = STATE(2497), + [sym_call] = STATE(2497), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2497), + [sym_anonymous_function] = STATE(2497), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2148), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2266), + [sym_float] = ACTIONS(2252), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2252), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [473] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [474] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [475] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [476] = { + [sym__expression] = STATE(3229), + [sym_block] = STATE(3229), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3229), + [sym_atom] = STATE(3229), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3229), + [sym_charlist] = STATE(3229), + [sym_sigil] = STATE(3229), + [sym_unary_operator] = STATE(3229), + [sym__capture_expression] = STATE(3228), + [sym_binary_operator] = STATE(3229), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3229), + [sym_list] = STATE(3229), + [sym_tuple] = STATE(3229), + [sym_bitstring] = STATE(3229), + [sym_map] = STATE(3229), + [sym_boolean] = STATE(3229), + [sym_nil] = STATE(3229), + [sym_call] = STATE(3229), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3229), + [sym_anonymous_function] = STATE(3229), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2204), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2212), + [sym_float] = ACTIONS(2214), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2214), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [477] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [478] = { + [sym__expression] = STATE(1564), + [sym_block] = STATE(1564), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1564), + [sym_atom] = STATE(1564), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1564), + [sym_charlist] = STATE(1564), + [sym_sigil] = STATE(1564), + [sym_unary_operator] = STATE(1564), + [sym_binary_operator] = STATE(1564), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1564), + [sym_list] = STATE(1564), + [sym_tuple] = STATE(1564), + [sym_bitstring] = STATE(1564), + [sym_map] = STATE(1564), + [sym_boolean] = STATE(1564), + [sym_nil] = STATE(1564), + [sym_call] = STATE(1564), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1564), + [sym_anonymous_function] = STATE(1564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2276), + [sym_float] = ACTIONS(2276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [479] = { + [sym__expression] = STATE(1564), + [sym_block] = STATE(1564), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1564), + [sym_atom] = STATE(1564), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1564), + [sym_charlist] = STATE(1564), + [sym_sigil] = STATE(1564), + [sym_unary_operator] = STATE(1564), + [sym_binary_operator] = STATE(1564), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1564), + [sym_list] = STATE(1564), + [sym_tuple] = STATE(1564), + [sym_bitstring] = STATE(1564), + [sym_map] = STATE(1564), + [sym_boolean] = STATE(1564), + [sym_nil] = STATE(1564), + [sym_call] = STATE(1564), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1564), + [sym_anonymous_function] = STATE(1564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2276), + [sym_float] = ACTIONS(2276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [480] = { + [sym__expression] = STATE(1441), + [sym_block] = STATE(1441), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1441), + [sym_atom] = STATE(1441), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1441), + [sym_charlist] = STATE(1441), + [sym_sigil] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_binary_operator] = STATE(1441), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1441), + [sym_list] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_bitstring] = STATE(1441), + [sym_map] = STATE(1441), + [sym_boolean] = STATE(1441), + [sym_nil] = STATE(1441), + [sym_call] = STATE(1441), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1441), + [sym_anonymous_function] = STATE(1441), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2278), + [sym_float] = ACTIONS(2278), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2278), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [481] = { + [sym__expression] = STATE(3948), + [sym_block] = STATE(3948), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3948), + [sym_atom] = STATE(3948), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3948), + [sym_charlist] = STATE(3948), + [sym_sigil] = STATE(3948), + [sym_unary_operator] = STATE(3948), + [sym__capture_expression] = STATE(3468), + [sym_binary_operator] = STATE(3948), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3948), + [sym_list] = STATE(3948), + [sym_tuple] = STATE(3948), + [sym_bitstring] = STATE(3948), + [sym_map] = STATE(3948), + [sym_boolean] = STATE(3948), + [sym_nil] = STATE(3948), + [sym_call] = STATE(3948), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2038), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2042), + [sym_float] = ACTIONS(2196), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2196), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [482] = { + [sym__expression] = STATE(3655), + [sym_block] = STATE(3655), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3655), + [sym_atom] = STATE(3655), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3655), + [sym_charlist] = STATE(3655), + [sym_sigil] = STATE(3655), + [sym_unary_operator] = STATE(3655), + [sym_binary_operator] = STATE(3655), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3655), + [sym_list] = STATE(3655), + [sym_tuple] = STATE(3655), + [sym_bitstring] = STATE(3655), + [sym_map] = STATE(3655), + [sym_boolean] = STATE(3655), + [sym_nil] = STATE(3655), + [sym_call] = STATE(3655), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3655), + [sym__stab_clause_arguments_expression] = STATE(5173), + [sym_anonymous_function] = STATE(3655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(345), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [483] = { + [sym__expression] = STATE(3469), + [sym_block] = STATE(3469), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3469), + [sym_atom] = STATE(3469), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3469), + [sym_charlist] = STATE(3469), + [sym_sigil] = STATE(3469), + [sym_unary_operator] = STATE(3469), + [sym_binary_operator] = STATE(3469), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3469), + [sym_list] = STATE(3469), + [sym_tuple] = STATE(3469), + [sym_bitstring] = STATE(3469), + [sym_map] = STATE(3469), + [sym_boolean] = STATE(3469), + [sym_nil] = STATE(3469), + [sym_call] = STATE(3469), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3469), + [sym_anonymous_function] = STATE(3469), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2280), + [sym_float] = ACTIONS(2280), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2280), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [484] = { + [sym__expression] = STATE(3470), + [sym_block] = STATE(3470), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3470), + [sym_atom] = STATE(3470), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3470), + [sym_charlist] = STATE(3470), + [sym_sigil] = STATE(3470), + [sym_unary_operator] = STATE(3470), + [sym_binary_operator] = STATE(3470), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3470), + [sym_list] = STATE(3470), + [sym_tuple] = STATE(3470), + [sym_bitstring] = STATE(3470), + [sym_map] = STATE(3470), + [sym_boolean] = STATE(3470), + [sym_nil] = STATE(3470), + [sym_call] = STATE(3470), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3470), + [sym_anonymous_function] = STATE(3470), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2282), + [sym_float] = ACTIONS(2282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [485] = { + [sym__expression] = STATE(3470), + [sym_block] = STATE(3470), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3470), + [sym_atom] = STATE(3470), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3470), + [sym_charlist] = STATE(3470), + [sym_sigil] = STATE(3470), + [sym_unary_operator] = STATE(3470), + [sym_binary_operator] = STATE(3470), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3470), + [sym_list] = STATE(3470), + [sym_tuple] = STATE(3470), + [sym_bitstring] = STATE(3470), + [sym_map] = STATE(3470), + [sym_boolean] = STATE(3470), + [sym_nil] = STATE(3470), + [sym_call] = STATE(3470), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3470), + [sym_anonymous_function] = STATE(3470), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2282), + [sym_float] = ACTIONS(2282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [486] = { + [sym__expression] = STATE(3349), + [sym_block] = STATE(3349), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3349), + [sym_atom] = STATE(3349), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3349), + [sym_charlist] = STATE(3349), + [sym_sigil] = STATE(3349), + [sym_unary_operator] = STATE(3349), + [sym__capture_expression] = STATE(1803), + [sym_binary_operator] = STATE(3349), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3349), + [sym_list] = STATE(3349), + [sym_tuple] = STATE(3349), + [sym_bitstring] = STATE(3349), + [sym_map] = STATE(3349), + [sym_boolean] = STATE(3349), + [sym_nil] = STATE(3349), + [sym_call] = STATE(3349), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3349), + [sym_anonymous_function] = STATE(3349), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2068), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2072), + [sym_float] = ACTIONS(2132), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2132), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [487] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [488] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [489] = { + [sym__expression] = STATE(2969), + [sym_block] = STATE(2969), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2969), + [sym_atom] = STATE(2969), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2969), + [sym_charlist] = STATE(2969), + [sym_sigil] = STATE(2969), + [sym_unary_operator] = STATE(2969), + [sym__capture_expression] = STATE(1616), + [sym_binary_operator] = STATE(2969), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2969), + [sym_list] = STATE(2969), + [sym_tuple] = STATE(2969), + [sym_bitstring] = STATE(2969), + [sym_map] = STATE(2969), + [sym_boolean] = STATE(2969), + [sym_nil] = STATE(2969), + [sym_call] = STATE(2969), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2969), + [sym_anonymous_function] = STATE(2969), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2286), + [sym_float] = ACTIONS(2000), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2000), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [490] = { + [sym__expression] = STATE(3765), + [sym_block] = STATE(3765), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3765), + [sym_atom] = STATE(3765), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3765), + [sym_charlist] = STATE(3765), + [sym_sigil] = STATE(3765), + [sym_unary_operator] = STATE(3765), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3765), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3765), + [sym_list] = STATE(3765), + [sym_tuple] = STATE(3765), + [sym_bitstring] = STATE(3765), + [sym_map] = STATE(3765), + [sym_boolean] = STATE(3765), + [sym_nil] = STATE(3765), + [sym_call] = STATE(3765), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3765), + [sym_anonymous_function] = STATE(3765), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2140), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [491] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [492] = { + [sym__expression] = STATE(3919), + [sym_block] = STATE(3919), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3919), + [sym_atom] = STATE(3919), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3919), + [sym_charlist] = STATE(3919), + [sym_sigil] = STATE(3919), + [sym_unary_operator] = STATE(3919), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3919), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3919), + [sym_list] = STATE(3919), + [sym_tuple] = STATE(3919), + [sym_bitstring] = STATE(3919), + [sym_map] = STATE(3919), + [sym_boolean] = STATE(3919), + [sym_nil] = STATE(3919), + [sym_call] = STATE(3919), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3919), + [sym_anonymous_function] = STATE(3919), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(2184), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2184), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [493] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [494] = { + [sym__expression] = STATE(1624), + [sym_block] = STATE(1624), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1624), + [sym_atom] = STATE(1624), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1624), + [sym_charlist] = STATE(1624), + [sym_sigil] = STATE(1624), + [sym_unary_operator] = STATE(1624), + [sym_binary_operator] = STATE(1624), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1624), + [sym_list] = STATE(1624), + [sym_tuple] = STATE(1624), + [sym_bitstring] = STATE(1624), + [sym_map] = STATE(1624), + [sym_boolean] = STATE(1624), + [sym_nil] = STATE(1624), + [sym_call] = STATE(1624), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1624), + [sym_anonymous_function] = STATE(1624), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2288), + [sym_float] = ACTIONS(2288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [495] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [496] = { + [sym__expression] = STATE(3784), + [sym_block] = STATE(3784), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3784), + [sym_atom] = STATE(3784), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3784), + [sym_charlist] = STATE(3784), + [sym_sigil] = STATE(3784), + [sym_unary_operator] = STATE(3784), + [sym_binary_operator] = STATE(3784), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3784), + [sym_list] = STATE(3784), + [sym_tuple] = STATE(3784), + [sym_bitstring] = STATE(3784), + [sym_map] = STATE(3784), + [sym_boolean] = STATE(3784), + [sym_nil] = STATE(3784), + [sym_call] = STATE(3784), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3784), + [sym_anonymous_function] = STATE(3784), + [ts_builtin_sym_end] = ACTIONS(2290), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2292), + [sym_float] = ACTIONS(2292), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2292), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [497] = { + [sym__expression] = STATE(3467), + [sym_block] = STATE(3467), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3467), + [sym_atom] = STATE(3467), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3467), + [sym_charlist] = STATE(3467), + [sym_sigil] = STATE(3467), + [sym_unary_operator] = STATE(3467), + [sym__capture_expression] = STATE(3468), + [sym_binary_operator] = STATE(3467), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3467), + [sym_list] = STATE(3467), + [sym_tuple] = STATE(3467), + [sym_bitstring] = STATE(3467), + [sym_map] = STATE(3467), + [sym_boolean] = STATE(3467), + [sym_nil] = STATE(3467), + [sym_call] = STATE(3467), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3467), + [sym_anonymous_function] = STATE(3467), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2038), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2042), + [sym_float] = ACTIONS(2044), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2044), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [498] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [499] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [500] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [501] = { + [sym__expression] = STATE(2251), + [sym_block] = STATE(2251), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2251), + [sym_atom] = STATE(2251), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2251), + [sym_charlist] = STATE(2251), + [sym_sigil] = STATE(2251), + [sym_unary_operator] = STATE(2251), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(2251), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2251), + [sym_list] = STATE(2251), + [sym_tuple] = STATE(2251), + [sym_bitstring] = STATE(2251), + [sym_map] = STATE(2251), + [sym_boolean] = STATE(2251), + [sym_nil] = STATE(2251), + [sym_call] = STATE(2251), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2251), + [sym_anonymous_function] = STATE(2251), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2118), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2118), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [502] = { + [sym__expression] = STATE(1960), + [sym_block] = STATE(1960), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1960), + [sym_atom] = STATE(1960), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1960), + [sym_charlist] = STATE(1960), + [sym_sigil] = STATE(1960), + [sym_unary_operator] = STATE(1960), + [sym__capture_expression] = STATE(1886), + [sym_binary_operator] = STATE(1960), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1960), + [sym_list] = STATE(1960), + [sym_tuple] = STATE(1960), + [sym_bitstring] = STATE(1960), + [sym_map] = STATE(1960), + [sym_boolean] = STATE(1960), + [sym_nil] = STATE(1960), + [sym_call] = STATE(1960), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1960), + [sym_anonymous_function] = STATE(1960), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2068), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2294), + [sym_float] = ACTIONS(2074), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2074), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [503] = { + [sym__expression] = STATE(3467), + [sym_block] = STATE(3467), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3467), + [sym_atom] = STATE(3467), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3467), + [sym_charlist] = STATE(3467), + [sym_sigil] = STATE(3467), + [sym_unary_operator] = STATE(3467), + [sym__capture_expression] = STATE(3672), + [sym_binary_operator] = STATE(3467), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3467), + [sym_list] = STATE(3467), + [sym_tuple] = STATE(3467), + [sym_bitstring] = STATE(3467), + [sym_map] = STATE(3467), + [sym_boolean] = STATE(3467), + [sym_nil] = STATE(3467), + [sym_call] = STATE(3467), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3467), + [sym_anonymous_function] = STATE(3467), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2038), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2296), + [sym_float] = ACTIONS(2044), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2044), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [504] = { + [sym__expression] = STATE(2540), + [sym_block] = STATE(2540), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2540), + [sym_atom] = STATE(2540), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2540), + [sym_charlist] = STATE(2540), + [sym_sigil] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym__capture_expression] = STATE(2141), + [sym_binary_operator] = STATE(2540), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2540), + [sym_list] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_bitstring] = STATE(2540), + [sym_map] = STATE(2540), + [sym_boolean] = STATE(2540), + [sym_nil] = STATE(2540), + [sym_call] = STATE(2540), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2540), + [sym_anonymous_function] = STATE(2540), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2298), + [sym_float] = ACTIONS(2188), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2188), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [505] = { + [sym__expression] = STATE(3349), + [sym_block] = STATE(3349), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3349), + [sym_atom] = STATE(3349), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3349), + [sym_charlist] = STATE(3349), + [sym_sigil] = STATE(3349), + [sym_unary_operator] = STATE(3349), + [sym__capture_expression] = STATE(1886), + [sym_binary_operator] = STATE(3349), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3349), + [sym_list] = STATE(3349), + [sym_tuple] = STATE(3349), + [sym_bitstring] = STATE(3349), + [sym_map] = STATE(3349), + [sym_boolean] = STATE(3349), + [sym_nil] = STATE(3349), + [sym_call] = STATE(3349), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3349), + [sym_anonymous_function] = STATE(3349), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2068), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2294), + [sym_float] = ACTIONS(2132), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2132), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [506] = { + [sym__expression] = STATE(3227), + [sym_block] = STATE(3227), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3227), + [sym_atom] = STATE(3227), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3227), + [sym_charlist] = STATE(3227), + [sym_sigil] = STATE(3227), + [sym_unary_operator] = STATE(3227), + [sym_binary_operator] = STATE(3227), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3227), + [sym_list] = STATE(3227), + [sym_tuple] = STATE(3227), + [sym_bitstring] = STATE(3227), + [sym_map] = STATE(3227), + [sym_boolean] = STATE(3227), + [sym_nil] = STATE(3227), + [sym_call] = STATE(3227), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3227), + [sym_anonymous_function] = STATE(3227), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2300), + [sym_float] = ACTIONS(2300), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2300), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [507] = { + [sym__expression] = STATE(3456), + [sym_block] = STATE(3456), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3456), + [sym_atom] = STATE(3456), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3456), + [sym_charlist] = STATE(3456), + [sym_sigil] = STATE(3456), + [sym_unary_operator] = STATE(3456), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3456), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3456), + [sym_list] = STATE(3456), + [sym_tuple] = STATE(3456), + [sym_bitstring] = STATE(3456), + [sym_map] = STATE(3456), + [sym_boolean] = STATE(3456), + [sym_nil] = STATE(3456), + [sym_call] = STATE(3456), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3456), + [sym_anonymous_function] = STATE(3456), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(1870), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1870), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [508] = { + [sym__expression] = STATE(3226), + [sym_block] = STATE(3226), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3226), + [sym_atom] = STATE(3226), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3226), + [sym_charlist] = STATE(3226), + [sym_sigil] = STATE(3226), + [sym_unary_operator] = STATE(3226), + [sym_binary_operator] = STATE(3226), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3226), + [sym_list] = STATE(3226), + [sym_tuple] = STATE(3226), + [sym_bitstring] = STATE(3226), + [sym_map] = STATE(3226), + [sym_boolean] = STATE(3226), + [sym_nil] = STATE(3226), + [sym_call] = STATE(3226), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3226), + [sym_anonymous_function] = STATE(3226), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2302), + [sym_float] = ACTIONS(2302), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2302), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [509] = { + [sym__expression] = STATE(3226), + [sym_block] = STATE(3226), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3226), + [sym_atom] = STATE(3226), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3226), + [sym_charlist] = STATE(3226), + [sym_sigil] = STATE(3226), + [sym_unary_operator] = STATE(3226), + [sym_binary_operator] = STATE(3226), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3226), + [sym_list] = STATE(3226), + [sym_tuple] = STATE(3226), + [sym_bitstring] = STATE(3226), + [sym_map] = STATE(3226), + [sym_boolean] = STATE(3226), + [sym_nil] = STATE(3226), + [sym_call] = STATE(3226), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3226), + [sym_anonymous_function] = STATE(3226), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2302), + [sym_float] = ACTIONS(2302), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2302), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [510] = { + [sym__expression] = STATE(1564), + [sym_block] = STATE(1564), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1564), + [sym_atom] = STATE(1564), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1564), + [sym_charlist] = STATE(1564), + [sym_sigil] = STATE(1564), + [sym_unary_operator] = STATE(1564), + [sym_binary_operator] = STATE(1564), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1564), + [sym_list] = STATE(1564), + [sym_tuple] = STATE(1564), + [sym_bitstring] = STATE(1564), + [sym_map] = STATE(1564), + [sym_boolean] = STATE(1564), + [sym_nil] = STATE(1564), + [sym_call] = STATE(1564), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1564), + [sym_anonymous_function] = STATE(1564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2276), + [sym_float] = ACTIONS(2276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [511] = { + [sym__expression] = STATE(3643), + [sym_block] = STATE(3643), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3643), + [sym_atom] = STATE(3643), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3643), + [sym_charlist] = STATE(3643), + [sym_sigil] = STATE(3643), + [sym_unary_operator] = STATE(3643), + [sym_binary_operator] = STATE(3643), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3643), + [sym_list] = STATE(3643), + [sym_tuple] = STATE(3643), + [sym_bitstring] = STATE(3643), + [sym_map] = STATE(3643), + [sym_boolean] = STATE(3643), + [sym_nil] = STATE(3643), + [sym_call] = STATE(3643), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3643), + [sym_anonymous_function] = STATE(3643), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2304), + [sym_float] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2304), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [512] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3645), + [sym_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2306), + [sym_float] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [513] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3645), + [sym_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2306), + [sym_float] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [514] = { + [sym__expression] = STATE(1564), + [sym_block] = STATE(1564), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1564), + [sym_atom] = STATE(1564), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1564), + [sym_charlist] = STATE(1564), + [sym_sigil] = STATE(1564), + [sym_unary_operator] = STATE(1564), + [sym_binary_operator] = STATE(1564), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1564), + [sym_list] = STATE(1564), + [sym_tuple] = STATE(1564), + [sym_bitstring] = STATE(1564), + [sym_map] = STATE(1564), + [sym_boolean] = STATE(1564), + [sym_nil] = STATE(1564), + [sym_call] = STATE(1564), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1564), + [sym_anonymous_function] = STATE(1564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2276), + [sym_float] = ACTIONS(2276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [515] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [516] = { + [sym__expression] = STATE(1441), + [sym_block] = STATE(1441), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1441), + [sym_atom] = STATE(1441), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1441), + [sym_charlist] = STATE(1441), + [sym_sigil] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_binary_operator] = STATE(1441), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1441), + [sym_list] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_bitstring] = STATE(1441), + [sym_map] = STATE(1441), + [sym_boolean] = STATE(1441), + [sym_nil] = STATE(1441), + [sym_call] = STATE(1441), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1441), + [sym_anonymous_function] = STATE(1441), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2278), + [sym_float] = ACTIONS(2278), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2278), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [517] = { + [sym__expression] = STATE(3784), + [sym_block] = STATE(3784), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3784), + [sym_atom] = STATE(3784), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3784), + [sym_charlist] = STATE(3784), + [sym_sigil] = STATE(3784), + [sym_unary_operator] = STATE(3784), + [sym_binary_operator] = STATE(3784), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3784), + [sym_list] = STATE(3784), + [sym_tuple] = STATE(3784), + [sym_bitstring] = STATE(3784), + [sym_map] = STATE(3784), + [sym_boolean] = STATE(3784), + [sym_nil] = STATE(3784), + [sym_call] = STATE(3784), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3784), + [sym_anonymous_function] = STATE(3784), + [ts_builtin_sym_end] = ACTIONS(2308), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2292), + [sym_float] = ACTIONS(2292), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2292), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [518] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [519] = { + [sym__expression] = STATE(1787), + [sym_block] = STATE(1787), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1787), + [sym_atom] = STATE(1787), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1787), + [sym_charlist] = STATE(1787), + [sym_sigil] = STATE(1787), + [sym_unary_operator] = STATE(1787), + [sym__capture_expression] = STATE(1625), + [sym_binary_operator] = STATE(1787), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1787), + [sym_list] = STATE(1787), + [sym_tuple] = STATE(1787), + [sym_bitstring] = STATE(1787), + [sym_map] = STATE(1787), + [sym_boolean] = STATE(1787), + [sym_nil] = STATE(1787), + [sym_call] = STATE(1787), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1787), + [sym_anonymous_function] = STATE(1787), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1910), + [sym_float] = ACTIONS(1912), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1912), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [520] = { + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1806), + [sym_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1806), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1806), + [sym_anonymous_function] = STATE(1806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2310), + [sym_float] = ACTIONS(2310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [521] = { + [sym__expression] = STATE(3456), + [sym_block] = STATE(3456), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3456), + [sym_atom] = STATE(3456), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3456), + [sym_charlist] = STATE(3456), + [sym_sigil] = STATE(3456), + [sym_unary_operator] = STATE(3456), + [sym__capture_expression] = STATE(3049), + [sym_binary_operator] = STATE(3456), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3456), + [sym_list] = STATE(3456), + [sym_tuple] = STATE(3456), + [sym_bitstring] = STATE(3456), + [sym_map] = STATE(3456), + [sym_boolean] = STATE(3456), + [sym_nil] = STATE(3456), + [sym_call] = STATE(3456), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3456), + [sym_anonymous_function] = STATE(3456), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2264), + [sym_float] = ACTIONS(1870), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1870), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [522] = { + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1806), + [sym_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1806), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1806), + [sym_anonymous_function] = STATE(1806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2310), + [sym_float] = ACTIONS(2310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [523] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [524] = { + [sym__expression] = STATE(1805), + [sym_block] = STATE(1805), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1805), + [sym_atom] = STATE(1805), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1805), + [sym_charlist] = STATE(1805), + [sym_sigil] = STATE(1805), + [sym_unary_operator] = STATE(1805), + [sym_binary_operator] = STATE(1805), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1805), + [sym_list] = STATE(1805), + [sym_tuple] = STATE(1805), + [sym_bitstring] = STATE(1805), + [sym_map] = STATE(1805), + [sym_boolean] = STATE(1805), + [sym_nil] = STATE(1805), + [sym_call] = STATE(1805), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1805), + [sym_anonymous_function] = STATE(1805), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2312), + [sym_float] = ACTIONS(2312), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2312), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [525] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [526] = { + [sym__expression] = STATE(1960), + [sym_block] = STATE(1960), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1960), + [sym_atom] = STATE(1960), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1960), + [sym_charlist] = STATE(1960), + [sym_sigil] = STATE(1960), + [sym_unary_operator] = STATE(1960), + [sym__capture_expression] = STATE(1803), + [sym_binary_operator] = STATE(1960), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1960), + [sym_list] = STATE(1960), + [sym_tuple] = STATE(1960), + [sym_bitstring] = STATE(1960), + [sym_map] = STATE(1960), + [sym_boolean] = STATE(1960), + [sym_nil] = STATE(1960), + [sym_call] = STATE(1960), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1960), + [sym_anonymous_function] = STATE(1960), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2068), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2072), + [sym_float] = ACTIONS(2074), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2074), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [527] = { + [sym__expression] = STATE(2706), + [sym_block] = STATE(2706), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2706), + [sym_atom] = STATE(2706), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2706), + [sym_charlist] = STATE(2706), + [sym_sigil] = STATE(2706), + [sym_unary_operator] = STATE(2706), + [sym_binary_operator] = STATE(2706), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2706), + [sym_list] = STATE(2706), + [sym_tuple] = STATE(2706), + [sym_bitstring] = STATE(2706), + [sym_map] = STATE(2706), + [sym_boolean] = STATE(2706), + [sym_nil] = STATE(2706), + [sym_call] = STATE(2706), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2706), + [sym_anonymous_function] = STATE(2706), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2314), + [sym_float] = ACTIONS(2314), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2314), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [528] = { + [sym__expression] = STATE(2706), + [sym_block] = STATE(2706), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2706), + [sym_atom] = STATE(2706), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2706), + [sym_charlist] = STATE(2706), + [sym_sigil] = STATE(2706), + [sym_unary_operator] = STATE(2706), + [sym_binary_operator] = STATE(2706), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2706), + [sym_list] = STATE(2706), + [sym_tuple] = STATE(2706), + [sym_bitstring] = STATE(2706), + [sym_map] = STATE(2706), + [sym_boolean] = STATE(2706), + [sym_nil] = STATE(2706), + [sym_call] = STATE(2706), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2706), + [sym_anonymous_function] = STATE(2706), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2314), + [sym_float] = ACTIONS(2314), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2314), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [529] = { + [sym__expression] = STATE(2969), + [sym_block] = STATE(2969), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2969), + [sym_atom] = STATE(2969), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2969), + [sym_charlist] = STATE(2969), + [sym_sigil] = STATE(2969), + [sym_unary_operator] = STATE(2969), + [sym__capture_expression] = STATE(1625), + [sym_binary_operator] = STATE(2969), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2969), + [sym_list] = STATE(2969), + [sym_tuple] = STATE(2969), + [sym_bitstring] = STATE(2969), + [sym_map] = STATE(2969), + [sym_boolean] = STATE(2969), + [sym_nil] = STATE(2969), + [sym_call] = STATE(2969), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2969), + [sym_anonymous_function] = STATE(2969), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1910), + [sym_float] = ACTIONS(2000), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2000), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [530] = { + [sym__expression] = STATE(3765), + [sym_block] = STATE(3765), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3765), + [sym_atom] = STATE(3765), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3765), + [sym_charlist] = STATE(3765), + [sym_sigil] = STATE(3765), + [sym_unary_operator] = STATE(3765), + [sym__capture_expression] = STATE(2032), + [sym_binary_operator] = STATE(3765), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3765), + [sym_list] = STATE(3765), + [sym_tuple] = STATE(3765), + [sym_bitstring] = STATE(3765), + [sym_map] = STATE(3765), + [sym_boolean] = STATE(3765), + [sym_nil] = STATE(3765), + [sym_call] = STATE(3765), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3765), + [sym_anonymous_function] = STATE(3765), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2316), + [sym_float] = ACTIONS(2140), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2140), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [531] = { + [sym__expression] = STATE(2940), + [sym_block] = STATE(2940), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2940), + [sym_atom] = STATE(2940), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2940), + [sym_charlist] = STATE(2940), + [sym_sigil] = STATE(2940), + [sym_unary_operator] = STATE(2940), + [sym__capture_expression] = STATE(3045), + [sym_binary_operator] = STATE(2940), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2940), + [sym_list] = STATE(2940), + [sym_tuple] = STATE(2940), + [sym_bitstring] = STATE(2940), + [sym_map] = STATE(2940), + [sym_boolean] = STATE(2940), + [sym_nil] = STATE(2940), + [sym_call] = STATE(2940), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2940), + [sym_anonymous_function] = STATE(2940), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2008), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2318), + [sym_float] = ACTIONS(2018), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2018), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [532] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [533] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [534] = { + [sym__expression] = STATE(2940), + [sym_block] = STATE(2940), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2940), + [sym_atom] = STATE(2940), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2940), + [sym_charlist] = STATE(2940), + [sym_sigil] = STATE(2940), + [sym_unary_operator] = STATE(2940), + [sym__capture_expression] = STATE(2941), + [sym_binary_operator] = STATE(2940), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2940), + [sym_list] = STATE(2940), + [sym_tuple] = STATE(2940), + [sym_bitstring] = STATE(2940), + [sym_map] = STATE(2940), + [sym_boolean] = STATE(2940), + [sym_nil] = STATE(2940), + [sym_call] = STATE(2940), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2940), + [sym_anonymous_function] = STATE(2940), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2008), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2016), + [sym_float] = ACTIONS(2018), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2018), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [535] = { + [sym__expression] = STATE(2709), + [sym_block] = STATE(2709), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2709), + [sym_atom] = STATE(2709), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2709), + [sym_charlist] = STATE(2709), + [sym_sigil] = STATE(2709), + [sym_unary_operator] = STATE(2709), + [sym__capture_expression] = STATE(2708), + [sym_binary_operator] = STATE(2709), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2709), + [sym_list] = STATE(2709), + [sym_tuple] = STATE(2709), + [sym_bitstring] = STATE(2709), + [sym_map] = STATE(2709), + [sym_boolean] = STATE(2709), + [sym_nil] = STATE(2709), + [sym_call] = STATE(2709), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2709), + [sym_anonymous_function] = STATE(2709), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2092), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2096), + [sym_float] = ACTIONS(2098), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2098), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [536] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [537] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [538] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [539] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [540] = { + [sym__expression] = STATE(3640), + [sym_block] = STATE(3640), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3640), + [sym_atom] = STATE(3640), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3640), + [sym_charlist] = STATE(3640), + [sym_sigil] = STATE(3640), + [sym_unary_operator] = STATE(3640), + [sym__capture_expression] = STATE(2032), + [sym_binary_operator] = STATE(3640), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3640), + [sym_list] = STATE(3640), + [sym_tuple] = STATE(3640), + [sym_bitstring] = STATE(3640), + [sym_map] = STATE(3640), + [sym_boolean] = STATE(3640), + [sym_nil] = STATE(3640), + [sym_call] = STATE(3640), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3640), + [sym_anonymous_function] = STATE(3640), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2316), + [sym_float] = ACTIONS(1852), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [541] = { + [sym__expression] = STATE(2707), + [sym_block] = STATE(2707), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2707), + [sym_atom] = STATE(2707), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2707), + [sym_charlist] = STATE(2707), + [sym_sigil] = STATE(2707), + [sym_unary_operator] = STATE(2707), + [sym_binary_operator] = STATE(2707), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2707), + [sym_list] = STATE(2707), + [sym_tuple] = STATE(2707), + [sym_bitstring] = STATE(2707), + [sym_map] = STATE(2707), + [sym_boolean] = STATE(2707), + [sym_nil] = STATE(2707), + [sym_call] = STATE(2707), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2707), + [sym_anonymous_function] = STATE(2707), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2320), + [sym_float] = ACTIONS(2320), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2320), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [542] = { + [sym__expression] = STATE(1624), + [sym_block] = STATE(1624), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1624), + [sym_atom] = STATE(1624), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1624), + [sym_charlist] = STATE(1624), + [sym_sigil] = STATE(1624), + [sym_unary_operator] = STATE(1624), + [sym_binary_operator] = STATE(1624), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1624), + [sym_list] = STATE(1624), + [sym_tuple] = STATE(1624), + [sym_bitstring] = STATE(1624), + [sym_map] = STATE(1624), + [sym_boolean] = STATE(1624), + [sym_nil] = STATE(1624), + [sym_call] = STATE(1624), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1624), + [sym_anonymous_function] = STATE(1624), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2288), + [sym_float] = ACTIONS(2288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [543] = { + [sym__expression] = STATE(1805), + [sym_block] = STATE(1805), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1805), + [sym_atom] = STATE(1805), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1805), + [sym_charlist] = STATE(1805), + [sym_sigil] = STATE(1805), + [sym_unary_operator] = STATE(1805), + [sym_binary_operator] = STATE(1805), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1805), + [sym_list] = STATE(1805), + [sym_tuple] = STATE(1805), + [sym_bitstring] = STATE(1805), + [sym_map] = STATE(1805), + [sym_boolean] = STATE(1805), + [sym_nil] = STATE(1805), + [sym_call] = STATE(1805), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1805), + [sym_anonymous_function] = STATE(1805), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2312), + [sym_float] = ACTIONS(2312), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2312), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [544] = { + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1806), + [sym_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1806), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1806), + [sym_anonymous_function] = STATE(1806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2310), + [sym_float] = ACTIONS(2310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [545] = { + [sym__expression] = STATE(3115), + [sym_block] = STATE(3115), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3115), + [sym_atom] = STATE(3115), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3115), + [sym_charlist] = STATE(3115), + [sym_sigil] = STATE(3115), + [sym_unary_operator] = STATE(3115), + [sym__capture_expression] = STATE(2141), + [sym_binary_operator] = STATE(3115), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3115), + [sym_list] = STATE(3115), + [sym_tuple] = STATE(3115), + [sym_bitstring] = STATE(3115), + [sym_map] = STATE(3115), + [sym_boolean] = STATE(3115), + [sym_nil] = STATE(3115), + [sym_call] = STATE(3115), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3115), + [sym_anonymous_function] = STATE(3115), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2298), + [sym_float] = ACTIONS(1948), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1948), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [546] = { + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1806), + [sym_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1806), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1806), + [sym_anonymous_function] = STATE(1806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2310), + [sym_float] = ACTIONS(2310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [547] = { + [sym__expression] = STATE(2709), + [sym_block] = STATE(2709), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2709), + [sym_atom] = STATE(2709), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2709), + [sym_charlist] = STATE(2709), + [sym_sigil] = STATE(2709), + [sym_unary_operator] = STATE(2709), + [sym__capture_expression] = STATE(2693), + [sym_binary_operator] = STATE(2709), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2709), + [sym_list] = STATE(2709), + [sym_tuple] = STATE(2709), + [sym_bitstring] = STATE(2709), + [sym_map] = STATE(2709), + [sym_boolean] = STATE(2709), + [sym_nil] = STATE(2709), + [sym_call] = STATE(2709), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2709), + [sym_anonymous_function] = STATE(2709), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2092), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2322), + [sym_float] = ACTIONS(2098), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2098), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [548] = { + [sym__expression] = STATE(3919), + [sym_block] = STATE(3919), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3919), + [sym_atom] = STATE(3919), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3919), + [sym_charlist] = STATE(3919), + [sym_sigil] = STATE(3919), + [sym_unary_operator] = STATE(3919), + [sym__capture_expression] = STATE(3049), + [sym_binary_operator] = STATE(3919), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3919), + [sym_list] = STATE(3919), + [sym_tuple] = STATE(3919), + [sym_bitstring] = STATE(3919), + [sym_map] = STATE(3919), + [sym_boolean] = STATE(3919), + [sym_nil] = STATE(3919), + [sym_call] = STATE(3919), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3919), + [sym_anonymous_function] = STATE(3919), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2264), + [sym_float] = ACTIONS(2184), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2184), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [549] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [550] = { + [sym__expression] = STATE(2797), + [sym_block] = STATE(2797), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2797), + [sym_atom] = STATE(2797), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2797), + [sym_charlist] = STATE(2797), + [sym_sigil] = STATE(2797), + [sym_unary_operator] = STATE(2797), + [sym__capture_expression] = STATE(1616), + [sym_binary_operator] = STATE(2797), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2797), + [sym_list] = STATE(2797), + [sym_tuple] = STATE(2797), + [sym_bitstring] = STATE(2797), + [sym_map] = STATE(2797), + [sym_boolean] = STATE(2797), + [sym_nil] = STATE(2797), + [sym_call] = STATE(2797), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2797), + [sym_anonymous_function] = STATE(2797), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2286), + [sym_float] = ACTIONS(2174), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2174), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [551] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [552] = { + [sym__expression] = STATE(3761), + [sym_block] = STATE(3761), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3761), + [sym_atom] = STATE(3761), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3761), + [sym_charlist] = STATE(3761), + [sym_sigil] = STATE(3761), + [sym_unary_operator] = STATE(3761), + [sym__capture_expression] = STATE(3721), + [sym_binary_operator] = STATE(3761), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3761), + [sym_list] = STATE(3761), + [sym_tuple] = STATE(3761), + [sym_bitstring] = STATE(3761), + [sym_map] = STATE(3761), + [sym_boolean] = STATE(3761), + [sym_nil] = STATE(3761), + [sym_call] = STATE(3761), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3761), + [sym_anonymous_function] = STATE(3761), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1836), + [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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2324), + [sym_float] = ACTIONS(2262), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2262), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [553] = { + [sym__expression] = STATE(2964), + [sym_block] = STATE(2964), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2964), + [sym_atom] = STATE(2964), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2964), + [sym_charlist] = STATE(2964), + [sym_sigil] = STATE(2964), + [sym_unary_operator] = STATE(2964), + [sym_binary_operator] = STATE(2964), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2964), + [sym_list] = STATE(2964), + [sym_tuple] = STATE(2964), + [sym_bitstring] = STATE(2964), + [sym_map] = STATE(2964), + [sym_boolean] = STATE(2964), + [sym_nil] = STATE(2964), + [sym_call] = STATE(2964), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2964), + [sym_anonymous_function] = STATE(2964), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2326), + [sym_float] = ACTIONS(2326), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2326), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [554] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [555] = { + [sym__expression] = STATE(3815), + [sym_block] = STATE(3815), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3815), + [sym_atom] = STATE(3815), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3815), + [sym_charlist] = STATE(3815), + [sym_sigil] = STATE(3815), + [sym_unary_operator] = STATE(3815), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3815), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3815), + [sym_list] = STATE(3815), + [sym_tuple] = STATE(3815), + [sym_bitstring] = STATE(3815), + [sym_map] = STATE(3815), + [sym_boolean] = STATE(3815), + [sym_nil] = STATE(3815), + [sym_call] = STATE(3815), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3815), + [sym_anonymous_function] = STATE(3815), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2232), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2232), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [556] = { + [sym__expression] = STATE(2540), + [sym_block] = STATE(2540), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2540), + [sym_atom] = STATE(2540), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2540), + [sym_charlist] = STATE(2540), + [sym_sigil] = STATE(2540), + [sym_unary_operator] = STATE(2540), + [sym__capture_expression] = STATE(2152), + [sym_binary_operator] = STATE(2540), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2540), + [sym_list] = STATE(2540), + [sym_tuple] = STATE(2540), + [sym_bitstring] = STATE(2540), + [sym_map] = STATE(2540), + [sym_boolean] = STATE(2540), + [sym_nil] = STATE(2540), + [sym_call] = STATE(2540), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2540), + [sym_anonymous_function] = STATE(2540), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1946), + [sym_float] = ACTIONS(2188), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2188), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [557] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [558] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [559] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [560] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [561] = { + [sym__expression] = STATE(3037), + [sym_block] = STATE(3037), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3037), + [sym_atom] = STATE(3037), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3037), + [sym_charlist] = STATE(3037), + [sym_sigil] = STATE(3037), + [sym_unary_operator] = STATE(3037), + [sym_binary_operator] = STATE(3037), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3037), + [sym_list] = STATE(3037), + [sym_tuple] = STATE(3037), + [sym_bitstring] = STATE(3037), + [sym_map] = STATE(3037), + [sym_boolean] = STATE(3037), + [sym_nil] = STATE(3037), + [sym_call] = STATE(3037), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3037), + [sym_anonymous_function] = STATE(3037), + [ts_builtin_sym_end] = ACTIONS(2328), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2330), + [sym_float] = ACTIONS(2330), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2330), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [562] = { + [sym__expression] = STATE(3469), + [sym_block] = STATE(3469), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3469), + [sym_atom] = STATE(3469), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3469), + [sym_charlist] = STATE(3469), + [sym_sigil] = STATE(3469), + [sym_unary_operator] = STATE(3469), + [sym_binary_operator] = STATE(3469), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3469), + [sym_list] = STATE(3469), + [sym_tuple] = STATE(3469), + [sym_bitstring] = STATE(3469), + [sym_map] = STATE(3469), + [sym_boolean] = STATE(3469), + [sym_nil] = STATE(3469), + [sym_call] = STATE(3469), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3469), + [sym_anonymous_function] = STATE(3469), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2280), + [sym_float] = ACTIONS(2280), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2280), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [563] = { + [sym__expression] = STATE(3470), + [sym_block] = STATE(3470), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3470), + [sym_atom] = STATE(3470), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3470), + [sym_charlist] = STATE(3470), + [sym_sigil] = STATE(3470), + [sym_unary_operator] = STATE(3470), + [sym_binary_operator] = STATE(3470), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3470), + [sym_list] = STATE(3470), + [sym_tuple] = STATE(3470), + [sym_bitstring] = STATE(3470), + [sym_map] = STATE(3470), + [sym_boolean] = STATE(3470), + [sym_nil] = STATE(3470), + [sym_call] = STATE(3470), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3470), + [sym_anonymous_function] = STATE(3470), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2282), + [sym_float] = ACTIONS(2282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [564] = { + [sym__expression] = STATE(2964), + [sym_block] = STATE(2964), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2964), + [sym_atom] = STATE(2964), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2964), + [sym_charlist] = STATE(2964), + [sym_sigil] = STATE(2964), + [sym_unary_operator] = STATE(2964), + [sym_binary_operator] = STATE(2964), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2964), + [sym_list] = STATE(2964), + [sym_tuple] = STATE(2964), + [sym_bitstring] = STATE(2964), + [sym_map] = STATE(2964), + [sym_boolean] = STATE(2964), + [sym_nil] = STATE(2964), + [sym_call] = STATE(2964), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2964), + [sym_anonymous_function] = STATE(2964), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2326), + [sym_float] = ACTIONS(2326), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2326), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [565] = { + [sym__expression] = STATE(3472), + [sym_block] = STATE(3472), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3472), + [sym_atom] = STATE(3472), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3472), + [sym_charlist] = STATE(3472), + [sym_sigil] = STATE(3472), + [sym_unary_operator] = STATE(3472), + [sym__capture_expression] = STATE(3642), + [sym_binary_operator] = STATE(3472), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3472), + [sym_list] = STATE(3472), + [sym_tuple] = STATE(3472), + [sym_bitstring] = STATE(3472), + [sym_map] = STATE(3472), + [sym_boolean] = STATE(3472), + [sym_nil] = STATE(3472), + [sym_call] = STATE(3472), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3472), + [sym_anonymous_function] = STATE(3472), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1836), + [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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1838), + [sym_float] = ACTIONS(1840), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1840), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [566] = { + [sym__expression] = STATE(2942), + [sym_block] = STATE(2942), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2942), + [sym_atom] = STATE(2942), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2942), + [sym_charlist] = STATE(2942), + [sym_sigil] = STATE(2942), + [sym_unary_operator] = STATE(2942), + [sym_binary_operator] = STATE(2942), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2942), + [sym_list] = STATE(2942), + [sym_tuple] = STATE(2942), + [sym_bitstring] = STATE(2942), + [sym_map] = STATE(2942), + [sym_boolean] = STATE(2942), + [sym_nil] = STATE(2942), + [sym_call] = STATE(2942), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2942), + [sym_anonymous_function] = STATE(2942), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2332), + [sym_float] = ACTIONS(2332), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2332), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [567] = { + [sym__expression] = STATE(3815), + [sym_block] = STATE(3815), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3815), + [sym_atom] = STATE(3815), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3815), + [sym_charlist] = STATE(3815), + [sym_sigil] = STATE(3815), + [sym_unary_operator] = STATE(3815), + [sym__capture_expression] = STATE(2032), + [sym_binary_operator] = STATE(3815), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3815), + [sym_list] = STATE(3815), + [sym_tuple] = STATE(3815), + [sym_bitstring] = STATE(3815), + [sym_map] = STATE(3815), + [sym_boolean] = STATE(3815), + [sym_nil] = STATE(3815), + [sym_call] = STATE(3815), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3815), + [sym_anonymous_function] = STATE(3815), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2316), + [sym_float] = ACTIONS(2232), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2232), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [568] = { + [sym__expression] = STATE(3472), + [sym_block] = STATE(3472), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3472), + [sym_atom] = STATE(3472), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3472), + [sym_charlist] = STATE(3472), + [sym_sigil] = STATE(3472), + [sym_unary_operator] = STATE(3472), + [sym__capture_expression] = STATE(3721), + [sym_binary_operator] = STATE(3472), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3472), + [sym_list] = STATE(3472), + [sym_tuple] = STATE(3472), + [sym_bitstring] = STATE(3472), + [sym_map] = STATE(3472), + [sym_boolean] = STATE(3472), + [sym_nil] = STATE(3472), + [sym_call] = STATE(3472), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3472), + [sym_anonymous_function] = STATE(3472), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1836), + [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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2324), + [sym_float] = ACTIONS(1840), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(1840), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [569] = { + [sym__expression] = STATE(2497), + [sym_block] = STATE(2497), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2497), + [sym_atom] = STATE(2497), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2497), + [sym_charlist] = STATE(2497), + [sym_sigil] = STATE(2497), + [sym_unary_operator] = STATE(2497), + [sym__capture_expression] = STATE(1565), + [sym_binary_operator] = STATE(2497), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2497), + [sym_list] = STATE(2497), + [sym_tuple] = STATE(2497), + [sym_bitstring] = STATE(2497), + [sym_map] = STATE(2497), + [sym_boolean] = STATE(2497), + [sym_nil] = STATE(2497), + [sym_call] = STATE(2497), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2497), + [sym_anonymous_function] = STATE(2497), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2148), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2152), + [sym_float] = ACTIONS(2252), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2252), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [570] = { + [sym__expression] = STATE(1621), + [sym_block] = STATE(1621), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1621), + [sym_atom] = STATE(1621), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1621), + [sym_charlist] = STATE(1621), + [sym_sigil] = STATE(1621), + [sym_unary_operator] = STATE(1621), + [sym__capture_expression] = STATE(1565), + [sym_binary_operator] = STATE(1621), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1621), + [sym_list] = STATE(1621), + [sym_tuple] = STATE(1621), + [sym_bitstring] = STATE(1621), + [sym_map] = STATE(1621), + [sym_boolean] = STATE(1621), + [sym_nil] = STATE(1621), + [sym_call] = STATE(1621), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1621), + [sym_anonymous_function] = STATE(1621), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2148), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2152), + [sym_float] = ACTIONS(2154), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2154), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [571] = { + [sym__expression] = STATE(3229), + [sym_block] = STATE(3229), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3229), + [sym_atom] = STATE(3229), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3229), + [sym_charlist] = STATE(3229), + [sym_sigil] = STATE(3229), + [sym_unary_operator] = STATE(3229), + [sym__capture_expression] = STATE(3217), + [sym_binary_operator] = STATE(3229), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3229), + [sym_list] = STATE(3229), + [sym_tuple] = STATE(3229), + [sym_bitstring] = STATE(3229), + [sym_map] = STATE(3229), + [sym_boolean] = STATE(3229), + [sym_nil] = STATE(3229), + [sym_call] = STATE(3229), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3229), + [sym_anonymous_function] = STATE(3229), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2204), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2334), + [sym_float] = ACTIONS(2214), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2214), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [572] = { + [sym__expression] = STATE(3764), + [sym_block] = STATE(3764), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3764), + [sym_atom] = STATE(3764), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3764), + [sym_charlist] = STATE(3764), + [sym_sigil] = STATE(3764), + [sym_unary_operator] = STATE(3764), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3764), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3764), + [sym_list] = STATE(3764), + [sym_tuple] = STATE(3764), + [sym_bitstring] = STATE(3764), + [sym_map] = STATE(3764), + [sym_boolean] = STATE(3764), + [sym_nil] = STATE(3764), + [sym_call] = STATE(3764), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3764), + [sym_anonymous_function] = STATE(3764), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(2242), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2242), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [573] = { + [sym__expression] = STATE(3643), + [sym_block] = STATE(3643), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3643), + [sym_atom] = STATE(3643), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3643), + [sym_charlist] = STATE(3643), + [sym_sigil] = STATE(3643), + [sym_unary_operator] = STATE(3643), + [sym_binary_operator] = STATE(3643), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3643), + [sym_list] = STATE(3643), + [sym_tuple] = STATE(3643), + [sym_bitstring] = STATE(3643), + [sym_map] = STATE(3643), + [sym_boolean] = STATE(3643), + [sym_nil] = STATE(3643), + [sym_call] = STATE(3643), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3643), + [sym_anonymous_function] = STATE(3643), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2304), + [sym_float] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2304), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [574] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3645), + [sym_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2306), + [sym_float] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [575] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3645), + [sym_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2306), + [sym_float] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [576] = { + [sym__expression] = STATE(3470), + [sym_block] = STATE(3470), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3470), + [sym_atom] = STATE(3470), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3470), + [sym_charlist] = STATE(3470), + [sym_sigil] = STATE(3470), + [sym_unary_operator] = STATE(3470), + [sym_binary_operator] = STATE(3470), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3470), + [sym_list] = STATE(3470), + [sym_tuple] = STATE(3470), + [sym_bitstring] = STATE(3470), + [sym_map] = STATE(3470), + [sym_boolean] = STATE(3470), + [sym_nil] = STATE(3470), + [sym_call] = STATE(3470), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3470), + [sym_anonymous_function] = STATE(3470), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2282), + [sym_float] = ACTIONS(2282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [577] = { + [sym__expression] = STATE(1624), + [sym_block] = STATE(1624), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1624), + [sym_atom] = STATE(1624), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1624), + [sym_charlist] = STATE(1624), + [sym_sigil] = STATE(1624), + [sym_unary_operator] = STATE(1624), + [sym_binary_operator] = STATE(1624), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1624), + [sym_list] = STATE(1624), + [sym_tuple] = STATE(1624), + [sym_bitstring] = STATE(1624), + [sym_map] = STATE(1624), + [sym_boolean] = STATE(1624), + [sym_nil] = STATE(1624), + [sym_call] = STATE(1624), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1624), + [sym_anonymous_function] = STATE(1624), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2288), + [sym_float] = ACTIONS(2288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [578] = { + [sym__expression] = STATE(3644), + [sym_block] = STATE(3644), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3644), + [sym_atom] = STATE(3644), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3644), + [sym_charlist] = STATE(3644), + [sym_sigil] = STATE(3644), + [sym_unary_operator] = STATE(3644), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3644), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3644), + [sym_list] = STATE(3644), + [sym_tuple] = STATE(3644), + [sym_bitstring] = STATE(3644), + [sym_map] = STATE(3644), + [sym_boolean] = STATE(3644), + [sym_nil] = STATE(3644), + [sym_call] = STATE(3644), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3644), + [sym_anonymous_function] = STATE(3644), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(2234), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2234), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [579] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [580] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [581] = { + [sym__expression] = STATE(3764), + [sym_block] = STATE(3764), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3764), + [sym_atom] = STATE(3764), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3764), + [sym_charlist] = STATE(3764), + [sym_sigil] = STATE(3764), + [sym_unary_operator] = STATE(3764), + [sym__capture_expression] = STATE(3049), + [sym_binary_operator] = STATE(3764), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3764), + [sym_list] = STATE(3764), + [sym_tuple] = STATE(3764), + [sym_bitstring] = STATE(3764), + [sym_map] = STATE(3764), + [sym_boolean] = STATE(3764), + [sym_nil] = STATE(3764), + [sym_call] = STATE(3764), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3764), + [sym_anonymous_function] = STATE(3764), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2264), + [sym_float] = ACTIONS(2242), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2242), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [582] = { + [sym__expression] = STATE(3948), + [sym_block] = STATE(3948), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3948), + [sym_atom] = STATE(3948), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3948), + [sym_charlist] = STATE(3948), + [sym_sigil] = STATE(3948), + [sym_unary_operator] = STATE(3948), + [sym__capture_expression] = STATE(3672), + [sym_binary_operator] = STATE(3948), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3948), + [sym_list] = STATE(3948), + [sym_tuple] = STATE(3948), + [sym_bitstring] = STATE(3948), + [sym_map] = STATE(3948), + [sym_boolean] = STATE(3948), + [sym_nil] = STATE(3948), + [sym_call] = STATE(3948), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2038), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2296), + [sym_float] = ACTIONS(2196), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2196), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [583] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [584] = { + [sym__expression] = STATE(3809), + [sym_block] = STATE(3809), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3809), + [sym_atom] = STATE(3809), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3809), + [sym_charlist] = STATE(3809), + [sym_sigil] = STATE(3809), + [sym_unary_operator] = STATE(3809), + [sym_binary_operator] = STATE(3809), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3809), + [sym_list] = STATE(3809), + [sym_tuple] = STATE(3809), + [sym_bitstring] = STATE(3809), + [sym_map] = STATE(3809), + [sym_boolean] = STATE(3809), + [sym_nil] = STATE(3809), + [sym_call] = STATE(3809), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3809), + [sym_anonymous_function] = STATE(3809), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(2336), + [sym_float] = ACTIONS(2336), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(2336), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [585] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [586] = { + [sym__expression] = STATE(3809), + [sym_block] = STATE(3809), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3809), + [sym_atom] = STATE(3809), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3809), + [sym_charlist] = STATE(3809), + [sym_sigil] = STATE(3809), + [sym_unary_operator] = STATE(3809), + [sym_binary_operator] = STATE(3809), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3809), + [sym_list] = STATE(3809), + [sym_tuple] = STATE(3809), + [sym_bitstring] = STATE(3809), + [sym_map] = STATE(3809), + [sym_boolean] = STATE(3809), + [sym_nil] = STATE(3809), + [sym_call] = STATE(3809), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3809), + [sym_anonymous_function] = STATE(3809), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(2336), + [sym_float] = ACTIONS(2336), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(2336), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [587] = { + [sym__expression] = STATE(3808), + [sym_block] = STATE(3808), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3808), + [sym_atom] = STATE(3808), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3808), + [sym_charlist] = STATE(3808), + [sym_sigil] = STATE(3808), + [sym_unary_operator] = STATE(3808), + [sym_binary_operator] = STATE(3808), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3808), + [sym_list] = STATE(3808), + [sym_tuple] = STATE(3808), + [sym_bitstring] = STATE(3808), + [sym_map] = STATE(3808), + [sym_boolean] = STATE(3808), + [sym_nil] = STATE(3808), + [sym_call] = STATE(3808), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3808), + [sym_anonymous_function] = STATE(3808), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(2338), + [sym_float] = ACTIONS(2338), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(2338), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [588] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [589] = { + [sym__expression] = STATE(2251), + [sym_block] = STATE(2251), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2251), + [sym_atom] = STATE(2251), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2251), + [sym_charlist] = STATE(2251), + [sym_sigil] = STATE(2251), + [sym_unary_operator] = STATE(2251), + [sym__capture_expression] = STATE(2032), + [sym_binary_operator] = STATE(2251), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2251), + [sym_list] = STATE(2251), + [sym_tuple] = STATE(2251), + [sym_bitstring] = STATE(2251), + [sym_map] = STATE(2251), + [sym_boolean] = STATE(2251), + [sym_nil] = STATE(2251), + [sym_call] = STATE(2251), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2251), + [sym_anonymous_function] = STATE(2251), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2316), + [sym_float] = ACTIONS(2118), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2118), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [590] = { + [sym__expression] = STATE(1787), + [sym_block] = STATE(1787), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1787), + [sym_atom] = STATE(1787), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1787), + [sym_charlist] = STATE(1787), + [sym_sigil] = STATE(1787), + [sym_unary_operator] = STATE(1787), + [sym__capture_expression] = STATE(1616), + [sym_binary_operator] = STATE(1787), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1787), + [sym_list] = STATE(1787), + [sym_tuple] = STATE(1787), + [sym_bitstring] = STATE(1787), + [sym_map] = STATE(1787), + [sym_boolean] = STATE(1787), + [sym_nil] = STATE(1787), + [sym_call] = STATE(1787), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1787), + [sym_anonymous_function] = STATE(1787), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2286), + [sym_float] = ACTIONS(1912), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1912), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [591] = { + [sym__expression] = STATE(3115), + [sym_block] = STATE(3115), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3115), + [sym_atom] = STATE(3115), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3115), + [sym_charlist] = STATE(3115), + [sym_sigil] = STATE(3115), + [sym_unary_operator] = STATE(3115), + [sym__capture_expression] = STATE(2152), + [sym_binary_operator] = STATE(3115), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3115), + [sym_list] = STATE(3115), + [sym_tuple] = STATE(3115), + [sym_bitstring] = STATE(3115), + [sym_map] = STATE(3115), + [sym_boolean] = STATE(3115), + [sym_nil] = STATE(3115), + [sym_call] = STATE(3115), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3115), + [sym_anonymous_function] = STATE(3115), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1938), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1946), + [sym_float] = ACTIONS(1948), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1948), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [592] = { + [sym__expression] = STATE(3801), + [sym_block] = STATE(3801), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3801), + [sym_atom] = STATE(3801), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3801), + [sym_charlist] = STATE(3801), + [sym_sigil] = STATE(3801), + [sym_unary_operator] = STATE(3801), + [sym__capture_expression] = STATE(3802), + [sym_binary_operator] = STATE(3801), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3801), + [sym_list] = STATE(3801), + [sym_tuple] = STATE(3801), + [sym_bitstring] = STATE(3801), + [sym_map] = STATE(3801), + [sym_boolean] = STATE(3801), + [sym_nil] = STATE(3801), + [sym_call] = STATE(3801), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3801), + [sym_anonymous_function] = STATE(3801), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1968), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1976), + [sym_float] = ACTIONS(1978), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(1978), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [593] = { + [sym__expression] = STATE(3801), + [sym_block] = STATE(3801), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3801), + [sym_atom] = STATE(3801), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3801), + [sym_charlist] = STATE(3801), + [sym_sigil] = STATE(3801), + [sym_unary_operator] = STATE(3801), + [sym__capture_expression] = STATE(3886), + [sym_binary_operator] = STATE(3801), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3801), + [sym_list] = STATE(3801), + [sym_tuple] = STATE(3801), + [sym_bitstring] = STATE(3801), + [sym_map] = STATE(3801), + [sym_boolean] = STATE(3801), + [sym_nil] = STATE(3801), + [sym_call] = STATE(3801), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3801), + [sym_anonymous_function] = STATE(3801), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1968), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(2340), + [sym_float] = ACTIONS(1978), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(1978), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [594] = { + [sym__expression] = STATE(2481), + [sym_block] = STATE(2481), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2481), + [sym_atom] = STATE(2481), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2481), + [sym_charlist] = STATE(2481), + [sym_sigil] = STATE(2481), + [sym_unary_operator] = STATE(2481), + [sym__capture_expression] = STATE(2032), + [sym_binary_operator] = STATE(2481), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2481), + [sym_list] = STATE(2481), + [sym_tuple] = STATE(2481), + [sym_bitstring] = STATE(2481), + [sym_map] = STATE(2481), + [sym_boolean] = STATE(2481), + [sym_nil] = STATE(2481), + [sym_call] = STATE(2481), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2481), + [sym_anonymous_function] = STATE(2481), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2316), + [sym_float] = ACTIONS(1900), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1900), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [595] = { + [sym__expression] = STATE(3784), + [sym_block] = STATE(3784), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3784), + [sym_atom] = STATE(3784), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3784), + [sym_charlist] = STATE(3784), + [sym_sigil] = STATE(3784), + [sym_unary_operator] = STATE(3784), + [sym_binary_operator] = STATE(3784), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3784), + [sym_list] = STATE(3784), + [sym_tuple] = STATE(3784), + [sym_bitstring] = STATE(3784), + [sym_map] = STATE(3784), + [sym_boolean] = STATE(3784), + [sym_nil] = STATE(3784), + [sym_call] = STATE(3784), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3784), + [sym_anonymous_function] = STATE(3784), + [ts_builtin_sym_end] = ACTIONS(2342), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2292), + [sym_float] = ACTIONS(2292), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2292), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [596] = { + [sym__expression] = STATE(2797), + [sym_block] = STATE(2797), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2797), + [sym_atom] = STATE(2797), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2797), + [sym_charlist] = STATE(2797), + [sym_sigil] = STATE(2797), + [sym_unary_operator] = STATE(2797), + [sym__capture_expression] = STATE(1625), + [sym_binary_operator] = STATE(2797), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2797), + [sym_list] = STATE(2797), + [sym_tuple] = STATE(2797), + [sym_bitstring] = STATE(2797), + [sym_map] = STATE(2797), + [sym_boolean] = STATE(2797), + [sym_nil] = STATE(2797), + [sym_call] = STATE(2797), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2797), + [sym_anonymous_function] = STATE(2797), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1902), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1910), + [sym_float] = ACTIONS(2174), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2174), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [597] = { + [sym__expression] = STATE(3761), + [sym_block] = STATE(3761), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3761), + [sym_atom] = STATE(3761), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3761), + [sym_charlist] = STATE(3761), + [sym_sigil] = STATE(3761), + [sym_unary_operator] = STATE(3761), + [sym__capture_expression] = STATE(3642), + [sym_binary_operator] = STATE(3761), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3761), + [sym_list] = STATE(3761), + [sym_tuple] = STATE(3761), + [sym_bitstring] = STATE(3761), + [sym_map] = STATE(3761), + [sym_boolean] = STATE(3761), + [sym_nil] = STATE(3761), + [sym_call] = STATE(3761), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3761), + [sym_anonymous_function] = STATE(3761), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1836), + [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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(1838), + [sym_float] = ACTIONS(2262), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2262), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [598] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2150), + [sym_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2344), + [sym_float] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2344), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [599] = { + [sym__expression] = STATE(3644), + [sym_block] = STATE(3644), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3644), + [sym_atom] = STATE(3644), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3644), + [sym_charlist] = STATE(3644), + [sym_sigil] = STATE(3644), + [sym_unary_operator] = STATE(3644), + [sym__capture_expression] = STATE(2032), + [sym_binary_operator] = STATE(3644), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3644), + [sym_list] = STATE(3644), + [sym_tuple] = STATE(3644), + [sym_bitstring] = STATE(3644), + [sym_map] = STATE(3644), + [sym_boolean] = STATE(3644), + [sym_nil] = STATE(3644), + [sym_call] = STATE(3644), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3644), + [sym_anonymous_function] = STATE(3644), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2316), + [sym_float] = ACTIONS(2234), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2234), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [600] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [601] = { + [sym__expression] = STATE(2481), + [sym_block] = STATE(2481), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2481), + [sym_atom] = STATE(2481), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2481), + [sym_charlist] = STATE(2481), + [sym_sigil] = STATE(2481), + [sym_unary_operator] = STATE(2481), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(2481), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2481), + [sym_list] = STATE(2481), + [sym_tuple] = STATE(2481), + [sym_bitstring] = STATE(2481), + [sym_map] = STATE(2481), + [sym_boolean] = STATE(2481), + [sym_nil] = STATE(2481), + [sym_call] = STATE(2481), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2481), + [sym_anonymous_function] = STATE(2481), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(1900), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1900), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [602] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2150), + [sym_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2344), + [sym_float] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2344), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [603] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2150), + [sym_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2344), + [sym_float] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2344), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [604] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2151), + [sym_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2346), + [sym_float] = ACTIONS(2346), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2346), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [605] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2150), + [sym_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2344), + [sym_float] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2344), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [606] = { + [sym__expression] = STATE(3732), + [sym_block] = STATE(3732), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3732), + [sym_atom] = STATE(3732), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3732), + [sym_charlist] = STATE(3732), + [sym_sigil] = STATE(3732), + [sym_unary_operator] = STATE(3732), + [sym__capture_expression] = STATE(3058), + [sym_binary_operator] = STATE(3732), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3732), + [sym_list] = STATE(3732), + [sym_tuple] = STATE(3732), + [sym_bitstring] = STATE(3732), + [sym_map] = STATE(3732), + [sym_boolean] = STATE(3732), + [sym_nil] = STATE(3732), + [sym_call] = STATE(3732), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3732), + [sym_anonymous_function] = STATE(3732), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1860), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1868), + [sym_float] = ACTIONS(1930), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1930), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [607] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2151), + [sym_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2346), + [sym_float] = ACTIONS(2346), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2346), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__keyword_end] = ACTIONS(1702), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [608] = { + [sym__expression] = STATE(3640), + [sym_block] = STATE(3640), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3640), + [sym_atom] = STATE(3640), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3640), + [sym_charlist] = STATE(3640), + [sym_sigil] = STATE(3640), + [sym_unary_operator] = STATE(3640), + [sym__capture_expression] = STATE(2018), + [sym_binary_operator] = STATE(3640), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3640), + [sym_list] = STATE(3640), + [sym_tuple] = STATE(3640), + [sym_bitstring] = STATE(3640), + [sym_map] = STATE(3640), + [sym_boolean] = STATE(3640), + [sym_nil] = STATE(3640), + [sym_call] = STATE(3640), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3640), + [sym_anonymous_function] = STATE(3640), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1848), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1850), + [sym_float] = ACTIONS(1852), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1852), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [609] = { + [sym__expression] = STATE(2502), + [sym_block] = STATE(2502), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2502), + [sym_atom] = STATE(2502), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2502), + [sym_charlist] = STATE(2502), + [sym_sigil] = STATE(2502), + [sym_unary_operator] = STATE(2502), + [sym_binary_operator] = STATE(2502), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2502), + [sym_list] = STATE(2502), + [sym_tuple] = STATE(2502), + [sym_bitstring] = STATE(2502), + [sym_map] = STATE(2502), + [sym_boolean] = STATE(2502), + [sym_nil] = STATE(2502), + [sym_call] = STATE(2502), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2502), + [sym_anonymous_function] = STATE(2502), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2348), + [sym_float] = ACTIONS(2348), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2348), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [610] = { + [sym__expression] = STATE(3678), + [sym_block] = STATE(3678), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3678), + [sym_atom] = STATE(3678), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3678), + [sym_charlist] = STATE(3678), + [sym_sigil] = STATE(3678), + [sym_unary_operator] = STATE(3678), + [sym_binary_operator] = STATE(3678), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3678), + [sym_list] = STATE(3678), + [sym_tuple] = STATE(3678), + [sym_bitstring] = STATE(3678), + [sym_map] = STATE(3678), + [sym_boolean] = STATE(3678), + [sym_nil] = STATE(3678), + [sym_call] = STATE(3678), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3678), + [sym_anonymous_function] = STATE(3678), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2350), + [sym_float] = ACTIONS(2350), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2350), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [611] = { + [sym__expression] = STATE(3871), + [sym_block] = STATE(3871), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3871), + [sym_atom] = STATE(3871), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3871), + [sym_charlist] = STATE(3871), + [sym_sigil] = STATE(3871), + [sym_unary_operator] = STATE(3871), + [sym_binary_operator] = STATE(3871), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3871), + [sym_list] = STATE(3871), + [sym_tuple] = STATE(3871), + [sym_bitstring] = STATE(3871), + [sym_map] = STATE(3871), + [sym_boolean] = STATE(3871), + [sym_nil] = STATE(3871), + [sym_call] = STATE(3871), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3871), + [sym_anonymous_function] = STATE(3871), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2352), + [sym_float] = ACTIONS(2352), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2352), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [612] = { + [sym__expression] = STATE(3872), + [sym_block] = STATE(3872), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3872), + [sym_atom] = STATE(3872), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3872), + [sym_charlist] = STATE(3872), + [sym_sigil] = STATE(3872), + [sym_unary_operator] = STATE(3872), + [sym_binary_operator] = STATE(3872), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3872), + [sym_list] = STATE(3872), + [sym_tuple] = STATE(3872), + [sym_bitstring] = STATE(3872), + [sym_map] = STATE(3872), + [sym_boolean] = STATE(3872), + [sym_nil] = STATE(3872), + [sym_call] = STATE(3872), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3872), + [sym_anonymous_function] = STATE(3872), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2354), + [sym_float] = ACTIONS(2354), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2354), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [613] = { + [sym__expression] = STATE(3708), + [sym_block] = STATE(3708), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3708), + [sym_atom] = STATE(3708), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3708), + [sym_charlist] = STATE(3708), + [sym_sigil] = STATE(3708), + [sym_unary_operator] = STATE(3708), + [sym_binary_operator] = STATE(3708), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3708), + [sym_list] = STATE(3708), + [sym_tuple] = STATE(3708), + [sym_bitstring] = STATE(3708), + [sym_map] = STATE(3708), + [sym_boolean] = STATE(3708), + [sym_nil] = STATE(3708), + [sym_call] = STATE(3708), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3708), + [sym_anonymous_function] = STATE(3708), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2356), + [sym_float] = ACTIONS(2356), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2356), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [614] = { + [sym__expression] = STATE(1923), + [sym_block] = STATE(1923), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(1923), + [sym_atom] = STATE(1923), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1923), + [sym_charlist] = STATE(1923), + [sym_sigil] = STATE(1923), + [sym_unary_operator] = STATE(1923), + [sym_binary_operator] = STATE(1923), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1923), + [sym_list] = STATE(1923), + [sym_tuple] = STATE(1923), + [sym_bitstring] = STATE(1923), + [sym_map] = STATE(1923), + [sym_boolean] = STATE(1923), + [sym_nil] = STATE(1923), + [sym_call] = STATE(1923), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1923), + [sym_anonymous_function] = STATE(1923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2358), + [sym_float] = ACTIONS(2358), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2358), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [615] = { + [sym__expression] = STATE(3874), + [sym_block] = STATE(3874), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3874), + [sym_atom] = STATE(3874), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3874), + [sym_charlist] = STATE(3874), + [sym_sigil] = STATE(3874), + [sym_unary_operator] = STATE(3874), + [sym_binary_operator] = STATE(3874), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3874), + [sym_list] = STATE(3874), + [sym_tuple] = STATE(3874), + [sym_bitstring] = STATE(3874), + [sym_map] = STATE(3874), + [sym_boolean] = STATE(3874), + [sym_nil] = STATE(3874), + [sym_call] = STATE(3874), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3874), + [sym_anonymous_function] = STATE(3874), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2360), + [sym_float] = ACTIONS(2360), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2360), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [616] = { + [sym__expression] = STATE(2964), + [sym_block] = STATE(2964), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2964), + [sym_atom] = STATE(2964), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2964), + [sym_charlist] = STATE(2964), + [sym_sigil] = STATE(2964), + [sym_unary_operator] = STATE(2964), + [sym_binary_operator] = STATE(2964), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2964), + [sym_list] = STATE(2964), + [sym_tuple] = STATE(2964), + [sym_bitstring] = STATE(2964), + [sym_map] = STATE(2964), + [sym_boolean] = STATE(2964), + [sym_nil] = STATE(2964), + [sym_call] = STATE(2964), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2964), + [sym_anonymous_function] = STATE(2964), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2326), + [sym_float] = ACTIONS(2326), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2326), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [617] = { + [sym__expression] = STATE(2942), + [sym_block] = STATE(2942), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2942), + [sym_atom] = STATE(2942), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2942), + [sym_charlist] = STATE(2942), + [sym_sigil] = STATE(2942), + [sym_unary_operator] = STATE(2942), + [sym_binary_operator] = STATE(2942), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2942), + [sym_list] = STATE(2942), + [sym_tuple] = STATE(2942), + [sym_bitstring] = STATE(2942), + [sym_map] = STATE(2942), + [sym_boolean] = STATE(2942), + [sym_nil] = STATE(2942), + [sym_call] = STATE(2942), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2942), + [sym_anonymous_function] = STATE(2942), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2332), + [sym_float] = ACTIONS(2332), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2332), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [618] = { + [sym__expression] = STATE(3172), + [sym_block] = STATE(3172), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3172), + [sym_atom] = STATE(3172), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3172), + [sym_charlist] = STATE(3172), + [sym_sigil] = STATE(3172), + [sym_unary_operator] = STATE(3172), + [sym_binary_operator] = STATE(3172), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3172), + [sym_list] = STATE(3172), + [sym_tuple] = STATE(3172), + [sym_bitstring] = STATE(3172), + [sym_map] = STATE(3172), + [sym_boolean] = STATE(3172), + [sym_nil] = STATE(3172), + [sym_call] = STATE(3172), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3172), + [sym_anonymous_function] = STATE(3172), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2362), + [sym_float] = ACTIONS(2362), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2362), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [619] = { + [sym__expression] = STATE(3875), + [sym_block] = STATE(3875), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3875), + [sym_atom] = STATE(3875), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3875), + [sym_charlist] = STATE(3875), + [sym_sigil] = STATE(3875), + [sym_unary_operator] = STATE(3875), + [sym_binary_operator] = STATE(3875), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3875), + [sym_list] = STATE(3875), + [sym_tuple] = STATE(3875), + [sym_bitstring] = STATE(3875), + [sym_map] = STATE(3875), + [sym_boolean] = STATE(3875), + [sym_nil] = STATE(3875), + [sym_call] = STATE(3875), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3875), + [sym_anonymous_function] = STATE(3875), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2364), + [sym_float] = ACTIONS(2364), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2364), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [620] = { + [sym__expression] = STATE(3877), + [sym_block] = STATE(3877), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3877), + [sym_atom] = STATE(3877), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3877), + [sym_charlist] = STATE(3877), + [sym_sigil] = STATE(3877), + [sym_unary_operator] = STATE(3877), + [sym_binary_operator] = STATE(3877), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3877), + [sym_list] = STATE(3877), + [sym_tuple] = STATE(3877), + [sym_bitstring] = STATE(3877), + [sym_map] = STATE(3877), + [sym_boolean] = STATE(3877), + [sym_nil] = STATE(3877), + [sym_call] = STATE(3877), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3877), + [sym_anonymous_function] = STATE(3877), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2366), + [sym_float] = ACTIONS(2366), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2366), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [621] = { + [sym__expression] = STATE(3760), + [sym_block] = STATE(3760), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3760), + [sym_atom] = STATE(3760), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3760), + [sym_charlist] = STATE(3760), + [sym_sigil] = STATE(3760), + [sym_unary_operator] = STATE(3760), + [sym_binary_operator] = STATE(3760), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3760), + [sym_list] = STATE(3760), + [sym_tuple] = STATE(3760), + [sym_bitstring] = STATE(3760), + [sym_map] = STATE(3760), + [sym_boolean] = STATE(3760), + [sym_nil] = STATE(3760), + [sym_call] = STATE(3760), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3760), + [sym_anonymous_function] = STATE(3760), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2368), + [sym_float] = ACTIONS(2368), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2368), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [622] = { + [sym__expression] = STATE(3389), + [sym_block] = STATE(3389), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3389), + [sym_atom] = STATE(3389), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3389), + [sym_charlist] = STATE(3389), + [sym_sigil] = STATE(3389), + [sym_unary_operator] = STATE(3389), + [sym_binary_operator] = STATE(3389), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3389), + [sym_list] = STATE(3389), + [sym_tuple] = STATE(3389), + [sym_bitstring] = STATE(3389), + [sym_map] = STATE(3389), + [sym_boolean] = STATE(3389), + [sym_nil] = STATE(3389), + [sym_call] = STATE(3389), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3389), + [sym_anonymous_function] = STATE(3389), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2370), + [sym_float] = ACTIONS(2370), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [623] = { + [sym__expression] = STATE(2747), + [sym_block] = STATE(2747), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2747), + [sym_atom] = STATE(2747), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2747), + [sym_charlist] = STATE(2747), + [sym_sigil] = STATE(2747), + [sym_unary_operator] = STATE(2747), + [sym_binary_operator] = STATE(2747), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2747), + [sym_list] = STATE(2747), + [sym_tuple] = STATE(2747), + [sym_bitstring] = STATE(2747), + [sym_map] = STATE(2747), + [sym_boolean] = STATE(2747), + [sym_nil] = STATE(2747), + [sym_call] = STATE(2747), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2747), + [sym_anonymous_function] = STATE(2747), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2372), + [sym_float] = ACTIONS(2372), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2372), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [624] = { + [sym__expression] = STATE(1629), + [sym_block] = STATE(1629), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1629), + [sym_atom] = STATE(1629), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1629), + [sym_charlist] = STATE(1629), + [sym_sigil] = STATE(1629), + [sym_unary_operator] = STATE(1629), + [sym_binary_operator] = STATE(1629), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1629), + [sym_list] = STATE(1629), + [sym_tuple] = STATE(1629), + [sym_bitstring] = STATE(1629), + [sym_map] = STATE(1629), + [sym_boolean] = STATE(1629), + [sym_nil] = STATE(1629), + [sym_call] = STATE(1629), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1629), + [sym_anonymous_function] = STATE(1629), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1409), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [625] = { + [sym__expression] = STATE(3719), + [sym_block] = STATE(3719), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3719), + [sym_atom] = STATE(3719), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3719), + [sym_charlist] = STATE(3719), + [sym_sigil] = STATE(3719), + [sym_unary_operator] = STATE(3719), + [sym_binary_operator] = STATE(3719), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3719), + [sym_list] = STATE(3719), + [sym_tuple] = STATE(3719), + [sym_bitstring] = STATE(3719), + [sym_map] = STATE(3719), + [sym_boolean] = STATE(3719), + [sym_nil] = STATE(3719), + [sym_call] = STATE(3719), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3719), + [sym_anonymous_function] = STATE(3719), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2374), + [sym_float] = ACTIONS(2374), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2374), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [626] = { + [sym__expression] = STATE(2744), + [sym_block] = STATE(2744), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2744), + [sym_atom] = STATE(2744), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2744), + [sym_charlist] = STATE(2744), + [sym_sigil] = STATE(2744), + [sym_unary_operator] = STATE(2744), + [sym_binary_operator] = STATE(2744), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2744), + [sym_list] = STATE(2744), + [sym_tuple] = STATE(2744), + [sym_bitstring] = STATE(2744), + [sym_map] = STATE(2744), + [sym_boolean] = STATE(2744), + [sym_nil] = STATE(2744), + [sym_call] = STATE(2744), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2744), + [sym_anonymous_function] = STATE(2744), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2376), + [sym_float] = ACTIONS(2376), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2376), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [627] = { + [sym__expression] = STATE(2743), + [sym_block] = STATE(2743), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2743), + [sym_atom] = STATE(2743), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2743), + [sym_charlist] = STATE(2743), + [sym_sigil] = STATE(2743), + [sym_unary_operator] = STATE(2743), + [sym_binary_operator] = STATE(2743), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2743), + [sym_list] = STATE(2743), + [sym_tuple] = STATE(2743), + [sym_bitstring] = STATE(2743), + [sym_map] = STATE(2743), + [sym_boolean] = STATE(2743), + [sym_nil] = STATE(2743), + [sym_call] = STATE(2743), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2743), + [sym_anonymous_function] = STATE(2743), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2378), + [sym_float] = ACTIONS(2378), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2378), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [628] = { + [sym__expression] = STATE(2742), + [sym_block] = STATE(2742), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2742), + [sym_atom] = STATE(2742), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2742), + [sym_charlist] = STATE(2742), + [sym_sigil] = STATE(2742), + [sym_unary_operator] = STATE(2742), + [sym_binary_operator] = STATE(2742), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2742), + [sym_list] = STATE(2742), + [sym_tuple] = STATE(2742), + [sym_bitstring] = STATE(2742), + [sym_map] = STATE(2742), + [sym_boolean] = STATE(2742), + [sym_nil] = STATE(2742), + [sym_call] = STATE(2742), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2380), + [sym_float] = ACTIONS(2380), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2380), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [629] = { + [sym__expression] = STATE(2741), + [sym_block] = STATE(2741), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2741), + [sym_atom] = STATE(2741), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2741), + [sym_charlist] = STATE(2741), + [sym_sigil] = STATE(2741), + [sym_unary_operator] = STATE(2741), + [sym_binary_operator] = STATE(2741), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2741), + [sym_list] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_bitstring] = STATE(2741), + [sym_map] = STATE(2741), + [sym_boolean] = STATE(2741), + [sym_nil] = STATE(2741), + [sym_call] = STATE(2741), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2382), + [sym_float] = ACTIONS(2382), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2382), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [630] = { + [sym__expression] = STATE(2740), + [sym_block] = STATE(2740), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2740), + [sym_atom] = STATE(2740), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2740), + [sym_charlist] = STATE(2740), + [sym_sigil] = STATE(2740), + [sym_unary_operator] = STATE(2740), + [sym_binary_operator] = STATE(2740), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2740), + [sym_list] = STATE(2740), + [sym_tuple] = STATE(2740), + [sym_bitstring] = STATE(2740), + [sym_map] = STATE(2740), + [sym_boolean] = STATE(2740), + [sym_nil] = STATE(2740), + [sym_call] = STATE(2740), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2740), + [sym_anonymous_function] = STATE(2740), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2384), + [sym_float] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2384), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [631] = { + [sym__expression] = STATE(2725), + [sym_block] = STATE(2725), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2725), + [sym_atom] = STATE(2725), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2725), + [sym_charlist] = STATE(2725), + [sym_sigil] = STATE(2725), + [sym_unary_operator] = STATE(2725), + [sym_binary_operator] = STATE(2725), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2725), + [sym_list] = STATE(2725), + [sym_tuple] = STATE(2725), + [sym_bitstring] = STATE(2725), + [sym_map] = STATE(2725), + [sym_boolean] = STATE(2725), + [sym_nil] = STATE(2725), + [sym_call] = STATE(2725), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2725), + [sym_anonymous_function] = STATE(2725), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2386), + [sym_float] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2386), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [632] = { + [sym__expression] = STATE(2724), + [sym_block] = STATE(2724), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2724), + [sym_atom] = STATE(2724), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2724), + [sym_charlist] = STATE(2724), + [sym_sigil] = STATE(2724), + [sym_unary_operator] = STATE(2724), + [sym_binary_operator] = STATE(2724), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2724), + [sym_list] = STATE(2724), + [sym_tuple] = STATE(2724), + [sym_bitstring] = STATE(2724), + [sym_map] = STATE(2724), + [sym_boolean] = STATE(2724), + [sym_nil] = STATE(2724), + [sym_call] = STATE(2724), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2724), + [sym_anonymous_function] = STATE(2724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2388), + [sym_float] = ACTIONS(2388), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2388), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [633] = { + [sym__expression] = STATE(2723), + [sym_block] = STATE(2723), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2723), + [sym_atom] = STATE(2723), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2723), + [sym_charlist] = STATE(2723), + [sym_sigil] = STATE(2723), + [sym_unary_operator] = STATE(2723), + [sym_binary_operator] = STATE(2723), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2723), + [sym_list] = STATE(2723), + [sym_tuple] = STATE(2723), + [sym_bitstring] = STATE(2723), + [sym_map] = STATE(2723), + [sym_boolean] = STATE(2723), + [sym_nil] = STATE(2723), + [sym_call] = STATE(2723), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2723), + [sym_anonymous_function] = STATE(2723), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2390), + [sym_float] = ACTIONS(2390), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2390), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [634] = { + [sym__expression] = STATE(2721), + [sym_block] = STATE(2721), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2721), + [sym_atom] = STATE(2721), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2721), + [sym_charlist] = STATE(2721), + [sym_sigil] = STATE(2721), + [sym_unary_operator] = STATE(2721), + [sym_binary_operator] = STATE(2721), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2721), + [sym_list] = STATE(2721), + [sym_tuple] = STATE(2721), + [sym_bitstring] = STATE(2721), + [sym_map] = STATE(2721), + [sym_boolean] = STATE(2721), + [sym_nil] = STATE(2721), + [sym_call] = STATE(2721), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2721), + [sym_anonymous_function] = STATE(2721), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2392), + [sym_float] = ACTIONS(2392), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2392), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [635] = { + [sym__expression] = STATE(2719), + [sym_block] = STATE(2719), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2719), + [sym_atom] = STATE(2719), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2719), + [sym_charlist] = STATE(2719), + [sym_sigil] = STATE(2719), + [sym_unary_operator] = STATE(2719), + [sym_binary_operator] = STATE(2719), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2719), + [sym_list] = STATE(2719), + [sym_tuple] = STATE(2719), + [sym_bitstring] = STATE(2719), + [sym_map] = STATE(2719), + [sym_boolean] = STATE(2719), + [sym_nil] = STATE(2719), + [sym_call] = STATE(2719), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2719), + [sym_anonymous_function] = STATE(2719), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2394), + [sym_float] = ACTIONS(2394), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2394), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [636] = { + [sym__expression] = STATE(2716), + [sym_block] = STATE(2716), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2716), + [sym_atom] = STATE(2716), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2716), + [sym_charlist] = STATE(2716), + [sym_sigil] = STATE(2716), + [sym_unary_operator] = STATE(2716), + [sym_binary_operator] = STATE(2716), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2716), + [sym_list] = STATE(2716), + [sym_tuple] = STATE(2716), + [sym_bitstring] = STATE(2716), + [sym_map] = STATE(2716), + [sym_boolean] = STATE(2716), + [sym_nil] = STATE(2716), + [sym_call] = STATE(2716), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2716), + [sym_anonymous_function] = STATE(2716), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2396), + [sym_float] = ACTIONS(2396), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2396), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [637] = { + [sym__expression] = STATE(2704), + [sym_block] = STATE(2704), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2704), + [sym_atom] = STATE(2704), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2704), + [sym_charlist] = STATE(2704), + [sym_sigil] = STATE(2704), + [sym_unary_operator] = STATE(2704), + [sym_binary_operator] = STATE(2704), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2704), + [sym_list] = STATE(2704), + [sym_tuple] = STATE(2704), + [sym_bitstring] = STATE(2704), + [sym_map] = STATE(2704), + [sym_boolean] = STATE(2704), + [sym_nil] = STATE(2704), + [sym_call] = STATE(2704), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2704), + [sym_anonymous_function] = STATE(2704), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2398), + [sym_float] = ACTIONS(2398), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2398), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [638] = { + [sym__expression] = STATE(2700), + [sym_block] = STATE(2700), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2700), + [sym_atom] = STATE(2700), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2700), + [sym_charlist] = STATE(2700), + [sym_sigil] = STATE(2700), + [sym_unary_operator] = STATE(2700), + [sym_binary_operator] = STATE(2700), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2700), + [sym_list] = STATE(2700), + [sym_tuple] = STATE(2700), + [sym_bitstring] = STATE(2700), + [sym_map] = STATE(2700), + [sym_boolean] = STATE(2700), + [sym_nil] = STATE(2700), + [sym_call] = STATE(2700), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2700), + [sym_anonymous_function] = STATE(2700), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2400), + [sym_float] = ACTIONS(2400), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2400), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [639] = { + [sym__expression] = STATE(3398), + [sym_block] = STATE(3398), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3398), + [sym_atom] = STATE(3398), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3398), + [sym_charlist] = STATE(3398), + [sym_sigil] = STATE(3398), + [sym_unary_operator] = STATE(3398), + [sym_binary_operator] = STATE(3398), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3398), + [sym_list] = STATE(3398), + [sym_tuple] = STATE(3398), + [sym_bitstring] = STATE(3398), + [sym_map] = STATE(3398), + [sym_boolean] = STATE(3398), + [sym_nil] = STATE(3398), + [sym_call] = STATE(3398), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3398), + [sym_anonymous_function] = STATE(3398), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2402), + [sym_float] = ACTIONS(2402), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2402), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [640] = { + [sym__expression] = STATE(2777), + [sym_block] = STATE(2777), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2777), + [sym_atom] = STATE(2777), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2777), + [sym_charlist] = STATE(2777), + [sym_sigil] = STATE(2777), + [sym_unary_operator] = STATE(2777), + [sym_binary_operator] = STATE(2777), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2777), + [sym_list] = STATE(2777), + [sym_tuple] = STATE(2777), + [sym_bitstring] = STATE(2777), + [sym_map] = STATE(2777), + [sym_boolean] = STATE(2777), + [sym_nil] = STATE(2777), + [sym_call] = STATE(2777), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2777), + [sym_anonymous_function] = STATE(2777), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2404), + [sym_float] = ACTIONS(2404), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2404), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [641] = { + [sym__expression] = STATE(3040), + [sym_block] = STATE(3040), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3040), + [sym_atom] = STATE(3040), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3040), + [sym_charlist] = STATE(3040), + [sym_sigil] = STATE(3040), + [sym_unary_operator] = STATE(3040), + [sym_binary_operator] = STATE(3040), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3040), + [sym_list] = STATE(3040), + [sym_tuple] = STATE(3040), + [sym_bitstring] = STATE(3040), + [sym_map] = STATE(3040), + [sym_boolean] = STATE(3040), + [sym_nil] = STATE(3040), + [sym_call] = STATE(3040), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3040), + [sym_anonymous_function] = STATE(3040), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2406), + [sym_float] = ACTIONS(2406), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2406), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [642] = { + [sym__expression] = STATE(2671), + [sym_block] = STATE(2671), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2671), + [sym_atom] = STATE(2671), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2671), + [sym_charlist] = STATE(2671), + [sym_sigil] = STATE(2671), + [sym_unary_operator] = STATE(2671), + [sym_binary_operator] = STATE(2671), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2671), + [sym_list] = STATE(2671), + [sym_tuple] = STATE(2671), + [sym_bitstring] = STATE(2671), + [sym_map] = STATE(2671), + [sym_boolean] = STATE(2671), + [sym_nil] = STATE(2671), + [sym_call] = STATE(2671), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2671), + [sym_anonymous_function] = STATE(2671), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2408), + [sym_float] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2408), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [643] = { + [sym__expression] = STATE(3035), + [sym_block] = STATE(3035), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3035), + [sym_atom] = STATE(3035), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3035), + [sym_charlist] = STATE(3035), + [sym_sigil] = STATE(3035), + [sym_unary_operator] = STATE(3035), + [sym_binary_operator] = STATE(3035), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3035), + [sym_list] = STATE(3035), + [sym_tuple] = STATE(3035), + [sym_bitstring] = STATE(3035), + [sym_map] = STATE(3035), + [sym_boolean] = STATE(3035), + [sym_nil] = STATE(3035), + [sym_call] = STATE(3035), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3035), + [sym_anonymous_function] = STATE(3035), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2410), + [sym_float] = ACTIONS(2410), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2410), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [644] = { + [sym__expression] = STATE(3881), + [sym_block] = STATE(3881), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3881), + [sym_atom] = STATE(3881), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3881), + [sym_charlist] = STATE(3881), + [sym_sigil] = STATE(3881), + [sym_unary_operator] = STATE(3881), + [sym_binary_operator] = STATE(3881), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3881), + [sym_list] = STATE(3881), + [sym_tuple] = STATE(3881), + [sym_bitstring] = STATE(3881), + [sym_map] = STATE(3881), + [sym_boolean] = STATE(3881), + [sym_nil] = STATE(3881), + [sym_call] = STATE(3881), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3881), + [sym_anonymous_function] = STATE(3881), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2412), + [sym_float] = ACTIONS(2412), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2412), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [645] = { + [sym__expression] = STATE(2795), + [sym_block] = STATE(2795), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2795), + [sym_atom] = STATE(2795), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2795), + [sym_charlist] = STATE(2795), + [sym_sigil] = STATE(2795), + [sym_unary_operator] = STATE(2795), + [sym_binary_operator] = STATE(2795), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2795), + [sym_list] = STATE(2795), + [sym_tuple] = STATE(2795), + [sym_bitstring] = STATE(2795), + [sym_map] = STATE(2795), + [sym_boolean] = STATE(2795), + [sym_nil] = STATE(2795), + [sym_call] = STATE(2795), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2795), + [sym_anonymous_function] = STATE(2795), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2414), + [sym_float] = ACTIONS(2414), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2414), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [646] = { + [sym__expression] = STATE(3882), + [sym_block] = STATE(3882), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3882), + [sym_atom] = STATE(3882), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3882), + [sym_charlist] = STATE(3882), + [sym_sigil] = STATE(3882), + [sym_unary_operator] = STATE(3882), + [sym_binary_operator] = STATE(3882), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3882), + [sym_list] = STATE(3882), + [sym_tuple] = STATE(3882), + [sym_bitstring] = STATE(3882), + [sym_map] = STATE(3882), + [sym_boolean] = STATE(3882), + [sym_nil] = STATE(3882), + [sym_call] = STATE(3882), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3882), + [sym_anonymous_function] = STATE(3882), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2416), + [sym_float] = ACTIONS(2416), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2416), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [647] = { + [sym__expression] = STATE(3883), + [sym_block] = STATE(3883), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3883), + [sym_atom] = STATE(3883), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3883), + [sym_charlist] = STATE(3883), + [sym_sigil] = STATE(3883), + [sym_unary_operator] = STATE(3883), + [sym_binary_operator] = STATE(3883), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3883), + [sym_list] = STATE(3883), + [sym_tuple] = STATE(3883), + [sym_bitstring] = STATE(3883), + [sym_map] = STATE(3883), + [sym_boolean] = STATE(3883), + [sym_nil] = STATE(3883), + [sym_call] = STATE(3883), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3883), + [sym_anonymous_function] = STATE(3883), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2418), + [sym_float] = ACTIONS(2418), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2418), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [648] = { + [sym__expression] = STATE(3191), + [sym_block] = STATE(3191), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3191), + [sym_atom] = STATE(3191), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3191), + [sym_charlist] = STATE(3191), + [sym_sigil] = STATE(3191), + [sym_unary_operator] = STATE(3191), + [sym_binary_operator] = STATE(3191), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3191), + [sym_list] = STATE(3191), + [sym_tuple] = STATE(3191), + [sym_bitstring] = STATE(3191), + [sym_map] = STATE(3191), + [sym_boolean] = STATE(3191), + [sym_nil] = STATE(3191), + [sym_call] = STATE(3191), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3191), + [sym_anonymous_function] = STATE(3191), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2420), + [sym_float] = ACTIONS(2420), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2420), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [649] = { + [sym__expression] = STATE(2691), + [sym_block] = STATE(2691), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2691), + [sym_atom] = STATE(2691), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2691), + [sym_charlist] = STATE(2691), + [sym_sigil] = STATE(2691), + [sym_unary_operator] = STATE(2691), + [sym_binary_operator] = STATE(2691), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2691), + [sym_list] = STATE(2691), + [sym_tuple] = STATE(2691), + [sym_bitstring] = STATE(2691), + [sym_map] = STATE(2691), + [sym_boolean] = STATE(2691), + [sym_nil] = STATE(2691), + [sym_call] = STATE(2691), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2691), + [sym_anonymous_function] = STATE(2691), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2422), + [sym_float] = ACTIONS(2422), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2422), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [650] = { + [sym__expression] = STATE(3888), + [sym_block] = STATE(3888), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3888), + [sym_atom] = STATE(3888), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3888), + [sym_charlist] = STATE(3888), + [sym_sigil] = STATE(3888), + [sym_unary_operator] = STATE(3888), + [sym_binary_operator] = STATE(3888), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3888), + [sym_list] = STATE(3888), + [sym_tuple] = STATE(3888), + [sym_bitstring] = STATE(3888), + [sym_map] = STATE(3888), + [sym_boolean] = STATE(3888), + [sym_nil] = STATE(3888), + [sym_call] = STATE(3888), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3888), + [sym_anonymous_function] = STATE(3888), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2424), + [sym_float] = ACTIONS(2424), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2424), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [651] = { + [sym__expression] = STATE(2692), + [sym_block] = STATE(2692), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2692), + [sym_atom] = STATE(2692), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2692), + [sym_charlist] = STATE(2692), + [sym_sigil] = STATE(2692), + [sym_unary_operator] = STATE(2692), + [sym_binary_operator] = STATE(2692), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2692), + [sym_list] = STATE(2692), + [sym_tuple] = STATE(2692), + [sym_bitstring] = STATE(2692), + [sym_map] = STATE(2692), + [sym_boolean] = STATE(2692), + [sym_nil] = STATE(2692), + [sym_call] = STATE(2692), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2692), + [sym_anonymous_function] = STATE(2692), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2426), + [sym_float] = ACTIONS(2426), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2426), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [652] = { + [sym__expression] = STATE(3889), + [sym_block] = STATE(3889), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3889), + [sym_atom] = STATE(3889), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3889), + [sym_charlist] = STATE(3889), + [sym_sigil] = STATE(3889), + [sym_unary_operator] = STATE(3889), + [sym_binary_operator] = STATE(3889), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3889), + [sym_list] = STATE(3889), + [sym_tuple] = STATE(3889), + [sym_bitstring] = STATE(3889), + [sym_map] = STATE(3889), + [sym_boolean] = STATE(3889), + [sym_nil] = STATE(3889), + [sym_call] = STATE(3889), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3889), + [sym_anonymous_function] = STATE(3889), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2428), + [sym_float] = ACTIONS(2428), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2428), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [653] = { + [sym__expression] = STATE(3454), + [sym_block] = STATE(3454), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3454), + [sym_atom] = STATE(3454), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3454), + [sym_charlist] = STATE(3454), + [sym_sigil] = STATE(3454), + [sym_unary_operator] = STATE(3454), + [sym_binary_operator] = STATE(3454), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3454), + [sym_list] = STATE(3454), + [sym_tuple] = STATE(3454), + [sym_bitstring] = STATE(3454), + [sym_map] = STATE(3454), + [sym_boolean] = STATE(3454), + [sym_nil] = STATE(3454), + [sym_call] = STATE(3454), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3454), + [sym_anonymous_function] = STATE(3454), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2430), + [sym_float] = ACTIONS(2430), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2430), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [654] = { + [sym__expression] = STATE(3432), + [sym_block] = STATE(3432), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3432), + [sym_atom] = STATE(3432), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3432), + [sym_charlist] = STATE(3432), + [sym_sigil] = STATE(3432), + [sym_unary_operator] = STATE(3432), + [sym_binary_operator] = STATE(3432), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3432), + [sym_list] = STATE(3432), + [sym_tuple] = STATE(3432), + [sym_bitstring] = STATE(3432), + [sym_map] = STATE(3432), + [sym_boolean] = STATE(3432), + [sym_nil] = STATE(3432), + [sym_call] = STATE(3432), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3432), + [sym_anonymous_function] = STATE(3432), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2432), + [sym_float] = ACTIONS(2432), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2432), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [655] = { + [sym__expression] = STATE(2963), + [sym_block] = STATE(2963), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(2963), + [sym_atom] = STATE(2963), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(2963), + [sym_charlist] = STATE(2963), + [sym_sigil] = STATE(2963), + [sym_unary_operator] = STATE(2963), + [sym_binary_operator] = STATE(2963), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(2963), + [sym_list] = STATE(2963), + [sym_tuple] = STATE(2963), + [sym_bitstring] = STATE(2963), + [sym_map] = STATE(2963), + [sym_boolean] = STATE(2963), + [sym_nil] = STATE(2963), + [sym_call] = STATE(2963), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(2963), + [sym_anonymous_function] = STATE(2963), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2434), + [sym_float] = ACTIONS(2434), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2434), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [656] = { + [sym__expression] = STATE(2028), + [sym_block] = STATE(2028), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2028), + [sym_atom] = STATE(2028), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2028), + [sym_charlist] = STATE(2028), + [sym_sigil] = STATE(2028), + [sym_unary_operator] = STATE(2028), + [sym_binary_operator] = STATE(2028), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2028), + [sym_list] = STATE(2028), + [sym_tuple] = STATE(2028), + [sym_bitstring] = STATE(2028), + [sym_map] = STATE(2028), + [sym_boolean] = STATE(2028), + [sym_nil] = STATE(2028), + [sym_call] = STATE(2028), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2028), + [sym_anonymous_function] = STATE(2028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2436), + [sym_float] = ACTIONS(2436), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2436), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [657] = { + [sym__expression] = STATE(3893), + [sym_block] = STATE(3893), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3893), + [sym_atom] = STATE(3893), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3893), + [sym_charlist] = STATE(3893), + [sym_sigil] = STATE(3893), + [sym_unary_operator] = STATE(3893), + [sym_binary_operator] = STATE(3893), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3893), + [sym_list] = STATE(3893), + [sym_tuple] = STATE(3893), + [sym_bitstring] = STATE(3893), + [sym_map] = STATE(3893), + [sym_boolean] = STATE(3893), + [sym_nil] = STATE(3893), + [sym_call] = STATE(3893), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3893), + [sym_anonymous_function] = STATE(3893), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2438), + [sym_float] = ACTIONS(2438), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2438), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [658] = { + [sym__expression] = STATE(2029), + [sym_block] = STATE(2029), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2029), + [sym_atom] = STATE(2029), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2029), + [sym_charlist] = STATE(2029), + [sym_sigil] = STATE(2029), + [sym_unary_operator] = STATE(2029), + [sym_binary_operator] = STATE(2029), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2029), + [sym_list] = STATE(2029), + [sym_tuple] = STATE(2029), + [sym_bitstring] = STATE(2029), + [sym_map] = STATE(2029), + [sym_boolean] = STATE(2029), + [sym_nil] = STATE(2029), + [sym_call] = STATE(2029), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2029), + [sym_anonymous_function] = STATE(2029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2440), + [sym_float] = ACTIONS(2440), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [659] = { + [sym__expression] = STATE(3034), + [sym_block] = STATE(3034), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3034), + [sym_atom] = STATE(3034), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3034), + [sym_charlist] = STATE(3034), + [sym_sigil] = STATE(3034), + [sym_unary_operator] = STATE(3034), + [sym_binary_operator] = STATE(3034), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3034), + [sym_list] = STATE(3034), + [sym_tuple] = STATE(3034), + [sym_bitstring] = STATE(3034), + [sym_map] = STATE(3034), + [sym_boolean] = STATE(3034), + [sym_nil] = STATE(3034), + [sym_call] = STATE(3034), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3034), + [sym_anonymous_function] = STATE(3034), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2442), + [sym_float] = ACTIONS(2442), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2442), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [660] = { + [sym__expression] = STATE(3430), + [sym_block] = STATE(3430), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3430), + [sym_atom] = STATE(3430), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3430), + [sym_charlist] = STATE(3430), + [sym_sigil] = STATE(3430), + [sym_unary_operator] = STATE(3430), + [sym_binary_operator] = STATE(3430), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3430), + [sym_list] = STATE(3430), + [sym_tuple] = STATE(3430), + [sym_bitstring] = STATE(3430), + [sym_map] = STATE(3430), + [sym_boolean] = STATE(3430), + [sym_nil] = STATE(3430), + [sym_call] = STATE(3430), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3430), + [sym_anonymous_function] = STATE(3430), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2444), + [sym_float] = ACTIONS(2444), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2444), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [661] = { + [sym__expression] = STATE(3715), + [sym_block] = STATE(3715), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3715), + [sym_atom] = STATE(3715), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3715), + [sym_charlist] = STATE(3715), + [sym_sigil] = STATE(3715), + [sym_unary_operator] = STATE(3715), + [sym_binary_operator] = STATE(3715), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3715), + [sym_list] = STATE(3715), + [sym_tuple] = STATE(3715), + [sym_bitstring] = STATE(3715), + [sym_map] = STATE(3715), + [sym_boolean] = STATE(3715), + [sym_nil] = STATE(3715), + [sym_call] = STATE(3715), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3715), + [sym_anonymous_function] = STATE(3715), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2446), + [sym_float] = ACTIONS(2446), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2446), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [662] = { + [sym__expression] = STATE(3828), + [sym_block] = STATE(3828), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3828), + [sym_atom] = STATE(3828), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3828), + [sym_charlist] = STATE(3828), + [sym_sigil] = STATE(3828), + [sym_unary_operator] = STATE(3828), + [sym_binary_operator] = STATE(3828), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3828), + [sym_list] = STATE(3828), + [sym_tuple] = STATE(3828), + [sym_bitstring] = STATE(3828), + [sym_map] = STATE(3828), + [sym_boolean] = STATE(3828), + [sym_nil] = STATE(3828), + [sym_call] = STATE(3828), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3828), + [sym_anonymous_function] = STATE(3828), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2036), + [sym_float] = ACTIONS(2036), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2036), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [663] = { + [sym__expression] = STATE(2567), + [sym_block] = STATE(2567), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2567), + [sym_atom] = STATE(2567), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2567), + [sym_charlist] = STATE(2567), + [sym_sigil] = STATE(2567), + [sym_unary_operator] = STATE(2567), + [sym_binary_operator] = STATE(2567), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2567), + [sym_list] = STATE(2567), + [sym_tuple] = STATE(2567), + [sym_bitstring] = STATE(2567), + [sym_map] = STATE(2567), + [sym_boolean] = STATE(2567), + [sym_nil] = STATE(2567), + [sym_call] = STATE(2567), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2567), + [sym_anonymous_function] = STATE(2567), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2448), + [sym_float] = ACTIONS(2448), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2448), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [664] = { + [sym__expression] = STATE(2565), + [sym_block] = STATE(2565), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2565), + [sym_atom] = STATE(2565), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2565), + [sym_charlist] = STATE(2565), + [sym_sigil] = STATE(2565), + [sym_unary_operator] = STATE(2565), + [sym_binary_operator] = STATE(2565), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2565), + [sym_list] = STATE(2565), + [sym_tuple] = STATE(2565), + [sym_bitstring] = STATE(2565), + [sym_map] = STATE(2565), + [sym_boolean] = STATE(2565), + [sym_nil] = STATE(2565), + [sym_call] = STATE(2565), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2565), + [sym_anonymous_function] = STATE(2565), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2450), + [sym_float] = ACTIONS(2450), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2450), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [665] = { + [sym__expression] = STATE(2564), + [sym_block] = STATE(2564), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2564), + [sym_atom] = STATE(2564), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2564), + [sym_charlist] = STATE(2564), + [sym_sigil] = STATE(2564), + [sym_unary_operator] = STATE(2564), + [sym_binary_operator] = STATE(2564), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2564), + [sym_list] = STATE(2564), + [sym_tuple] = STATE(2564), + [sym_bitstring] = STATE(2564), + [sym_map] = STATE(2564), + [sym_boolean] = STATE(2564), + [sym_nil] = STATE(2564), + [sym_call] = STATE(2564), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2564), + [sym_anonymous_function] = STATE(2564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2452), + [sym_float] = ACTIONS(2452), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2452), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [666] = { + [sym__expression] = STATE(2563), + [sym_block] = STATE(2563), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2563), + [sym_atom] = STATE(2563), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2563), + [sym_charlist] = STATE(2563), + [sym_sigil] = STATE(2563), + [sym_unary_operator] = STATE(2563), + [sym_binary_operator] = STATE(2563), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2563), + [sym_list] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_bitstring] = STATE(2563), + [sym_map] = STATE(2563), + [sym_boolean] = STATE(2563), + [sym_nil] = STATE(2563), + [sym_call] = STATE(2563), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2563), + [sym_anonymous_function] = STATE(2563), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2454), + [sym_float] = ACTIONS(2454), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2454), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [667] = { + [sym__expression] = STATE(2562), + [sym_block] = STATE(2562), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2562), + [sym_atom] = STATE(2562), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2562), + [sym_charlist] = STATE(2562), + [sym_sigil] = STATE(2562), + [sym_unary_operator] = STATE(2562), + [sym_binary_operator] = STATE(2562), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2562), + [sym_list] = STATE(2562), + [sym_tuple] = STATE(2562), + [sym_bitstring] = STATE(2562), + [sym_map] = STATE(2562), + [sym_boolean] = STATE(2562), + [sym_nil] = STATE(2562), + [sym_call] = STATE(2562), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2562), + [sym_anonymous_function] = STATE(2562), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2456), + [sym_float] = ACTIONS(2456), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2456), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [668] = { + [sym__expression] = STATE(2561), + [sym_block] = STATE(2561), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2561), + [sym_atom] = STATE(2561), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2561), + [sym_charlist] = STATE(2561), + [sym_sigil] = STATE(2561), + [sym_unary_operator] = STATE(2561), + [sym_binary_operator] = STATE(2561), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2561), + [sym_list] = STATE(2561), + [sym_tuple] = STATE(2561), + [sym_bitstring] = STATE(2561), + [sym_map] = STATE(2561), + [sym_boolean] = STATE(2561), + [sym_nil] = STATE(2561), + [sym_call] = STATE(2561), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2561), + [sym_anonymous_function] = STATE(2561), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2458), + [sym_float] = ACTIONS(2458), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2458), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [669] = { + [sym__expression] = STATE(2559), + [sym_block] = STATE(2559), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2559), + [sym_atom] = STATE(2559), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2559), + [sym_charlist] = STATE(2559), + [sym_sigil] = STATE(2559), + [sym_unary_operator] = STATE(2559), + [sym_binary_operator] = STATE(2559), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2559), + [sym_list] = STATE(2559), + [sym_tuple] = STATE(2559), + [sym_bitstring] = STATE(2559), + [sym_map] = STATE(2559), + [sym_boolean] = STATE(2559), + [sym_nil] = STATE(2559), + [sym_call] = STATE(2559), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2559), + [sym_anonymous_function] = STATE(2559), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2460), + [sym_float] = ACTIONS(2460), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2460), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [670] = { + [sym__expression] = STATE(2558), + [sym_block] = STATE(2558), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2558), + [sym_atom] = STATE(2558), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2558), + [sym_charlist] = STATE(2558), + [sym_sigil] = STATE(2558), + [sym_unary_operator] = STATE(2558), + [sym_binary_operator] = STATE(2558), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2558), + [sym_list] = STATE(2558), + [sym_tuple] = STATE(2558), + [sym_bitstring] = STATE(2558), + [sym_map] = STATE(2558), + [sym_boolean] = STATE(2558), + [sym_nil] = STATE(2558), + [sym_call] = STATE(2558), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2558), + [sym_anonymous_function] = STATE(2558), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2462), + [sym_float] = ACTIONS(2462), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2462), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [671] = { + [sym__expression] = STATE(2556), + [sym_block] = STATE(2556), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2556), + [sym_atom] = STATE(2556), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2556), + [sym_charlist] = STATE(2556), + [sym_sigil] = STATE(2556), + [sym_unary_operator] = STATE(2556), + [sym_binary_operator] = STATE(2556), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2556), + [sym_list] = STATE(2556), + [sym_tuple] = STATE(2556), + [sym_bitstring] = STATE(2556), + [sym_map] = STATE(2556), + [sym_boolean] = STATE(2556), + [sym_nil] = STATE(2556), + [sym_call] = STATE(2556), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2556), + [sym_anonymous_function] = STATE(2556), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2464), + [sym_float] = ACTIONS(2464), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2464), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [672] = { + [sym__expression] = STATE(2555), + [sym_block] = STATE(2555), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2555), + [sym_atom] = STATE(2555), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2555), + [sym_charlist] = STATE(2555), + [sym_sigil] = STATE(2555), + [sym_unary_operator] = STATE(2555), + [sym_binary_operator] = STATE(2555), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2555), + [sym_list] = STATE(2555), + [sym_tuple] = STATE(2555), + [sym_bitstring] = STATE(2555), + [sym_map] = STATE(2555), + [sym_boolean] = STATE(2555), + [sym_nil] = STATE(2555), + [sym_call] = STATE(2555), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2555), + [sym_anonymous_function] = STATE(2555), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2466), + [sym_float] = ACTIONS(2466), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2466), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [673] = { + [sym__expression] = STATE(2129), + [sym_block] = STATE(2129), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2129), + [sym_atom] = STATE(2129), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2129), + [sym_charlist] = STATE(2129), + [sym_sigil] = STATE(2129), + [sym_unary_operator] = STATE(2129), + [sym_binary_operator] = STATE(2129), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2129), + [sym_list] = STATE(2129), + [sym_tuple] = STATE(2129), + [sym_bitstring] = STATE(2129), + [sym_map] = STATE(2129), + [sym_boolean] = STATE(2129), + [sym_nil] = STATE(2129), + [sym_call] = STATE(2129), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2129), + [sym_anonymous_function] = STATE(2129), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2468), + [sym_float] = ACTIONS(2468), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2468), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [674] = { + [sym__expression] = STATE(2553), + [sym_block] = STATE(2553), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2553), + [sym_atom] = STATE(2553), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2553), + [sym_charlist] = STATE(2553), + [sym_sigil] = STATE(2553), + [sym_unary_operator] = STATE(2553), + [sym_binary_operator] = STATE(2553), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2553), + [sym_list] = STATE(2553), + [sym_tuple] = STATE(2553), + [sym_bitstring] = STATE(2553), + [sym_map] = STATE(2553), + [sym_boolean] = STATE(2553), + [sym_nil] = STATE(2553), + [sym_call] = STATE(2553), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2553), + [sym_anonymous_function] = STATE(2553), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2470), + [sym_float] = ACTIONS(2470), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2470), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [675] = { + [sym__expression] = STATE(2552), + [sym_block] = STATE(2552), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2552), + [sym_atom] = STATE(2552), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2552), + [sym_charlist] = STATE(2552), + [sym_sigil] = STATE(2552), + [sym_unary_operator] = STATE(2552), + [sym_binary_operator] = STATE(2552), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2552), + [sym_list] = STATE(2552), + [sym_tuple] = STATE(2552), + [sym_bitstring] = STATE(2552), + [sym_map] = STATE(2552), + [sym_boolean] = STATE(2552), + [sym_nil] = STATE(2552), + [sym_call] = STATE(2552), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2552), + [sym_anonymous_function] = STATE(2552), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2472), + [sym_float] = ACTIONS(2472), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2472), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [676] = { + [sym__expression] = STATE(2551), + [sym_block] = STATE(2551), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2551), + [sym_atom] = STATE(2551), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2551), + [sym_charlist] = STATE(2551), + [sym_sigil] = STATE(2551), + [sym_unary_operator] = STATE(2551), + [sym_binary_operator] = STATE(2551), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2551), + [sym_list] = STATE(2551), + [sym_tuple] = STATE(2551), + [sym_bitstring] = STATE(2551), + [sym_map] = STATE(2551), + [sym_boolean] = STATE(2551), + [sym_nil] = STATE(2551), + [sym_call] = STATE(2551), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2551), + [sym_anonymous_function] = STATE(2551), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2474), + [sym_float] = ACTIONS(2474), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2474), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [677] = { + [sym__expression] = STATE(3603), + [sym_block] = STATE(3603), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3603), + [sym_atom] = STATE(3603), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3603), + [sym_charlist] = STATE(3603), + [sym_sigil] = STATE(3603), + [sym_unary_operator] = STATE(3603), + [sym_binary_operator] = STATE(3603), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3603), + [sym_list] = STATE(3603), + [sym_tuple] = STATE(3603), + [sym_bitstring] = STATE(3603), + [sym_map] = STATE(3603), + [sym_boolean] = STATE(3603), + [sym_nil] = STATE(3603), + [sym_call] = STATE(3603), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3603), + [sym_anonymous_function] = STATE(3603), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2476), + [sym_float] = ACTIONS(2476), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2476), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [678] = { + [sym__expression] = STATE(2549), + [sym_block] = STATE(2549), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2549), + [sym_atom] = STATE(2549), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2549), + [sym_charlist] = STATE(2549), + [sym_sigil] = STATE(2549), + [sym_unary_operator] = STATE(2549), + [sym_binary_operator] = STATE(2549), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2549), + [sym_list] = STATE(2549), + [sym_tuple] = STATE(2549), + [sym_bitstring] = STATE(2549), + [sym_map] = STATE(2549), + [sym_boolean] = STATE(2549), + [sym_nil] = STATE(2549), + [sym_call] = STATE(2549), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2549), + [sym_anonymous_function] = STATE(2549), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2478), + [sym_float] = ACTIONS(2478), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2478), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [679] = { + [sym__expression] = STATE(2775), + [sym_block] = STATE(2775), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2775), + [sym_atom] = STATE(2775), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2775), + [sym_charlist] = STATE(2775), + [sym_sigil] = STATE(2775), + [sym_unary_operator] = STATE(2775), + [sym_binary_operator] = STATE(2775), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2775), + [sym_list] = STATE(2775), + [sym_tuple] = STATE(2775), + [sym_bitstring] = STATE(2775), + [sym_map] = STATE(2775), + [sym_boolean] = STATE(2775), + [sym_nil] = STATE(2775), + [sym_call] = STATE(2775), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2775), + [sym_anonymous_function] = STATE(2775), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1459), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [680] = { + [sym__expression] = STATE(2548), + [sym_block] = STATE(2548), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2548), + [sym_atom] = STATE(2548), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2548), + [sym_charlist] = STATE(2548), + [sym_sigil] = STATE(2548), + [sym_unary_operator] = STATE(2548), + [sym_binary_operator] = STATE(2548), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2548), + [sym_list] = STATE(2548), + [sym_tuple] = STATE(2548), + [sym_bitstring] = STATE(2548), + [sym_map] = STATE(2548), + [sym_boolean] = STATE(2548), + [sym_nil] = STATE(2548), + [sym_call] = STATE(2548), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2548), + [sym_anonymous_function] = STATE(2548), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2480), + [sym_float] = ACTIONS(2480), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2480), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [681] = { + [sym__expression] = STATE(3400), + [sym_block] = STATE(3400), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3400), + [sym_atom] = STATE(3400), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3400), + [sym_charlist] = STATE(3400), + [sym_sigil] = STATE(3400), + [sym_unary_operator] = STATE(3400), + [sym_binary_operator] = STATE(3400), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3400), + [sym_list] = STATE(3400), + [sym_tuple] = STATE(3400), + [sym_bitstring] = STATE(3400), + [sym_map] = STATE(3400), + [sym_boolean] = STATE(3400), + [sym_nil] = STATE(3400), + [sym_call] = STATE(3400), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3400), + [sym_anonymous_function] = STATE(3400), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2482), + [sym_float] = ACTIONS(2482), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2482), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [682] = { + [sym__expression] = STATE(3399), + [sym_block] = STATE(3399), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3399), + [sym_atom] = STATE(3399), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3399), + [sym_charlist] = STATE(3399), + [sym_sigil] = STATE(3399), + [sym_unary_operator] = STATE(3399), + [sym_binary_operator] = STATE(3399), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3399), + [sym_list] = STATE(3399), + [sym_tuple] = STATE(3399), + [sym_bitstring] = STATE(3399), + [sym_map] = STATE(3399), + [sym_boolean] = STATE(3399), + [sym_nil] = STATE(3399), + [sym_call] = STATE(3399), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3399), + [sym_anonymous_function] = STATE(3399), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2484), + [sym_float] = ACTIONS(2484), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2484), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [683] = { + [sym__expression] = STATE(2707), + [sym_block] = STATE(2707), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2707), + [sym_atom] = STATE(2707), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2707), + [sym_charlist] = STATE(2707), + [sym_sigil] = STATE(2707), + [sym_unary_operator] = STATE(2707), + [sym_binary_operator] = STATE(2707), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2707), + [sym_list] = STATE(2707), + [sym_tuple] = STATE(2707), + [sym_bitstring] = STATE(2707), + [sym_map] = STATE(2707), + [sym_boolean] = STATE(2707), + [sym_nil] = STATE(2707), + [sym_call] = STATE(2707), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2707), + [sym_anonymous_function] = STATE(2707), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2320), + [sym_float] = ACTIONS(2320), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2320), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [684] = { + [sym__expression] = STATE(2706), + [sym_block] = STATE(2706), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2706), + [sym_atom] = STATE(2706), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2706), + [sym_charlist] = STATE(2706), + [sym_sigil] = STATE(2706), + [sym_unary_operator] = STATE(2706), + [sym_binary_operator] = STATE(2706), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2706), + [sym_list] = STATE(2706), + [sym_tuple] = STATE(2706), + [sym_bitstring] = STATE(2706), + [sym_map] = STATE(2706), + [sym_boolean] = STATE(2706), + [sym_nil] = STATE(2706), + [sym_call] = STATE(2706), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2706), + [sym_anonymous_function] = STATE(2706), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2314), + [sym_float] = ACTIONS(2314), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2314), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [685] = { + [sym__expression] = STATE(2029), + [sym_block] = STATE(2029), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2029), + [sym_atom] = STATE(2029), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2029), + [sym_charlist] = STATE(2029), + [sym_sigil] = STATE(2029), + [sym_unary_operator] = STATE(2029), + [sym_binary_operator] = STATE(2029), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2029), + [sym_list] = STATE(2029), + [sym_tuple] = STATE(2029), + [sym_bitstring] = STATE(2029), + [sym_map] = STATE(2029), + [sym_boolean] = STATE(2029), + [sym_nil] = STATE(2029), + [sym_call] = STATE(2029), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2029), + [sym_anonymous_function] = STATE(2029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2440), + [sym_float] = ACTIONS(2440), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [686] = { + [sym__expression] = STATE(1546), + [sym_block] = STATE(1546), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1546), + [sym_atom] = STATE(1546), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1546), + [sym_charlist] = STATE(1546), + [sym_sigil] = STATE(1546), + [sym_unary_operator] = STATE(1546), + [sym_binary_operator] = STATE(1546), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1546), + [sym_list] = STATE(1546), + [sym_tuple] = STATE(1546), + [sym_bitstring] = STATE(1546), + [sym_map] = STATE(1546), + [sym_boolean] = STATE(1546), + [sym_nil] = STATE(1546), + [sym_call] = STATE(1546), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1546), + [sym_anonymous_function] = STATE(1546), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2486), + [sym_float] = ACTIONS(2486), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2486), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [687] = { + [sym__expression] = STATE(1545), + [sym_block] = STATE(1545), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1545), + [sym_atom] = STATE(1545), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1545), + [sym_charlist] = STATE(1545), + [sym_sigil] = STATE(1545), + [sym_unary_operator] = STATE(1545), + [sym_binary_operator] = STATE(1545), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1545), + [sym_list] = STATE(1545), + [sym_tuple] = STATE(1545), + [sym_bitstring] = STATE(1545), + [sym_map] = STATE(1545), + [sym_boolean] = STATE(1545), + [sym_nil] = STATE(1545), + [sym_call] = STATE(1545), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1545), + [sym_anonymous_function] = STATE(1545), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2488), + [sym_float] = ACTIONS(2488), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2488), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [688] = { + [sym__expression] = STATE(2139), + [sym_block] = STATE(2139), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2139), + [sym_atom] = STATE(2139), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2139), + [sym_charlist] = STATE(2139), + [sym_sigil] = STATE(2139), + [sym_unary_operator] = STATE(2139), + [sym_binary_operator] = STATE(2139), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2139), + [sym_list] = STATE(2139), + [sym_tuple] = STATE(2139), + [sym_bitstring] = STATE(2139), + [sym_map] = STATE(2139), + [sym_boolean] = STATE(2139), + [sym_nil] = STATE(2139), + [sym_call] = STATE(2139), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2139), + [sym_anonymous_function] = STATE(2139), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2490), + [sym_float] = ACTIONS(2490), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2490), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [689] = { + [sym__expression] = STATE(2140), + [sym_block] = STATE(2140), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2140), + [sym_atom] = STATE(2140), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2140), + [sym_charlist] = STATE(2140), + [sym_sigil] = STATE(2140), + [sym_unary_operator] = STATE(2140), + [sym_binary_operator] = STATE(2140), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2140), + [sym_list] = STATE(2140), + [sym_tuple] = STATE(2140), + [sym_bitstring] = STATE(2140), + [sym_map] = STATE(2140), + [sym_boolean] = STATE(2140), + [sym_nil] = STATE(2140), + [sym_call] = STATE(2140), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2140), + [sym_anonymous_function] = STATE(2140), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2492), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2492), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [690] = { + [sym__expression] = STATE(3226), + [sym_block] = STATE(3226), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3226), + [sym_atom] = STATE(3226), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3226), + [sym_charlist] = STATE(3226), + [sym_sigil] = STATE(3226), + [sym_unary_operator] = STATE(3226), + [sym_binary_operator] = STATE(3226), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3226), + [sym_list] = STATE(3226), + [sym_tuple] = STATE(3226), + [sym_bitstring] = STATE(3226), + [sym_map] = STATE(3226), + [sym_boolean] = STATE(3226), + [sym_nil] = STATE(3226), + [sym_call] = STATE(3226), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3226), + [sym_anonymous_function] = STATE(3226), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2302), + [sym_float] = ACTIONS(2302), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2302), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [691] = { + [sym__expression] = STATE(3227), + [sym_block] = STATE(3227), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3227), + [sym_atom] = STATE(3227), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3227), + [sym_charlist] = STATE(3227), + [sym_sigil] = STATE(3227), + [sym_unary_operator] = STATE(3227), + [sym_binary_operator] = STATE(3227), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3227), + [sym_list] = STATE(3227), + [sym_tuple] = STATE(3227), + [sym_bitstring] = STATE(3227), + [sym_map] = STATE(3227), + [sym_boolean] = STATE(3227), + [sym_nil] = STATE(3227), + [sym_call] = STATE(3227), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3227), + [sym_anonymous_function] = STATE(3227), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2300), + [sym_float] = ACTIONS(2300), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2300), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [692] = { + [sym__expression] = STATE(1609), + [sym_block] = STATE(1609), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1609), + [sym_atom] = STATE(1609), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1609), + [sym_charlist] = STATE(1609), + [sym_sigil] = STATE(1609), + [sym_unary_operator] = STATE(1609), + [sym_binary_operator] = STATE(1609), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1609), + [sym_list] = STATE(1609), + [sym_tuple] = STATE(1609), + [sym_bitstring] = STATE(1609), + [sym_map] = STATE(1609), + [sym_boolean] = STATE(1609), + [sym_nil] = STATE(1609), + [sym_call] = STATE(1609), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1609), + [sym_anonymous_function] = STATE(1609), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2494), + [sym_float] = ACTIONS(2494), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2494), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [693] = { + [sym__expression] = STATE(1607), + [sym_block] = STATE(1607), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1607), + [sym_atom] = STATE(1607), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1607), + [sym_charlist] = STATE(1607), + [sym_sigil] = STATE(1607), + [sym_unary_operator] = STATE(1607), + [sym_binary_operator] = STATE(1607), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1607), + [sym_list] = STATE(1607), + [sym_tuple] = STATE(1607), + [sym_bitstring] = STATE(1607), + [sym_map] = STATE(1607), + [sym_boolean] = STATE(1607), + [sym_nil] = STATE(1607), + [sym_call] = STATE(1607), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1607), + [sym_anonymous_function] = STATE(1607), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2496), + [sym_float] = ACTIONS(2496), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2496), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [694] = { + [sym__expression] = STATE(3033), + [sym_block] = STATE(3033), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3033), + [sym_atom] = STATE(3033), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3033), + [sym_charlist] = STATE(3033), + [sym_sigil] = STATE(3033), + [sym_unary_operator] = STATE(3033), + [sym_binary_operator] = STATE(3033), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3033), + [sym_list] = STATE(3033), + [sym_tuple] = STATE(3033), + [sym_bitstring] = STATE(3033), + [sym_map] = STATE(3033), + [sym_boolean] = STATE(3033), + [sym_nil] = STATE(3033), + [sym_call] = STATE(3033), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3033), + [sym_anonymous_function] = STATE(3033), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2498), + [sym_float] = ACTIONS(2498), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2498), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [695] = { + [sym__expression] = STATE(1602), + [sym_block] = STATE(1602), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1602), + [sym_atom] = STATE(1602), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1602), + [sym_charlist] = STATE(1602), + [sym_sigil] = STATE(1602), + [sym_unary_operator] = STATE(1602), + [sym_binary_operator] = STATE(1602), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1602), + [sym_list] = STATE(1602), + [sym_tuple] = STATE(1602), + [sym_bitstring] = STATE(1602), + [sym_map] = STATE(1602), + [sym_boolean] = STATE(1602), + [sym_nil] = STATE(1602), + [sym_call] = STATE(1602), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1602), + [sym_anonymous_function] = STATE(1602), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2500), + [sym_float] = ACTIONS(2500), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2500), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [696] = { + [sym__expression] = STATE(1601), + [sym_block] = STATE(1601), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1601), + [sym_atom] = STATE(1601), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1601), + [sym_charlist] = STATE(1601), + [sym_sigil] = STATE(1601), + [sym_unary_operator] = STATE(1601), + [sym_binary_operator] = STATE(1601), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1601), + [sym_list] = STATE(1601), + [sym_tuple] = STATE(1601), + [sym_bitstring] = STATE(1601), + [sym_map] = STATE(1601), + [sym_boolean] = STATE(1601), + [sym_nil] = STATE(1601), + [sym_call] = STATE(1601), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1601), + [sym_anonymous_function] = STATE(1601), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2502), + [sym_float] = ACTIONS(2502), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2502), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [697] = { + [sym__expression] = STATE(1599), + [sym_block] = STATE(1599), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1599), + [sym_atom] = STATE(1599), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1599), + [sym_charlist] = STATE(1599), + [sym_sigil] = STATE(1599), + [sym_unary_operator] = STATE(1599), + [sym_binary_operator] = STATE(1599), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1599), + [sym_list] = STATE(1599), + [sym_tuple] = STATE(1599), + [sym_bitstring] = STATE(1599), + [sym_map] = STATE(1599), + [sym_boolean] = STATE(1599), + [sym_nil] = STATE(1599), + [sym_call] = STATE(1599), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1599), + [sym_anonymous_function] = STATE(1599), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2504), + [sym_float] = ACTIONS(2504), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2504), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [698] = { + [sym__expression] = STATE(3397), + [sym_block] = STATE(3397), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3397), + [sym_atom] = STATE(3397), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3397), + [sym_charlist] = STATE(3397), + [sym_sigil] = STATE(3397), + [sym_unary_operator] = STATE(3397), + [sym_binary_operator] = STATE(3397), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3397), + [sym_list] = STATE(3397), + [sym_tuple] = STATE(3397), + [sym_bitstring] = STATE(3397), + [sym_map] = STATE(3397), + [sym_boolean] = STATE(3397), + [sym_nil] = STATE(3397), + [sym_call] = STATE(3397), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3397), + [sym_anonymous_function] = STATE(3397), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2506), + [sym_float] = ACTIONS(2506), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2506), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [699] = { + [sym__expression] = STATE(3199), + [sym_block] = STATE(3199), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3199), + [sym_atom] = STATE(3199), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3199), + [sym_charlist] = STATE(3199), + [sym_sigil] = STATE(3199), + [sym_unary_operator] = STATE(3199), + [sym_binary_operator] = STATE(3199), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3199), + [sym_list] = STATE(3199), + [sym_tuple] = STATE(3199), + [sym_bitstring] = STATE(3199), + [sym_map] = STATE(3199), + [sym_boolean] = STATE(3199), + [sym_nil] = STATE(3199), + [sym_call] = STATE(3199), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3199), + [sym_anonymous_function] = STATE(3199), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2508), + [sym_float] = ACTIONS(2508), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2508), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [700] = { + [sym__expression] = STATE(1535), + [sym_block] = STATE(1535), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1535), + [sym_atom] = STATE(1535), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1535), + [sym_charlist] = STATE(1535), + [sym_sigil] = STATE(1535), + [sym_unary_operator] = STATE(1535), + [sym_binary_operator] = STATE(1535), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1535), + [sym_list] = STATE(1535), + [sym_tuple] = STATE(1535), + [sym_bitstring] = STATE(1535), + [sym_map] = STATE(1535), + [sym_boolean] = STATE(1535), + [sym_nil] = STATE(1535), + [sym_call] = STATE(1535), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1535), + [sym_anonymous_function] = STATE(1535), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2510), + [sym_float] = ACTIONS(2510), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2510), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [701] = { + [sym__expression] = STATE(1596), + [sym_block] = STATE(1596), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1596), + [sym_atom] = STATE(1596), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1596), + [sym_charlist] = STATE(1596), + [sym_sigil] = STATE(1596), + [sym_unary_operator] = STATE(1596), + [sym_binary_operator] = STATE(1596), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1596), + [sym_list] = STATE(1596), + [sym_tuple] = STATE(1596), + [sym_bitstring] = STATE(1596), + [sym_map] = STATE(1596), + [sym_boolean] = STATE(1596), + [sym_nil] = STATE(1596), + [sym_call] = STATE(1596), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1596), + [sym_anonymous_function] = STATE(1596), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2512), + [sym_float] = ACTIONS(2512), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2512), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [702] = { + [sym__expression] = STATE(1611), + [sym_block] = STATE(1611), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1611), + [sym_atom] = STATE(1611), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1611), + [sym_charlist] = STATE(1611), + [sym_sigil] = STATE(1611), + [sym_unary_operator] = STATE(1611), + [sym_binary_operator] = STATE(1611), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1611), + [sym_list] = STATE(1611), + [sym_tuple] = STATE(1611), + [sym_bitstring] = STATE(1611), + [sym_map] = STATE(1611), + [sym_boolean] = STATE(1611), + [sym_nil] = STATE(1611), + [sym_call] = STATE(1611), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1611), + [sym_anonymous_function] = STATE(1611), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2514), + [sym_float] = ACTIONS(2514), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2514), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [703] = { + [sym__expression] = STATE(1708), + [sym_block] = STATE(1708), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1708), + [sym_atom] = STATE(1708), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1708), + [sym_charlist] = STATE(1708), + [sym_sigil] = STATE(1708), + [sym_unary_operator] = STATE(1708), + [sym_binary_operator] = STATE(1708), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1708), + [sym_list] = STATE(1708), + [sym_tuple] = STATE(1708), + [sym_bitstring] = STATE(1708), + [sym_map] = STATE(1708), + [sym_boolean] = STATE(1708), + [sym_nil] = STATE(1708), + [sym_call] = STATE(1708), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1708), + [sym_anonymous_function] = STATE(1708), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2516), + [sym_float] = ACTIONS(2516), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2516), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [704] = { + [sym__expression] = STATE(1642), + [sym_block] = STATE(1642), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1642), + [sym_atom] = STATE(1642), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1642), + [sym_charlist] = STATE(1642), + [sym_sigil] = STATE(1642), + [sym_unary_operator] = STATE(1642), + [sym_binary_operator] = STATE(1642), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1642), + [sym_list] = STATE(1642), + [sym_tuple] = STATE(1642), + [sym_bitstring] = STATE(1642), + [sym_map] = STATE(1642), + [sym_boolean] = STATE(1642), + [sym_nil] = STATE(1642), + [sym_call] = STATE(1642), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1642), + [sym_anonymous_function] = STATE(1642), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2518), + [sym_float] = ACTIONS(2518), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2518), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [705] = { + [sym__expression] = STATE(3047), + [sym_block] = STATE(3047), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3047), + [sym_atom] = STATE(3047), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3047), + [sym_charlist] = STATE(3047), + [sym_sigil] = STATE(3047), + [sym_unary_operator] = STATE(3047), + [sym_binary_operator] = STATE(3047), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3047), + [sym_list] = STATE(3047), + [sym_tuple] = STATE(3047), + [sym_bitstring] = STATE(3047), + [sym_map] = STATE(3047), + [sym_boolean] = STATE(3047), + [sym_nil] = STATE(3047), + [sym_call] = STATE(3047), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3047), + [sym_anonymous_function] = STATE(3047), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2520), + [sym_float] = ACTIONS(2520), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [706] = { + [sym__expression] = STATE(1645), + [sym_block] = STATE(1645), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1645), + [sym_atom] = STATE(1645), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1645), + [sym_charlist] = STATE(1645), + [sym_sigil] = STATE(1645), + [sym_unary_operator] = STATE(1645), + [sym_binary_operator] = STATE(1645), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1645), + [sym_list] = STATE(1645), + [sym_tuple] = STATE(1645), + [sym_bitstring] = STATE(1645), + [sym_map] = STATE(1645), + [sym_boolean] = STATE(1645), + [sym_nil] = STATE(1645), + [sym_call] = STATE(1645), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1645), + [sym_anonymous_function] = STATE(1645), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2522), + [sym_float] = ACTIONS(2522), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2522), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [707] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [708] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [709] = { + [sym__expression] = STATE(2517), + [sym_block] = STATE(2517), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2517), + [sym_atom] = STATE(2517), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2517), + [sym_charlist] = STATE(2517), + [sym_sigil] = STATE(2517), + [sym_unary_operator] = STATE(2517), + [sym_binary_operator] = STATE(2517), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2517), + [sym_list] = STATE(2517), + [sym_tuple] = STATE(2517), + [sym_bitstring] = STATE(2517), + [sym_map] = STATE(2517), + [sym_boolean] = STATE(2517), + [sym_nil] = STATE(2517), + [sym_call] = STATE(2517), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2517), + [sym_anonymous_function] = STATE(2517), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2524), + [sym_float] = ACTIONS(2524), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2524), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [710] = { + [sym__expression] = STATE(2515), + [sym_block] = STATE(2515), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2515), + [sym_atom] = STATE(2515), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2515), + [sym_charlist] = STATE(2515), + [sym_sigil] = STATE(2515), + [sym_unary_operator] = STATE(2515), + [sym_binary_operator] = STATE(2515), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2515), + [sym_list] = STATE(2515), + [sym_tuple] = STATE(2515), + [sym_bitstring] = STATE(2515), + [sym_map] = STATE(2515), + [sym_boolean] = STATE(2515), + [sym_nil] = STATE(2515), + [sym_call] = STATE(2515), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2515), + [sym_anonymous_function] = STATE(2515), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2526), + [sym_float] = ACTIONS(2526), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2526), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [711] = { + [sym__expression] = STATE(2514), + [sym_block] = STATE(2514), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2514), + [sym_atom] = STATE(2514), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2514), + [sym_charlist] = STATE(2514), + [sym_sigil] = STATE(2514), + [sym_unary_operator] = STATE(2514), + [sym_binary_operator] = STATE(2514), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2514), + [sym_list] = STATE(2514), + [sym_tuple] = STATE(2514), + [sym_bitstring] = STATE(2514), + [sym_map] = STATE(2514), + [sym_boolean] = STATE(2514), + [sym_nil] = STATE(2514), + [sym_call] = STATE(2514), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2514), + [sym_anonymous_function] = STATE(2514), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2528), + [sym_float] = ACTIONS(2528), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2528), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [712] = { + [sym__expression] = STATE(2513), + [sym_block] = STATE(2513), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2513), + [sym_atom] = STATE(2513), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2513), + [sym_charlist] = STATE(2513), + [sym_sigil] = STATE(2513), + [sym_unary_operator] = STATE(2513), + [sym_binary_operator] = STATE(2513), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2513), + [sym_list] = STATE(2513), + [sym_tuple] = STATE(2513), + [sym_bitstring] = STATE(2513), + [sym_map] = STATE(2513), + [sym_boolean] = STATE(2513), + [sym_nil] = STATE(2513), + [sym_call] = STATE(2513), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2513), + [sym_anonymous_function] = STATE(2513), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2530), + [sym_float] = ACTIONS(2530), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2530), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [713] = { + [sym__expression] = STATE(2512), + [sym_block] = STATE(2512), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2512), + [sym_atom] = STATE(2512), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2512), + [sym_charlist] = STATE(2512), + [sym_sigil] = STATE(2512), + [sym_unary_operator] = STATE(2512), + [sym_binary_operator] = STATE(2512), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2512), + [sym_list] = STATE(2512), + [sym_tuple] = STATE(2512), + [sym_bitstring] = STATE(2512), + [sym_map] = STATE(2512), + [sym_boolean] = STATE(2512), + [sym_nil] = STATE(2512), + [sym_call] = STATE(2512), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2512), + [sym_anonymous_function] = STATE(2512), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2532), + [sym_float] = ACTIONS(2532), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2532), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [714] = { + [sym__expression] = STATE(2511), + [sym_block] = STATE(2511), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2511), + [sym_atom] = STATE(2511), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2511), + [sym_charlist] = STATE(2511), + [sym_sigil] = STATE(2511), + [sym_unary_operator] = STATE(2511), + [sym_binary_operator] = STATE(2511), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2511), + [sym_list] = STATE(2511), + [sym_tuple] = STATE(2511), + [sym_bitstring] = STATE(2511), + [sym_map] = STATE(2511), + [sym_boolean] = STATE(2511), + [sym_nil] = STATE(2511), + [sym_call] = STATE(2511), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2511), + [sym_anonymous_function] = STATE(2511), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2534), + [sym_float] = ACTIONS(2534), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2534), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [715] = { + [sym__expression] = STATE(2510), + [sym_block] = STATE(2510), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2510), + [sym_atom] = STATE(2510), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2510), + [sym_charlist] = STATE(2510), + [sym_sigil] = STATE(2510), + [sym_unary_operator] = STATE(2510), + [sym_binary_operator] = STATE(2510), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2510), + [sym_list] = STATE(2510), + [sym_tuple] = STATE(2510), + [sym_bitstring] = STATE(2510), + [sym_map] = STATE(2510), + [sym_boolean] = STATE(2510), + [sym_nil] = STATE(2510), + [sym_call] = STATE(2510), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2510), + [sym_anonymous_function] = STATE(2510), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2536), + [sym_float] = ACTIONS(2536), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2536), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [716] = { + [sym__expression] = STATE(2509), + [sym_block] = STATE(2509), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2509), + [sym_atom] = STATE(2509), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2509), + [sym_charlist] = STATE(2509), + [sym_sigil] = STATE(2509), + [sym_unary_operator] = STATE(2509), + [sym_binary_operator] = STATE(2509), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2509), + [sym_list] = STATE(2509), + [sym_tuple] = STATE(2509), + [sym_bitstring] = STATE(2509), + [sym_map] = STATE(2509), + [sym_boolean] = STATE(2509), + [sym_nil] = STATE(2509), + [sym_call] = STATE(2509), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2509), + [sym_anonymous_function] = STATE(2509), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2538), + [sym_float] = ACTIONS(2538), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2538), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [717] = { + [sym__expression] = STATE(2508), + [sym_block] = STATE(2508), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2508), + [sym_atom] = STATE(2508), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2508), + [sym_charlist] = STATE(2508), + [sym_sigil] = STATE(2508), + [sym_unary_operator] = STATE(2508), + [sym_binary_operator] = STATE(2508), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2508), + [sym_list] = STATE(2508), + [sym_tuple] = STATE(2508), + [sym_bitstring] = STATE(2508), + [sym_map] = STATE(2508), + [sym_boolean] = STATE(2508), + [sym_nil] = STATE(2508), + [sym_call] = STATE(2508), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2508), + [sym_anonymous_function] = STATE(2508), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2540), + [sym_float] = ACTIONS(2540), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2540), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [718] = { + [sym__expression] = STATE(3204), + [sym_block] = STATE(3204), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3204), + [sym_atom] = STATE(3204), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3204), + [sym_charlist] = STATE(3204), + [sym_sigil] = STATE(3204), + [sym_unary_operator] = STATE(3204), + [sym_binary_operator] = STATE(3204), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3204), + [sym_list] = STATE(3204), + [sym_tuple] = STATE(3204), + [sym_bitstring] = STATE(3204), + [sym_map] = STATE(3204), + [sym_boolean] = STATE(3204), + [sym_nil] = STATE(3204), + [sym_call] = STATE(3204), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3204), + [sym_anonymous_function] = STATE(3204), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2542), + [sym_float] = ACTIONS(2542), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2542), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [719] = { + [sym__expression] = STATE(2507), + [sym_block] = STATE(2507), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2507), + [sym_atom] = STATE(2507), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2507), + [sym_charlist] = STATE(2507), + [sym_sigil] = STATE(2507), + [sym_unary_operator] = STATE(2507), + [sym_binary_operator] = STATE(2507), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2507), + [sym_list] = STATE(2507), + [sym_tuple] = STATE(2507), + [sym_bitstring] = STATE(2507), + [sym_map] = STATE(2507), + [sym_boolean] = STATE(2507), + [sym_nil] = STATE(2507), + [sym_call] = STATE(2507), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2507), + [sym_anonymous_function] = STATE(2507), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2544), + [sym_float] = ACTIONS(2544), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2544), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [720] = { + [sym__expression] = STATE(1535), + [sym_block] = STATE(1535), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1535), + [sym_atom] = STATE(1535), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1535), + [sym_charlist] = STATE(1535), + [sym_sigil] = STATE(1535), + [sym_unary_operator] = STATE(1535), + [sym_binary_operator] = STATE(1535), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1535), + [sym_list] = STATE(1535), + [sym_tuple] = STATE(1535), + [sym_bitstring] = STATE(1535), + [sym_map] = STATE(1535), + [sym_boolean] = STATE(1535), + [sym_nil] = STATE(1535), + [sym_call] = STATE(1535), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1535), + [sym_anonymous_function] = STATE(1535), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2510), + [sym_float] = ACTIONS(2510), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2510), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [721] = { + [sym__expression] = STATE(3284), + [sym_block] = STATE(3284), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3284), + [sym_atom] = STATE(3284), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3284), + [sym_charlist] = STATE(3284), + [sym_sigil] = STATE(3284), + [sym_unary_operator] = STATE(3284), + [sym_binary_operator] = STATE(3284), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3284), + [sym_list] = STATE(3284), + [sym_tuple] = STATE(3284), + [sym_bitstring] = STATE(3284), + [sym_map] = STATE(3284), + [sym_boolean] = STATE(3284), + [sym_nil] = STATE(3284), + [sym_call] = STATE(3284), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3284), + [sym_anonymous_function] = STATE(3284), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2546), + [sym_float] = ACTIONS(2546), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2546), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [722] = { + [sym__expression] = STATE(3047), + [sym_block] = STATE(3047), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3047), + [sym_atom] = STATE(3047), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3047), + [sym_charlist] = STATE(3047), + [sym_sigil] = STATE(3047), + [sym_unary_operator] = STATE(3047), + [sym_binary_operator] = STATE(3047), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3047), + [sym_list] = STATE(3047), + [sym_tuple] = STATE(3047), + [sym_bitstring] = STATE(3047), + [sym_map] = STATE(3047), + [sym_boolean] = STATE(3047), + [sym_nil] = STATE(3047), + [sym_call] = STATE(3047), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3047), + [sym_anonymous_function] = STATE(3047), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2520), + [sym_float] = ACTIONS(2520), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [723] = { + [sym__expression] = STATE(3040), + [sym_block] = STATE(3040), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3040), + [sym_atom] = STATE(3040), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3040), + [sym_charlist] = STATE(3040), + [sym_sigil] = STATE(3040), + [sym_unary_operator] = STATE(3040), + [sym_binary_operator] = STATE(3040), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3040), + [sym_list] = STATE(3040), + [sym_tuple] = STATE(3040), + [sym_bitstring] = STATE(3040), + [sym_map] = STATE(3040), + [sym_boolean] = STATE(3040), + [sym_nil] = STATE(3040), + [sym_call] = STATE(3040), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3040), + [sym_anonymous_function] = STATE(3040), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2406), + [sym_float] = ACTIONS(2406), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2406), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [724] = { + [sym__expression] = STATE(3232), + [sym_block] = STATE(3232), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3232), + [sym_atom] = STATE(3232), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3232), + [sym_charlist] = STATE(3232), + [sym_sigil] = STATE(3232), + [sym_unary_operator] = STATE(3232), + [sym_binary_operator] = STATE(3232), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3232), + [sym_list] = STATE(3232), + [sym_tuple] = STATE(3232), + [sym_bitstring] = STATE(3232), + [sym_map] = STATE(3232), + [sym_boolean] = STATE(3232), + [sym_nil] = STATE(3232), + [sym_call] = STATE(3232), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3232), + [sym_anonymous_function] = STATE(3232), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2548), + [sym_float] = ACTIONS(2548), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2548), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [725] = { + [sym__expression] = STATE(1647), + [sym_block] = STATE(1647), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1647), + [sym_atom] = STATE(1647), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1647), + [sym_charlist] = STATE(1647), + [sym_sigil] = STATE(1647), + [sym_unary_operator] = STATE(1647), + [sym_binary_operator] = STATE(1647), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1647), + [sym_list] = STATE(1647), + [sym_tuple] = STATE(1647), + [sym_bitstring] = STATE(1647), + [sym_map] = STATE(1647), + [sym_boolean] = STATE(1647), + [sym_nil] = STATE(1647), + [sym_call] = STATE(1647), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1647), + [sym_anonymous_function] = STATE(1647), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2550), + [sym_float] = ACTIONS(2550), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2550), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [726] = { + [sym__expression] = STATE(3320), + [sym_block] = STATE(3320), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3320), + [sym_atom] = STATE(3320), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3320), + [sym_charlist] = STATE(3320), + [sym_sigil] = STATE(3320), + [sym_unary_operator] = STATE(3320), + [sym_binary_operator] = STATE(3320), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3320), + [sym_list] = STATE(3320), + [sym_tuple] = STATE(3320), + [sym_bitstring] = STATE(3320), + [sym_map] = STATE(3320), + [sym_boolean] = STATE(3320), + [sym_nil] = STATE(3320), + [sym_call] = STATE(3320), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3320), + [sym_anonymous_function] = STATE(3320), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2552), + [sym_float] = ACTIONS(2552), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2552), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [727] = { + [sym__expression] = STATE(3321), + [sym_block] = STATE(3321), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3321), + [sym_atom] = STATE(3321), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3321), + [sym_charlist] = STATE(3321), + [sym_sigil] = STATE(3321), + [sym_unary_operator] = STATE(3321), + [sym_binary_operator] = STATE(3321), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3321), + [sym_list] = STATE(3321), + [sym_tuple] = STATE(3321), + [sym_bitstring] = STATE(3321), + [sym_map] = STATE(3321), + [sym_boolean] = STATE(3321), + [sym_nil] = STATE(3321), + [sym_call] = STATE(3321), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3321), + [sym_anonymous_function] = STATE(3321), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2554), + [sym_float] = ACTIONS(2554), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2554), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [728] = { + [sym__expression] = STATE(3322), + [sym_block] = STATE(3322), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3322), + [sym_atom] = STATE(3322), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3322), + [sym_charlist] = STATE(3322), + [sym_sigil] = STATE(3322), + [sym_unary_operator] = STATE(3322), + [sym_binary_operator] = STATE(3322), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3322), + [sym_list] = STATE(3322), + [sym_tuple] = STATE(3322), + [sym_bitstring] = STATE(3322), + [sym_map] = STATE(3322), + [sym_boolean] = STATE(3322), + [sym_nil] = STATE(3322), + [sym_call] = STATE(3322), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3322), + [sym_anonymous_function] = STATE(3322), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2556), + [sym_float] = ACTIONS(2556), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2556), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [729] = { + [sym__expression] = STATE(3323), + [sym_block] = STATE(3323), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3323), + [sym_atom] = STATE(3323), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3323), + [sym_charlist] = STATE(3323), + [sym_sigil] = STATE(3323), + [sym_unary_operator] = STATE(3323), + [sym_binary_operator] = STATE(3323), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3323), + [sym_list] = STATE(3323), + [sym_tuple] = STATE(3323), + [sym_bitstring] = STATE(3323), + [sym_map] = STATE(3323), + [sym_boolean] = STATE(3323), + [sym_nil] = STATE(3323), + [sym_call] = STATE(3323), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3323), + [sym_anonymous_function] = STATE(3323), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2558), + [sym_float] = ACTIONS(2558), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2558), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [730] = { + [sym__expression] = STATE(3324), + [sym_block] = STATE(3324), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3324), + [sym_atom] = STATE(3324), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3324), + [sym_charlist] = STATE(3324), + [sym_sigil] = STATE(3324), + [sym_unary_operator] = STATE(3324), + [sym_binary_operator] = STATE(3324), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3324), + [sym_list] = STATE(3324), + [sym_tuple] = STATE(3324), + [sym_bitstring] = STATE(3324), + [sym_map] = STATE(3324), + [sym_boolean] = STATE(3324), + [sym_nil] = STATE(3324), + [sym_call] = STATE(3324), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3324), + [sym_anonymous_function] = STATE(3324), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2560), + [sym_float] = ACTIONS(2560), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2560), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [731] = { + [sym__expression] = STATE(3325), + [sym_block] = STATE(3325), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3325), + [sym_atom] = STATE(3325), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3325), + [sym_charlist] = STATE(3325), + [sym_sigil] = STATE(3325), + [sym_unary_operator] = STATE(3325), + [sym_binary_operator] = STATE(3325), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3325), + [sym_list] = STATE(3325), + [sym_tuple] = STATE(3325), + [sym_bitstring] = STATE(3325), + [sym_map] = STATE(3325), + [sym_boolean] = STATE(3325), + [sym_nil] = STATE(3325), + [sym_call] = STATE(3325), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3325), + [sym_anonymous_function] = STATE(3325), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2562), + [sym_float] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2562), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [732] = { + [sym__expression] = STATE(3326), + [sym_block] = STATE(3326), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3326), + [sym_atom] = STATE(3326), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3326), + [sym_charlist] = STATE(3326), + [sym_sigil] = STATE(3326), + [sym_unary_operator] = STATE(3326), + [sym_binary_operator] = STATE(3326), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3326), + [sym_list] = STATE(3326), + [sym_tuple] = STATE(3326), + [sym_bitstring] = STATE(3326), + [sym_map] = STATE(3326), + [sym_boolean] = STATE(3326), + [sym_nil] = STATE(3326), + [sym_call] = STATE(3326), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3326), + [sym_anonymous_function] = STATE(3326), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2564), + [sym_float] = ACTIONS(2564), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2564), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [733] = { + [sym__expression] = STATE(3327), + [sym_block] = STATE(3327), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3327), + [sym_atom] = STATE(3327), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3327), + [sym_charlist] = STATE(3327), + [sym_sigil] = STATE(3327), + [sym_unary_operator] = STATE(3327), + [sym_binary_operator] = STATE(3327), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3327), + [sym_list] = STATE(3327), + [sym_tuple] = STATE(3327), + [sym_bitstring] = STATE(3327), + [sym_map] = STATE(3327), + [sym_boolean] = STATE(3327), + [sym_nil] = STATE(3327), + [sym_call] = STATE(3327), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3327), + [sym_anonymous_function] = STATE(3327), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2566), + [sym_float] = ACTIONS(2566), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [734] = { + [sym__expression] = STATE(2506), + [sym_block] = STATE(2506), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2506), + [sym_atom] = STATE(2506), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2506), + [sym_charlist] = STATE(2506), + [sym_sigil] = STATE(2506), + [sym_unary_operator] = STATE(2506), + [sym_binary_operator] = STATE(2506), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2506), + [sym_list] = STATE(2506), + [sym_tuple] = STATE(2506), + [sym_bitstring] = STATE(2506), + [sym_map] = STATE(2506), + [sym_boolean] = STATE(2506), + [sym_nil] = STATE(2506), + [sym_call] = STATE(2506), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2506), + [sym_anonymous_function] = STATE(2506), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2568), + [sym_float] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2568), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [735] = { + [sym__expression] = STATE(1818), + [sym_block] = STATE(1818), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1818), + [sym_atom] = STATE(1818), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1818), + [sym_charlist] = STATE(1818), + [sym_sigil] = STATE(1818), + [sym_unary_operator] = STATE(1818), + [sym_binary_operator] = STATE(1818), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1818), + [sym_list] = STATE(1818), + [sym_tuple] = STATE(1818), + [sym_bitstring] = STATE(1818), + [sym_map] = STATE(1818), + [sym_boolean] = STATE(1818), + [sym_nil] = STATE(1818), + [sym_call] = STATE(1818), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1818), + [sym_anonymous_function] = STATE(1818), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2570), + [sym_float] = ACTIONS(2570), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2570), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [736] = { + [sym__expression] = STATE(2505), + [sym_block] = STATE(2505), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2505), + [sym_atom] = STATE(2505), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2505), + [sym_charlist] = STATE(2505), + [sym_sigil] = STATE(2505), + [sym_unary_operator] = STATE(2505), + [sym_binary_operator] = STATE(2505), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2505), + [sym_list] = STATE(2505), + [sym_tuple] = STATE(2505), + [sym_bitstring] = STATE(2505), + [sym_map] = STATE(2505), + [sym_boolean] = STATE(2505), + [sym_nil] = STATE(2505), + [sym_call] = STATE(2505), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2505), + [sym_anonymous_function] = STATE(2505), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2572), + [sym_float] = ACTIONS(2572), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2572), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [737] = { + [sym__expression] = STATE(3328), + [sym_block] = STATE(3328), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3328), + [sym_atom] = STATE(3328), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3328), + [sym_charlist] = STATE(3328), + [sym_sigil] = STATE(3328), + [sym_unary_operator] = STATE(3328), + [sym_binary_operator] = STATE(3328), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3328), + [sym_list] = STATE(3328), + [sym_tuple] = STATE(3328), + [sym_bitstring] = STATE(3328), + [sym_map] = STATE(3328), + [sym_boolean] = STATE(3328), + [sym_nil] = STATE(3328), + [sym_call] = STATE(3328), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3328), + [sym_anonymous_function] = STATE(3328), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2574), + [sym_float] = ACTIONS(2574), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2574), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [738] = { + [sym__expression] = STATE(3329), + [sym_block] = STATE(3329), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3329), + [sym_atom] = STATE(3329), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3329), + [sym_charlist] = STATE(3329), + [sym_sigil] = STATE(3329), + [sym_unary_operator] = STATE(3329), + [sym_binary_operator] = STATE(3329), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3329), + [sym_list] = STATE(3329), + [sym_tuple] = STATE(3329), + [sym_bitstring] = STATE(3329), + [sym_map] = STATE(3329), + [sym_boolean] = STATE(3329), + [sym_nil] = STATE(3329), + [sym_call] = STATE(3329), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3329), + [sym_anonymous_function] = STATE(3329), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2576), + [sym_float] = ACTIONS(2576), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2576), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [739] = { + [sym__expression] = STATE(3330), + [sym_block] = STATE(3330), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3330), + [sym_atom] = STATE(3330), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3330), + [sym_charlist] = STATE(3330), + [sym_sigil] = STATE(3330), + [sym_unary_operator] = STATE(3330), + [sym_binary_operator] = STATE(3330), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3330), + [sym_list] = STATE(3330), + [sym_tuple] = STATE(3330), + [sym_bitstring] = STATE(3330), + [sym_map] = STATE(3330), + [sym_boolean] = STATE(3330), + [sym_nil] = STATE(3330), + [sym_call] = STATE(3330), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3330), + [sym_anonymous_function] = STATE(3330), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2578), + [sym_float] = ACTIONS(2578), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2578), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [740] = { + [sym__expression] = STATE(3193), + [sym_block] = STATE(3193), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3193), + [sym_atom] = STATE(3193), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3193), + [sym_charlist] = STATE(3193), + [sym_sigil] = STATE(3193), + [sym_unary_operator] = STATE(3193), + [sym_binary_operator] = STATE(3193), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3193), + [sym_list] = STATE(3193), + [sym_tuple] = STATE(3193), + [sym_bitstring] = STATE(3193), + [sym_map] = STATE(3193), + [sym_boolean] = STATE(3193), + [sym_nil] = STATE(3193), + [sym_call] = STATE(3193), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3193), + [sym_anonymous_function] = STATE(3193), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1335), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [741] = { + [sym__expression] = STATE(3332), + [sym_block] = STATE(3332), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3332), + [sym_atom] = STATE(3332), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3332), + [sym_charlist] = STATE(3332), + [sym_sigil] = STATE(3332), + [sym_unary_operator] = STATE(3332), + [sym_binary_operator] = STATE(3332), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3332), + [sym_list] = STATE(3332), + [sym_tuple] = STATE(3332), + [sym_bitstring] = STATE(3332), + [sym_map] = STATE(3332), + [sym_boolean] = STATE(3332), + [sym_nil] = STATE(3332), + [sym_call] = STATE(3332), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3332), + [sym_anonymous_function] = STATE(3332), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2580), + [sym_float] = ACTIONS(2580), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2580), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [742] = { + [sym__expression] = STATE(3333), + [sym_block] = STATE(3333), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(3333), + [sym_atom] = STATE(3333), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(3333), + [sym_charlist] = STATE(3333), + [sym_sigil] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_binary_operator] = STATE(3333), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(3333), + [sym_list] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_bitstring] = STATE(3333), + [sym_map] = STATE(3333), + [sym_boolean] = STATE(3333), + [sym_nil] = STATE(3333), + [sym_call] = STATE(3333), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(3333), + [sym_anonymous_function] = STATE(3333), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2582), + [sym_float] = ACTIONS(2582), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2582), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [743] = { + [sym__expression] = STATE(2504), + [sym_block] = STATE(2504), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2504), + [sym_atom] = STATE(2504), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2504), + [sym_charlist] = STATE(2504), + [sym_sigil] = STATE(2504), + [sym_unary_operator] = STATE(2504), + [sym_binary_operator] = STATE(2504), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2504), + [sym_list] = STATE(2504), + [sym_tuple] = STATE(2504), + [sym_bitstring] = STATE(2504), + [sym_map] = STATE(2504), + [sym_boolean] = STATE(2504), + [sym_nil] = STATE(2504), + [sym_call] = STATE(2504), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2504), + [sym_anonymous_function] = STATE(2504), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2584), + [sym_float] = ACTIONS(2584), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2584), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [744] = { + [sym__expression] = STATE(2500), + [sym_block] = STATE(2500), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2500), + [sym_atom] = STATE(2500), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2500), + [sym_charlist] = STATE(2500), + [sym_sigil] = STATE(2500), + [sym_unary_operator] = STATE(2500), + [sym_binary_operator] = STATE(2500), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2500), + [sym_list] = STATE(2500), + [sym_tuple] = STATE(2500), + [sym_bitstring] = STATE(2500), + [sym_map] = STATE(2500), + [sym_boolean] = STATE(2500), + [sym_nil] = STATE(2500), + [sym_call] = STATE(2500), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2500), + [sym_anonymous_function] = STATE(2500), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2586), + [sym_float] = ACTIONS(2586), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2586), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [745] = { + [sym__expression] = STATE(1648), + [sym_block] = STATE(1648), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1648), + [sym_atom] = STATE(1648), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1648), + [sym_charlist] = STATE(1648), + [sym_sigil] = STATE(1648), + [sym_unary_operator] = STATE(1648), + [sym_binary_operator] = STATE(1648), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1648), + [sym_list] = STATE(1648), + [sym_tuple] = STATE(1648), + [sym_bitstring] = STATE(1648), + [sym_map] = STATE(1648), + [sym_boolean] = STATE(1648), + [sym_nil] = STATE(1648), + [sym_call] = STATE(1648), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1648), + [sym_anonymous_function] = STATE(1648), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2588), + [sym_float] = ACTIONS(2588), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2588), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [746] = { + [sym__expression] = STATE(3792), + [sym_block] = STATE(3792), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3792), + [sym_atom] = STATE(3792), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3792), + [sym_charlist] = STATE(3792), + [sym_sigil] = STATE(3792), + [sym_unary_operator] = STATE(3792), + [sym_binary_operator] = STATE(3792), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3792), + [sym_list] = STATE(3792), + [sym_tuple] = STATE(3792), + [sym_bitstring] = STATE(3792), + [sym_map] = STATE(3792), + [sym_boolean] = STATE(3792), + [sym_nil] = STATE(3792), + [sym_call] = STATE(3792), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3792), + [sym_anonymous_function] = STATE(3792), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2590), + [sym_float] = ACTIONS(2590), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2590), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [747] = { + [sym__expression] = STATE(3797), + [sym_block] = STATE(3797), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3797), + [sym_atom] = STATE(3797), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3797), + [sym_charlist] = STATE(3797), + [sym_sigil] = STATE(3797), + [sym_unary_operator] = STATE(3797), + [sym_binary_operator] = STATE(3797), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3797), + [sym_list] = STATE(3797), + [sym_tuple] = STATE(3797), + [sym_bitstring] = STATE(3797), + [sym_map] = STATE(3797), + [sym_boolean] = STATE(3797), + [sym_nil] = STATE(3797), + [sym_call] = STATE(3797), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3797), + [sym_anonymous_function] = STATE(3797), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2592), + [sym_float] = ACTIONS(2592), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2592), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [748] = { + [sym__expression] = STATE(1545), + [sym_block] = STATE(1545), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1545), + [sym_atom] = STATE(1545), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1545), + [sym_charlist] = STATE(1545), + [sym_sigil] = STATE(1545), + [sym_unary_operator] = STATE(1545), + [sym_binary_operator] = STATE(1545), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1545), + [sym_list] = STATE(1545), + [sym_tuple] = STATE(1545), + [sym_bitstring] = STATE(1545), + [sym_map] = STATE(1545), + [sym_boolean] = STATE(1545), + [sym_nil] = STATE(1545), + [sym_call] = STATE(1545), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1545), + [sym_anonymous_function] = STATE(1545), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2488), + [sym_float] = ACTIONS(2488), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2488), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [749] = { + [sym__expression] = STATE(3817), + [sym_block] = STATE(3817), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3817), + [sym_atom] = STATE(3817), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3817), + [sym_charlist] = STATE(3817), + [sym_sigil] = STATE(3817), + [sym_unary_operator] = STATE(3817), + [sym_binary_operator] = STATE(3817), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3817), + [sym_list] = STATE(3817), + [sym_tuple] = STATE(3817), + [sym_bitstring] = STATE(3817), + [sym_map] = STATE(3817), + [sym_boolean] = STATE(3817), + [sym_nil] = STATE(3817), + [sym_call] = STATE(3817), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3817), + [sym_anonymous_function] = STATE(3817), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2594), + [sym_float] = ACTIONS(2594), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2594), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [750] = { + [sym__expression] = STATE(3818), + [sym_block] = STATE(3818), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3818), + [sym_atom] = STATE(3818), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3818), + [sym_charlist] = STATE(3818), + [sym_sigil] = STATE(3818), + [sym_unary_operator] = STATE(3818), + [sym_binary_operator] = STATE(3818), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3818), + [sym_list] = STATE(3818), + [sym_tuple] = STATE(3818), + [sym_bitstring] = STATE(3818), + [sym_map] = STATE(3818), + [sym_boolean] = STATE(3818), + [sym_nil] = STATE(3818), + [sym_call] = STATE(3818), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3818), + [sym_anonymous_function] = STATE(3818), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2596), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [751] = { + [sym__expression] = STATE(3819), + [sym_block] = STATE(3819), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3819), + [sym_atom] = STATE(3819), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3819), + [sym_charlist] = STATE(3819), + [sym_sigil] = STATE(3819), + [sym_unary_operator] = STATE(3819), + [sym_binary_operator] = STATE(3819), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3819), + [sym_list] = STATE(3819), + [sym_tuple] = STATE(3819), + [sym_bitstring] = STATE(3819), + [sym_map] = STATE(3819), + [sym_boolean] = STATE(3819), + [sym_nil] = STATE(3819), + [sym_call] = STATE(3819), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3819), + [sym_anonymous_function] = STATE(3819), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2598), + [sym_float] = ACTIONS(2598), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2598), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [752] = { + [sym__expression] = STATE(2963), + [sym_block] = STATE(2963), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(2963), + [sym_atom] = STATE(2963), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(2963), + [sym_charlist] = STATE(2963), + [sym_sigil] = STATE(2963), + [sym_unary_operator] = STATE(2963), + [sym_binary_operator] = STATE(2963), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(2963), + [sym_list] = STATE(2963), + [sym_tuple] = STATE(2963), + [sym_bitstring] = STATE(2963), + [sym_map] = STATE(2963), + [sym_boolean] = STATE(2963), + [sym_nil] = STATE(2963), + [sym_call] = STATE(2963), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(2963), + [sym_anonymous_function] = STATE(2963), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2434), + [sym_float] = ACTIONS(2434), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2434), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [753] = { + [sym__expression] = STATE(1546), + [sym_block] = STATE(1546), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1546), + [sym_atom] = STATE(1546), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1546), + [sym_charlist] = STATE(1546), + [sym_sigil] = STATE(1546), + [sym_unary_operator] = STATE(1546), + [sym_binary_operator] = STATE(1546), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1546), + [sym_list] = STATE(1546), + [sym_tuple] = STATE(1546), + [sym_bitstring] = STATE(1546), + [sym_map] = STATE(1546), + [sym_boolean] = STATE(1546), + [sym_nil] = STATE(1546), + [sym_call] = STATE(1546), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1546), + [sym_anonymous_function] = STATE(1546), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2486), + [sym_float] = ACTIONS(2486), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2486), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [754] = { + [sym__expression] = STATE(3825), + [sym_block] = STATE(3825), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3825), + [sym_atom] = STATE(3825), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3825), + [sym_charlist] = STATE(3825), + [sym_sigil] = STATE(3825), + [sym_unary_operator] = STATE(3825), + [sym_binary_operator] = STATE(3825), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3825), + [sym_list] = STATE(3825), + [sym_tuple] = STATE(3825), + [sym_bitstring] = STATE(3825), + [sym_map] = STATE(3825), + [sym_boolean] = STATE(3825), + [sym_nil] = STATE(3825), + [sym_call] = STATE(3825), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3825), + [sym_anonymous_function] = STATE(3825), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2600), + [sym_float] = ACTIONS(2600), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2600), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [755] = { + [sym__expression] = STATE(3826), + [sym_block] = STATE(3826), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3826), + [sym_atom] = STATE(3826), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3826), + [sym_charlist] = STATE(3826), + [sym_sigil] = STATE(3826), + [sym_unary_operator] = STATE(3826), + [sym_binary_operator] = STATE(3826), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3826), + [sym_list] = STATE(3826), + [sym_tuple] = STATE(3826), + [sym_bitstring] = STATE(3826), + [sym_map] = STATE(3826), + [sym_boolean] = STATE(3826), + [sym_nil] = STATE(3826), + [sym_call] = STATE(3826), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3826), + [sym_anonymous_function] = STATE(3826), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2602), + [sym_float] = ACTIONS(2602), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2602), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [756] = { + [sym__expression] = STATE(3827), + [sym_block] = STATE(3827), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3827), + [sym_atom] = STATE(3827), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3827), + [sym_charlist] = STATE(3827), + [sym_sigil] = STATE(3827), + [sym_unary_operator] = STATE(3827), + [sym_binary_operator] = STATE(3827), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3827), + [sym_list] = STATE(3827), + [sym_tuple] = STATE(3827), + [sym_bitstring] = STATE(3827), + [sym_map] = STATE(3827), + [sym_boolean] = STATE(3827), + [sym_nil] = STATE(3827), + [sym_call] = STATE(3827), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3827), + [sym_anonymous_function] = STATE(3827), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2604), + [sym_float] = ACTIONS(2604), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2604), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [757] = { + [sym__expression] = STATE(3855), + [sym_block] = STATE(3855), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3855), + [sym_atom] = STATE(3855), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3855), + [sym_charlist] = STATE(3855), + [sym_sigil] = STATE(3855), + [sym_unary_operator] = STATE(3855), + [sym_binary_operator] = STATE(3855), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3855), + [sym_list] = STATE(3855), + [sym_tuple] = STATE(3855), + [sym_bitstring] = STATE(3855), + [sym_map] = STATE(3855), + [sym_boolean] = STATE(3855), + [sym_nil] = STATE(3855), + [sym_call] = STATE(3855), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3855), + [sym_anonymous_function] = STATE(3855), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2606), + [sym_float] = ACTIONS(2606), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2606), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [758] = { + [sym__expression] = STATE(3857), + [sym_block] = STATE(3857), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3857), + [sym_atom] = STATE(3857), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3857), + [sym_charlist] = STATE(3857), + [sym_sigil] = STATE(3857), + [sym_unary_operator] = STATE(3857), + [sym_binary_operator] = STATE(3857), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3857), + [sym_list] = STATE(3857), + [sym_tuple] = STATE(3857), + [sym_bitstring] = STATE(3857), + [sym_map] = STATE(3857), + [sym_boolean] = STATE(3857), + [sym_nil] = STATE(3857), + [sym_call] = STATE(3857), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3857), + [sym_anonymous_function] = STATE(3857), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2608), + [sym_float] = ACTIONS(2608), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2608), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [759] = { + [sym__expression] = STATE(3858), + [sym_block] = STATE(3858), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3858), + [sym_atom] = STATE(3858), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3858), + [sym_charlist] = STATE(3858), + [sym_sigil] = STATE(3858), + [sym_unary_operator] = STATE(3858), + [sym_binary_operator] = STATE(3858), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3858), + [sym_list] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_bitstring] = STATE(3858), + [sym_map] = STATE(3858), + [sym_boolean] = STATE(3858), + [sym_nil] = STATE(3858), + [sym_call] = STATE(3858), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3858), + [sym_anonymous_function] = STATE(3858), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2610), + [sym_float] = ACTIONS(2610), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2610), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [760] = { + [sym__expression] = STATE(3859), + [sym_block] = STATE(3859), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3859), + [sym_atom] = STATE(3859), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3859), + [sym_charlist] = STATE(3859), + [sym_sigil] = STATE(3859), + [sym_unary_operator] = STATE(3859), + [sym_binary_operator] = STATE(3859), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3859), + [sym_list] = STATE(3859), + [sym_tuple] = STATE(3859), + [sym_bitstring] = STATE(3859), + [sym_map] = STATE(3859), + [sym_boolean] = STATE(3859), + [sym_nil] = STATE(3859), + [sym_call] = STATE(3859), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3859), + [sym_anonymous_function] = STATE(3859), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2612), + [sym_float] = ACTIONS(2612), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2612), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [761] = { + [sym__expression] = STATE(3892), + [sym_block] = STATE(3892), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3892), + [sym_atom] = STATE(3892), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3892), + [sym_charlist] = STATE(3892), + [sym_sigil] = STATE(3892), + [sym_unary_operator] = STATE(3892), + [sym_binary_operator] = STATE(3892), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3892), + [sym_list] = STATE(3892), + [sym_tuple] = STATE(3892), + [sym_bitstring] = STATE(3892), + [sym_map] = STATE(3892), + [sym_boolean] = STATE(3892), + [sym_nil] = STATE(3892), + [sym_call] = STATE(3892), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3892), + [sym_anonymous_function] = STATE(3892), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2614), + [sym_float] = ACTIONS(2614), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2614), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [762] = { + [sym__expression] = STATE(3895), + [sym_block] = STATE(3895), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3895), + [sym_atom] = STATE(3895), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3895), + [sym_charlist] = STATE(3895), + [sym_sigil] = STATE(3895), + [sym_unary_operator] = STATE(3895), + [sym_binary_operator] = STATE(3895), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3895), + [sym_list] = STATE(3895), + [sym_tuple] = STATE(3895), + [sym_bitstring] = STATE(3895), + [sym_map] = STATE(3895), + [sym_boolean] = STATE(3895), + [sym_nil] = STATE(3895), + [sym_call] = STATE(3895), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3895), + [sym_anonymous_function] = STATE(3895), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2616), + [sym_float] = ACTIONS(2616), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2616), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [763] = { + [sym__expression] = STATE(3202), + [sym_block] = STATE(3202), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3202), + [sym_atom] = STATE(3202), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3202), + [sym_charlist] = STATE(3202), + [sym_sigil] = STATE(3202), + [sym_unary_operator] = STATE(3202), + [sym_binary_operator] = STATE(3202), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3202), + [sym_list] = STATE(3202), + [sym_tuple] = STATE(3202), + [sym_bitstring] = STATE(3202), + [sym_map] = STATE(3202), + [sym_boolean] = STATE(3202), + [sym_nil] = STATE(3202), + [sym_call] = STATE(3202), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3202), + [sym_anonymous_function] = STATE(3202), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2618), + [sym_float] = ACTIONS(2618), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2618), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [764] = { + [sym__expression] = STATE(3904), + [sym_block] = STATE(3904), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3904), + [sym_atom] = STATE(3904), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3904), + [sym_charlist] = STATE(3904), + [sym_sigil] = STATE(3904), + [sym_unary_operator] = STATE(3904), + [sym_binary_operator] = STATE(3904), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3904), + [sym_list] = STATE(3904), + [sym_tuple] = STATE(3904), + [sym_bitstring] = STATE(3904), + [sym_map] = STATE(3904), + [sym_boolean] = STATE(3904), + [sym_nil] = STATE(3904), + [sym_call] = STATE(3904), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3904), + [sym_anonymous_function] = STATE(3904), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2620), + [sym_float] = ACTIONS(2620), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2620), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [765] = { + [sym__expression] = STATE(3212), + [sym_block] = STATE(3212), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3212), + [sym_atom] = STATE(3212), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3212), + [sym_charlist] = STATE(3212), + [sym_sigil] = STATE(3212), + [sym_unary_operator] = STATE(3212), + [sym_binary_operator] = STATE(3212), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3212), + [sym_list] = STATE(3212), + [sym_tuple] = STATE(3212), + [sym_bitstring] = STATE(3212), + [sym_map] = STATE(3212), + [sym_boolean] = STATE(3212), + [sym_nil] = STATE(3212), + [sym_call] = STATE(3212), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3212), + [sym_anonymous_function] = STATE(3212), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2622), + [sym_float] = ACTIONS(2622), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2622), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [766] = { + [sym__expression] = STATE(1655), + [sym_block] = STATE(1655), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1655), + [sym_atom] = STATE(1655), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1655), + [sym_charlist] = STATE(1655), + [sym_sigil] = STATE(1655), + [sym_unary_operator] = STATE(1655), + [sym_binary_operator] = STATE(1655), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1655), + [sym_list] = STATE(1655), + [sym_tuple] = STATE(1655), + [sym_bitstring] = STATE(1655), + [sym_map] = STATE(1655), + [sym_boolean] = STATE(1655), + [sym_nil] = STATE(1655), + [sym_call] = STATE(1655), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1655), + [sym_anonymous_function] = STATE(1655), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2624), + [sym_float] = ACTIONS(2624), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2624), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [767] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3955), + [sym_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [sym_unary_operator] = STATE(3955), + [sym_binary_operator] = STATE(3955), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3955), + [sym_list] = STATE(3955), + [sym_tuple] = STATE(3955), + [sym_bitstring] = STATE(3955), + [sym_map] = STATE(3955), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2626), + [sym_float] = ACTIONS(2626), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2626), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [768] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2150), + [sym_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2344), + [sym_float] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2344), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [769] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2151), + [sym_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2346), + [sym_float] = ACTIONS(2346), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2346), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [770] = { + [sym__expression] = STATE(3207), + [sym_block] = STATE(3207), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3207), + [sym_atom] = STATE(3207), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3207), + [sym_charlist] = STATE(3207), + [sym_sigil] = STATE(3207), + [sym_unary_operator] = STATE(3207), + [sym_binary_operator] = STATE(3207), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3207), + [sym_list] = STATE(3207), + [sym_tuple] = STATE(3207), + [sym_bitstring] = STATE(3207), + [sym_map] = STATE(3207), + [sym_boolean] = STATE(3207), + [sym_nil] = STATE(3207), + [sym_call] = STATE(3207), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3207), + [sym_anonymous_function] = STATE(3207), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2628), + [sym_float] = ACTIONS(2628), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2628), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [771] = { + [sym__expression] = STATE(2028), + [sym_block] = STATE(2028), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2028), + [sym_atom] = STATE(2028), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2028), + [sym_charlist] = STATE(2028), + [sym_sigil] = STATE(2028), + [sym_unary_operator] = STATE(2028), + [sym_binary_operator] = STATE(2028), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2028), + [sym_list] = STATE(2028), + [sym_tuple] = STATE(2028), + [sym_bitstring] = STATE(2028), + [sym_map] = STATE(2028), + [sym_boolean] = STATE(2028), + [sym_nil] = STATE(2028), + [sym_call] = STATE(2028), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2028), + [sym_anonymous_function] = STATE(2028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2436), + [sym_float] = ACTIONS(2436), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2436), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [772] = { + [sym__expression] = STATE(1656), + [sym_block] = STATE(1656), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1656), + [sym_atom] = STATE(1656), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1656), + [sym_charlist] = STATE(1656), + [sym_sigil] = STATE(1656), + [sym_unary_operator] = STATE(1656), + [sym_binary_operator] = STATE(1656), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1656), + [sym_list] = STATE(1656), + [sym_tuple] = STATE(1656), + [sym_bitstring] = STATE(1656), + [sym_map] = STATE(1656), + [sym_boolean] = STATE(1656), + [sym_nil] = STATE(1656), + [sym_call] = STATE(1656), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1656), + [sym_anonymous_function] = STATE(1656), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2630), + [sym_float] = ACTIONS(2630), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2630), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [773] = { + [sym__expression] = STATE(2154), + [sym_block] = STATE(2154), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2154), + [sym_atom] = STATE(2154), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2154), + [sym_charlist] = STATE(2154), + [sym_sigil] = STATE(2154), + [sym_unary_operator] = STATE(2154), + [sym_binary_operator] = STATE(2154), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2154), + [sym_list] = STATE(2154), + [sym_tuple] = STATE(2154), + [sym_bitstring] = STATE(2154), + [sym_map] = STATE(2154), + [sym_boolean] = STATE(2154), + [sym_nil] = STATE(2154), + [sym_call] = STATE(2154), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2154), + [sym_anonymous_function] = STATE(2154), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2632), + [sym_float] = ACTIONS(2632), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2632), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [774] = { + [sym__expression] = STATE(2155), + [sym_block] = STATE(2155), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2155), + [sym_atom] = STATE(2155), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2155), + [sym_charlist] = STATE(2155), + [sym_sigil] = STATE(2155), + [sym_unary_operator] = STATE(2155), + [sym_binary_operator] = STATE(2155), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2155), + [sym_list] = STATE(2155), + [sym_tuple] = STATE(2155), + [sym_bitstring] = STATE(2155), + [sym_map] = STATE(2155), + [sym_boolean] = STATE(2155), + [sym_nil] = STATE(2155), + [sym_call] = STATE(2155), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2155), + [sym_anonymous_function] = STATE(2155), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2634), + [sym_float] = ACTIONS(2634), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2634), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [775] = { + [sym__expression] = STATE(3673), + [sym_block] = STATE(3673), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3673), + [sym_atom] = STATE(3673), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3673), + [sym_charlist] = STATE(3673), + [sym_sigil] = STATE(3673), + [sym_unary_operator] = STATE(3673), + [sym_binary_operator] = STATE(3673), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3673), + [sym_list] = STATE(3673), + [sym_tuple] = STATE(3673), + [sym_bitstring] = STATE(3673), + [sym_map] = STATE(3673), + [sym_boolean] = STATE(3673), + [sym_nil] = STATE(3673), + [sym_call] = STATE(3673), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3673), + [sym_anonymous_function] = STATE(3673), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2636), + [sym_float] = ACTIONS(2636), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2636), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [776] = { + [sym__expression] = STATE(1680), + [sym_block] = STATE(1680), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1680), + [sym_atom] = STATE(1680), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1680), + [sym_charlist] = STATE(1680), + [sym_sigil] = STATE(1680), + [sym_unary_operator] = STATE(1680), + [sym_binary_operator] = STATE(1680), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1680), + [sym_list] = STATE(1680), + [sym_tuple] = STATE(1680), + [sym_bitstring] = STATE(1680), + [sym_map] = STATE(1680), + [sym_boolean] = STATE(1680), + [sym_nil] = STATE(1680), + [sym_call] = STATE(1680), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1680), + [sym_anonymous_function] = STATE(1680), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2638), + [sym_float] = ACTIONS(2638), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2638), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [777] = { + [sym__expression] = STATE(3001), + [sym_block] = STATE(3001), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3001), + [sym_atom] = STATE(3001), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3001), + [sym_charlist] = STATE(3001), + [sym_sigil] = STATE(3001), + [sym_unary_operator] = STATE(3001), + [sym_binary_operator] = STATE(3001), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3001), + [sym_list] = STATE(3001), + [sym_tuple] = STATE(3001), + [sym_bitstring] = STATE(3001), + [sym_map] = STATE(3001), + [sym_boolean] = STATE(3001), + [sym_nil] = STATE(3001), + [sym_call] = STATE(3001), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3001), + [sym_anonymous_function] = STATE(3001), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2640), + [sym_float] = ACTIONS(2640), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2640), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [778] = { + [sym__expression] = STATE(3000), + [sym_block] = STATE(3000), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3000), + [sym_atom] = STATE(3000), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3000), + [sym_charlist] = STATE(3000), + [sym_sigil] = STATE(3000), + [sym_unary_operator] = STATE(3000), + [sym_binary_operator] = STATE(3000), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3000), + [sym_list] = STATE(3000), + [sym_tuple] = STATE(3000), + [sym_bitstring] = STATE(3000), + [sym_map] = STATE(3000), + [sym_boolean] = STATE(3000), + [sym_nil] = STATE(3000), + [sym_call] = STATE(3000), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3000), + [sym_anonymous_function] = STATE(3000), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(2642), + [sym_float] = ACTIONS(2642), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(2642), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [779] = { + [sym__expression] = STATE(3707), + [sym_block] = STATE(3707), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3707), + [sym_atom] = STATE(3707), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3707), + [sym_charlist] = STATE(3707), + [sym_sigil] = STATE(3707), + [sym_unary_operator] = STATE(3707), + [sym_binary_operator] = STATE(3707), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3707), + [sym_list] = STATE(3707), + [sym_tuple] = STATE(3707), + [sym_bitstring] = STATE(3707), + [sym_map] = STATE(3707), + [sym_boolean] = STATE(3707), + [sym_nil] = STATE(3707), + [sym_call] = STATE(3707), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3707), + [sym_anonymous_function] = STATE(3707), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2644), + [sym_float] = ACTIONS(2644), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2644), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [780] = { + [sym__expression] = STATE(3856), + [sym_block] = STATE(3856), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3856), + [sym_atom] = STATE(3856), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3856), + [sym_charlist] = STATE(3856), + [sym_sigil] = STATE(3856), + [sym_unary_operator] = STATE(3856), + [sym_binary_operator] = STATE(3856), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3856), + [sym_list] = STATE(3856), + [sym_tuple] = STATE(3856), + [sym_bitstring] = STATE(3856), + [sym_map] = STATE(3856), + [sym_boolean] = STATE(3856), + [sym_nil] = STATE(3856), + [sym_call] = STATE(3856), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3856), + [sym_anonymous_function] = STATE(3856), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2646), + [sym_float] = ACTIONS(2646), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2646), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [781] = { + [sym__expression] = STATE(3867), + [sym_block] = STATE(3867), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3867), + [sym_atom] = STATE(3867), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3867), + [sym_charlist] = STATE(3867), + [sym_sigil] = STATE(3867), + [sym_unary_operator] = STATE(3867), + [sym_binary_operator] = STATE(3867), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3867), + [sym_list] = STATE(3867), + [sym_tuple] = STATE(3867), + [sym_bitstring] = STATE(3867), + [sym_map] = STATE(3867), + [sym_boolean] = STATE(3867), + [sym_nil] = STATE(3867), + [sym_call] = STATE(3867), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3867), + [sym_anonymous_function] = STATE(3867), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2648), + [sym_float] = ACTIONS(2648), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2648), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [782] = { + [sym__expression] = STATE(3612), + [sym_block] = STATE(3612), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3612), + [sym_atom] = STATE(3612), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3612), + [sym_charlist] = STATE(3612), + [sym_sigil] = STATE(3612), + [sym_unary_operator] = STATE(3612), + [sym_binary_operator] = STATE(3612), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3612), + [sym_list] = STATE(3612), + [sym_tuple] = STATE(3612), + [sym_bitstring] = STATE(3612), + [sym_map] = STATE(3612), + [sym_boolean] = STATE(3612), + [sym_nil] = STATE(3612), + [sym_call] = STATE(3612), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3612), + [sym_anonymous_function] = STATE(3612), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2650), + [sym_float] = ACTIONS(2650), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2650), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [783] = { + [sym__expression] = STATE(2161), + [sym_block] = STATE(2161), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2161), + [sym_atom] = STATE(2161), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2161), + [sym_charlist] = STATE(2161), + [sym_sigil] = STATE(2161), + [sym_unary_operator] = STATE(2161), + [sym_binary_operator] = STATE(2161), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2161), + [sym_list] = STATE(2161), + [sym_tuple] = STATE(2161), + [sym_bitstring] = STATE(2161), + [sym_map] = STATE(2161), + [sym_boolean] = STATE(2161), + [sym_nil] = STATE(2161), + [sym_call] = STATE(2161), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2161), + [sym_anonymous_function] = STATE(2161), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2652), + [sym_float] = ACTIONS(2652), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2652), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [784] = { + [sym__expression] = STATE(3711), + [sym_block] = STATE(3711), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3711), + [sym_atom] = STATE(3711), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3711), + [sym_charlist] = STATE(3711), + [sym_sigil] = STATE(3711), + [sym_unary_operator] = STATE(3711), + [sym_binary_operator] = STATE(3711), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3711), + [sym_list] = STATE(3711), + [sym_tuple] = STATE(3711), + [sym_bitstring] = STATE(3711), + [sym_map] = STATE(3711), + [sym_boolean] = STATE(3711), + [sym_nil] = STATE(3711), + [sym_call] = STATE(3711), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3711), + [sym_anonymous_function] = STATE(3711), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2654), + [sym_float] = ACTIONS(2654), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2654), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [785] = { + [sym__expression] = STATE(3490), + [sym_block] = STATE(3490), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3490), + [sym_atom] = STATE(3490), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3490), + [sym_charlist] = STATE(3490), + [sym_sigil] = STATE(3490), + [sym_unary_operator] = STATE(3490), + [sym_binary_operator] = STATE(3490), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3490), + [sym_list] = STATE(3490), + [sym_tuple] = STATE(3490), + [sym_bitstring] = STATE(3490), + [sym_map] = STATE(3490), + [sym_boolean] = STATE(3490), + [sym_nil] = STATE(3490), + [sym_call] = STATE(3490), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3490), + [sym_anonymous_function] = STATE(3490), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [786] = { + [sym__expression] = STATE(3173), + [sym_block] = STATE(3173), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3173), + [sym_atom] = STATE(3173), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3173), + [sym_charlist] = STATE(3173), + [sym_sigil] = STATE(3173), + [sym_unary_operator] = STATE(3173), + [sym_binary_operator] = STATE(3173), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3173), + [sym_list] = STATE(3173), + [sym_tuple] = STATE(3173), + [sym_bitstring] = STATE(3173), + [sym_map] = STATE(3173), + [sym_boolean] = STATE(3173), + [sym_nil] = STATE(3173), + [sym_call] = STATE(3173), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3173), + [sym_anonymous_function] = STATE(3173), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2658), + [sym_float] = ACTIONS(2658), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2658), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [787] = { + [sym__expression] = STATE(2688), + [sym_block] = STATE(2688), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2688), + [sym_atom] = STATE(2688), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2688), + [sym_charlist] = STATE(2688), + [sym_sigil] = STATE(2688), + [sym_unary_operator] = STATE(2688), + [sym_binary_operator] = STATE(2688), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2688), + [sym_list] = STATE(2688), + [sym_tuple] = STATE(2688), + [sym_bitstring] = STATE(2688), + [sym_map] = STATE(2688), + [sym_boolean] = STATE(2688), + [sym_nil] = STATE(2688), + [sym_call] = STATE(2688), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2688), + [sym_anonymous_function] = STATE(2688), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2660), + [sym_float] = ACTIONS(2660), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2660), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [788] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [789] = { + [sym__expression] = STATE(1624), + [sym_block] = STATE(1624), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1624), + [sym_atom] = STATE(1624), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1624), + [sym_charlist] = STATE(1624), + [sym_sigil] = STATE(1624), + [sym_unary_operator] = STATE(1624), + [sym_binary_operator] = STATE(1624), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1624), + [sym_list] = STATE(1624), + [sym_tuple] = STATE(1624), + [sym_bitstring] = STATE(1624), + [sym_map] = STATE(1624), + [sym_boolean] = STATE(1624), + [sym_nil] = STATE(1624), + [sym_call] = STATE(1624), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1624), + [sym_anonymous_function] = STATE(1624), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2288), + [sym_float] = ACTIONS(2288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [790] = { + [sym__expression] = STATE(1663), + [sym_block] = STATE(1663), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1663), + [sym_atom] = STATE(1663), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1663), + [sym_charlist] = STATE(1663), + [sym_sigil] = STATE(1663), + [sym_unary_operator] = STATE(1663), + [sym_binary_operator] = STATE(1663), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1663), + [sym_list] = STATE(1663), + [sym_tuple] = STATE(1663), + [sym_bitstring] = STATE(1663), + [sym_map] = STATE(1663), + [sym_boolean] = STATE(1663), + [sym_nil] = STATE(1663), + [sym_call] = STATE(1663), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1663), + [sym_anonymous_function] = STATE(1663), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2662), + [sym_float] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2662), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [791] = { + [sym__expression] = STATE(1879), + [sym_block] = STATE(1879), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1879), + [sym_atom] = STATE(1879), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1879), + [sym_charlist] = STATE(1879), + [sym_sigil] = STATE(1879), + [sym_unary_operator] = STATE(1879), + [sym_binary_operator] = STATE(1879), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1879), + [sym_list] = STATE(1879), + [sym_tuple] = STATE(1879), + [sym_bitstring] = STATE(1879), + [sym_map] = STATE(1879), + [sym_boolean] = STATE(1879), + [sym_nil] = STATE(1879), + [sym_call] = STATE(1879), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1879), + [sym_anonymous_function] = STATE(1879), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1531), + [sym_float] = ACTIONS(1531), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1531), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [792] = { + [sym__expression] = STATE(1923), + [sym_block] = STATE(1923), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(1923), + [sym_atom] = STATE(1923), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1923), + [sym_charlist] = STATE(1923), + [sym_sigil] = STATE(1923), + [sym_unary_operator] = STATE(1923), + [sym_binary_operator] = STATE(1923), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1923), + [sym_list] = STATE(1923), + [sym_tuple] = STATE(1923), + [sym_bitstring] = STATE(1923), + [sym_map] = STATE(1923), + [sym_boolean] = STATE(1923), + [sym_nil] = STATE(1923), + [sym_call] = STATE(1923), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1923), + [sym_anonymous_function] = STATE(1923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2358), + [sym_float] = ACTIONS(2358), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2358), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [793] = { + [sym__expression] = STATE(1888), + [sym_block] = STATE(1888), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1888), + [sym_atom] = STATE(1888), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1888), + [sym_charlist] = STATE(1888), + [sym_sigil] = STATE(1888), + [sym_unary_operator] = STATE(1888), + [sym_binary_operator] = STATE(1888), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1888), + [sym_list] = STATE(1888), + [sym_tuple] = STATE(1888), + [sym_bitstring] = STATE(1888), + [sym_map] = STATE(1888), + [sym_boolean] = STATE(1888), + [sym_nil] = STATE(1888), + [sym_call] = STATE(1888), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1888), + [sym_anonymous_function] = STATE(1888), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [794] = { + [sym__expression] = STATE(1887), + [sym_block] = STATE(1887), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1887), + [sym_atom] = STATE(1887), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1887), + [sym_charlist] = STATE(1887), + [sym_sigil] = STATE(1887), + [sym_unary_operator] = STATE(1887), + [sym_binary_operator] = STATE(1887), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1887), + [sym_list] = STATE(1887), + [sym_tuple] = STATE(1887), + [sym_bitstring] = STATE(1887), + [sym_map] = STATE(1887), + [sym_boolean] = STATE(1887), + [sym_nil] = STATE(1887), + [sym_call] = STATE(1887), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1887), + [sym_anonymous_function] = STATE(1887), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2666), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2666), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [795] = { + [sym__expression] = STATE(3705), + [sym_block] = STATE(3705), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3705), + [sym_atom] = STATE(3705), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3705), + [sym_charlist] = STATE(3705), + [sym_sigil] = STATE(3705), + [sym_unary_operator] = STATE(3705), + [sym_binary_operator] = STATE(3705), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3705), + [sym_list] = STATE(3705), + [sym_tuple] = STATE(3705), + [sym_bitstring] = STATE(3705), + [sym_map] = STATE(3705), + [sym_boolean] = STATE(3705), + [sym_nil] = STATE(3705), + [sym_call] = STATE(3705), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3705), + [sym_anonymous_function] = STATE(3705), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2668), + [sym_float] = ACTIONS(2668), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2668), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [796] = { + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1806), + [sym_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1806), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1806), + [sym_anonymous_function] = STATE(1806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2310), + [sym_float] = ACTIONS(2310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [797] = { + [sym__expression] = STATE(1805), + [sym_block] = STATE(1805), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1805), + [sym_atom] = STATE(1805), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1805), + [sym_charlist] = STATE(1805), + [sym_sigil] = STATE(1805), + [sym_unary_operator] = STATE(1805), + [sym_binary_operator] = STATE(1805), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1805), + [sym_list] = STATE(1805), + [sym_tuple] = STATE(1805), + [sym_bitstring] = STATE(1805), + [sym_map] = STATE(1805), + [sym_boolean] = STATE(1805), + [sym_nil] = STATE(1805), + [sym_call] = STATE(1805), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1805), + [sym_anonymous_function] = STATE(1805), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2312), + [sym_float] = ACTIONS(2312), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2312), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [798] = { + [sym__expression] = STATE(3777), + [sym_block] = STATE(3777), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3777), + [sym_atom] = STATE(3777), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3777), + [sym_charlist] = STATE(3777), + [sym_sigil] = STATE(3777), + [sym_unary_operator] = STATE(3777), + [sym_binary_operator] = STATE(3777), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3777), + [sym_list] = STATE(3777), + [sym_tuple] = STATE(3777), + [sym_bitstring] = STATE(3777), + [sym_map] = STATE(3777), + [sym_boolean] = STATE(3777), + [sym_nil] = STATE(3777), + [sym_call] = STATE(3777), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3777), + [sym_anonymous_function] = STATE(3777), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2670), + [sym_float] = ACTIONS(2670), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2670), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [799] = { + [sym__expression] = STATE(2165), + [sym_block] = STATE(2165), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2165), + [sym_atom] = STATE(2165), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2165), + [sym_charlist] = STATE(2165), + [sym_sigil] = STATE(2165), + [sym_unary_operator] = STATE(2165), + [sym_binary_operator] = STATE(2165), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2165), + [sym_list] = STATE(2165), + [sym_tuple] = STATE(2165), + [sym_bitstring] = STATE(2165), + [sym_map] = STATE(2165), + [sym_boolean] = STATE(2165), + [sym_nil] = STATE(2165), + [sym_call] = STATE(2165), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2165), + [sym_anonymous_function] = STATE(2165), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2672), + [sym_float] = ACTIONS(2672), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [800] = { + [sym__expression] = STATE(3772), + [sym_block] = STATE(3772), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3772), + [sym_atom] = STATE(3772), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3772), + [sym_charlist] = STATE(3772), + [sym_sigil] = STATE(3772), + [sym_unary_operator] = STATE(3772), + [sym_binary_operator] = STATE(3772), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3772), + [sym_list] = STATE(3772), + [sym_tuple] = STATE(3772), + [sym_bitstring] = STATE(3772), + [sym_map] = STATE(3772), + [sym_boolean] = STATE(3772), + [sym_nil] = STATE(3772), + [sym_call] = STATE(3772), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3772), + [sym_anonymous_function] = STATE(3772), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2674), + [sym_float] = ACTIONS(2674), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2674), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [801] = { + [sym__expression] = STATE(3745), + [sym_block] = STATE(3745), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3745), + [sym_atom] = STATE(3745), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3745), + [sym_charlist] = STATE(3745), + [sym_sigil] = STATE(3745), + [sym_unary_operator] = STATE(3745), + [sym_binary_operator] = STATE(3745), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3745), + [sym_list] = STATE(3745), + [sym_tuple] = STATE(3745), + [sym_bitstring] = STATE(3745), + [sym_map] = STATE(3745), + [sym_boolean] = STATE(3745), + [sym_nil] = STATE(3745), + [sym_call] = STATE(3745), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3745), + [sym_anonymous_function] = STATE(3745), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2676), + [sym_float] = ACTIONS(2676), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2676), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [802] = { + [sym__expression] = STATE(2771), + [sym_block] = STATE(2771), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2771), + [sym_atom] = STATE(2771), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2771), + [sym_charlist] = STATE(2771), + [sym_sigil] = STATE(2771), + [sym_unary_operator] = STATE(2771), + [sym_binary_operator] = STATE(2771), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2771), + [sym_list] = STATE(2771), + [sym_tuple] = STATE(2771), + [sym_bitstring] = STATE(2771), + [sym_map] = STATE(2771), + [sym_boolean] = STATE(2771), + [sym_nil] = STATE(2771), + [sym_call] = STATE(2771), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2771), + [sym_anonymous_function] = STATE(2771), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(1425), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [803] = { + [sym__expression] = STATE(3771), + [sym_block] = STATE(3771), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3771), + [sym_atom] = STATE(3771), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3771), + [sym_charlist] = STATE(3771), + [sym_sigil] = STATE(3771), + [sym_unary_operator] = STATE(3771), + [sym_binary_operator] = STATE(3771), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3771), + [sym_list] = STATE(3771), + [sym_tuple] = STATE(3771), + [sym_bitstring] = STATE(3771), + [sym_map] = STATE(3771), + [sym_boolean] = STATE(3771), + [sym_nil] = STATE(3771), + [sym_call] = STATE(3771), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3771), + [sym_anonymous_function] = STATE(3771), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2678), + [sym_float] = ACTIONS(2678), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2678), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [804] = { + [sym__expression] = STATE(3701), + [sym_block] = STATE(3701), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3701), + [sym_atom] = STATE(3701), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3701), + [sym_charlist] = STATE(3701), + [sym_sigil] = STATE(3701), + [sym_unary_operator] = STATE(3701), + [sym_binary_operator] = STATE(3701), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3701), + [sym_list] = STATE(3701), + [sym_tuple] = STATE(3701), + [sym_bitstring] = STATE(3701), + [sym_map] = STATE(3701), + [sym_boolean] = STATE(3701), + [sym_nil] = STATE(3701), + [sym_call] = STATE(3701), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3701), + [sym_anonymous_function] = STATE(3701), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2680), + [sym_float] = ACTIONS(2680), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2680), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [805] = { + [sym__expression] = STATE(3905), + [sym_block] = STATE(3905), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3905), + [sym_atom] = STATE(3905), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3905), + [sym_charlist] = STATE(3905), + [sym_sigil] = STATE(3905), + [sym_unary_operator] = STATE(3905), + [sym_binary_operator] = STATE(3905), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3905), + [sym_list] = STATE(3905), + [sym_tuple] = STATE(3905), + [sym_bitstring] = STATE(3905), + [sym_map] = STATE(3905), + [sym_boolean] = STATE(3905), + [sym_nil] = STATE(3905), + [sym_call] = STATE(3905), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3905), + [sym_anonymous_function] = STATE(3905), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2682), + [sym_float] = ACTIONS(2682), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2682), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [806] = { + [sym__expression] = STATE(2140), + [sym_block] = STATE(2140), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2140), + [sym_atom] = STATE(2140), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2140), + [sym_charlist] = STATE(2140), + [sym_sigil] = STATE(2140), + [sym_unary_operator] = STATE(2140), + [sym_binary_operator] = STATE(2140), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2140), + [sym_list] = STATE(2140), + [sym_tuple] = STATE(2140), + [sym_bitstring] = STATE(2140), + [sym_map] = STATE(2140), + [sym_boolean] = STATE(2140), + [sym_nil] = STATE(2140), + [sym_call] = STATE(2140), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2140), + [sym_anonymous_function] = STATE(2140), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2492), + [sym_float] = ACTIONS(2492), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2492), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [807] = { + [sym__expression] = STATE(2139), + [sym_block] = STATE(2139), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2139), + [sym_atom] = STATE(2139), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2139), + [sym_charlist] = STATE(2139), + [sym_sigil] = STATE(2139), + [sym_unary_operator] = STATE(2139), + [sym_binary_operator] = STATE(2139), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2139), + [sym_list] = STATE(2139), + [sym_tuple] = STATE(2139), + [sym_bitstring] = STATE(2139), + [sym_map] = STATE(2139), + [sym_boolean] = STATE(2139), + [sym_nil] = STATE(2139), + [sym_call] = STATE(2139), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2139), + [sym_anonymous_function] = STATE(2139), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2490), + [sym_float] = ACTIONS(2490), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2490), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [808] = { + [sym__expression] = STATE(3295), + [sym_block] = STATE(3295), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3295), + [sym_atom] = STATE(3295), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3295), + [sym_charlist] = STATE(3295), + [sym_sigil] = STATE(3295), + [sym_unary_operator] = STATE(3295), + [sym_binary_operator] = STATE(3295), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3295), + [sym_list] = STATE(3295), + [sym_tuple] = STATE(3295), + [sym_bitstring] = STATE(3295), + [sym_map] = STATE(3295), + [sym_boolean] = STATE(3295), + [sym_nil] = STATE(3295), + [sym_call] = STATE(3295), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3295), + [sym_anonymous_function] = STATE(3295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2684), + [sym_float] = ACTIONS(2684), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2684), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [809] = { + [sym__expression] = STATE(3296), + [sym_block] = STATE(3296), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3296), + [sym_atom] = STATE(3296), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3296), + [sym_charlist] = STATE(3296), + [sym_sigil] = STATE(3296), + [sym_unary_operator] = STATE(3296), + [sym_binary_operator] = STATE(3296), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3296), + [sym_list] = STATE(3296), + [sym_tuple] = STATE(3296), + [sym_bitstring] = STATE(3296), + [sym_map] = STATE(3296), + [sym_boolean] = STATE(3296), + [sym_nil] = STATE(3296), + [sym_call] = STATE(3296), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3296), + [sym_anonymous_function] = STATE(3296), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2686), + [sym_float] = ACTIONS(2686), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2686), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [810] = { + [sym__expression] = STATE(3906), + [sym_block] = STATE(3906), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3906), + [sym_atom] = STATE(3906), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3906), + [sym_charlist] = STATE(3906), + [sym_sigil] = STATE(3906), + [sym_unary_operator] = STATE(3906), + [sym_binary_operator] = STATE(3906), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3906), + [sym_list] = STATE(3906), + [sym_tuple] = STATE(3906), + [sym_bitstring] = STATE(3906), + [sym_map] = STATE(3906), + [sym_boolean] = STATE(3906), + [sym_nil] = STATE(3906), + [sym_call] = STATE(3906), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3906), + [sym_anonymous_function] = STATE(3906), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2688), + [sym_float] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2688), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [811] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [812] = { + [sym__expression] = STATE(3298), + [sym_block] = STATE(3298), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3298), + [sym_atom] = STATE(3298), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3298), + [sym_charlist] = STATE(3298), + [sym_sigil] = STATE(3298), + [sym_unary_operator] = STATE(3298), + [sym_binary_operator] = STATE(3298), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3298), + [sym_list] = STATE(3298), + [sym_tuple] = STATE(3298), + [sym_bitstring] = STATE(3298), + [sym_map] = STATE(3298), + [sym_boolean] = STATE(3298), + [sym_nil] = STATE(3298), + [sym_call] = STATE(3298), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3298), + [sym_anonymous_function] = STATE(3298), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2690), + [sym_float] = ACTIONS(2690), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2690), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [813] = { + [sym__expression] = STATE(3299), + [sym_block] = STATE(3299), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3299), + [sym_atom] = STATE(3299), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3299), + [sym_charlist] = STATE(3299), + [sym_sigil] = STATE(3299), + [sym_unary_operator] = STATE(3299), + [sym_binary_operator] = STATE(3299), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3299), + [sym_list] = STATE(3299), + [sym_tuple] = STATE(3299), + [sym_bitstring] = STATE(3299), + [sym_map] = STATE(3299), + [sym_boolean] = STATE(3299), + [sym_nil] = STATE(3299), + [sym_call] = STATE(3299), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3299), + [sym_anonymous_function] = STATE(3299), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2692), + [sym_float] = ACTIONS(2692), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2692), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [814] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [815] = { + [sym__expression] = STATE(3770), + [sym_block] = STATE(3770), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3770), + [sym_atom] = STATE(3770), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3770), + [sym_charlist] = STATE(3770), + [sym_sigil] = STATE(3770), + [sym_unary_operator] = STATE(3770), + [sym_binary_operator] = STATE(3770), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3770), + [sym_list] = STATE(3770), + [sym_tuple] = STATE(3770), + [sym_bitstring] = STATE(3770), + [sym_map] = STATE(3770), + [sym_boolean] = STATE(3770), + [sym_nil] = STATE(3770), + [sym_call] = STATE(3770), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3770), + [sym_anonymous_function] = STATE(3770), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2694), + [sym_float] = ACTIONS(2694), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2694), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [816] = { + [sym__expression] = STATE(3767), + [sym_block] = STATE(3767), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3767), + [sym_atom] = STATE(3767), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3767), + [sym_charlist] = STATE(3767), + [sym_sigil] = STATE(3767), + [sym_unary_operator] = STATE(3767), + [sym_binary_operator] = STATE(3767), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3767), + [sym_list] = STATE(3767), + [sym_tuple] = STATE(3767), + [sym_bitstring] = STATE(3767), + [sym_map] = STATE(3767), + [sym_boolean] = STATE(3767), + [sym_nil] = STATE(3767), + [sym_call] = STATE(3767), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3767), + [sym_anonymous_function] = STATE(3767), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2696), + [sym_float] = ACTIONS(2696), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2696), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [817] = { + [sym__expression] = STATE(3300), + [sym_block] = STATE(3300), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3300), + [sym_atom] = STATE(3300), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3300), + [sym_charlist] = STATE(3300), + [sym_sigil] = STATE(3300), + [sym_unary_operator] = STATE(3300), + [sym_binary_operator] = STATE(3300), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3300), + [sym_list] = STATE(3300), + [sym_tuple] = STATE(3300), + [sym_bitstring] = STATE(3300), + [sym_map] = STATE(3300), + [sym_boolean] = STATE(3300), + [sym_nil] = STATE(3300), + [sym_call] = STATE(3300), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3300), + [sym_anonymous_function] = STATE(3300), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2698), + [sym_float] = ACTIONS(2698), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2698), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [818] = { + [sym__expression] = STATE(3762), + [sym_block] = STATE(3762), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3762), + [sym_atom] = STATE(3762), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3762), + [sym_charlist] = STATE(3762), + [sym_sigil] = STATE(3762), + [sym_unary_operator] = STATE(3762), + [sym_binary_operator] = STATE(3762), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3762), + [sym_list] = STATE(3762), + [sym_tuple] = STATE(3762), + [sym_bitstring] = STATE(3762), + [sym_map] = STATE(3762), + [sym_boolean] = STATE(3762), + [sym_nil] = STATE(3762), + [sym_call] = STATE(3762), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3762), + [sym_anonymous_function] = STATE(3762), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2700), + [sym_float] = ACTIONS(2700), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2700), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [819] = { + [sym__expression] = STATE(2129), + [sym_block] = STATE(2129), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2129), + [sym_atom] = STATE(2129), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2129), + [sym_charlist] = STATE(2129), + [sym_sigil] = STATE(2129), + [sym_unary_operator] = STATE(2129), + [sym_binary_operator] = STATE(2129), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2129), + [sym_list] = STATE(2129), + [sym_tuple] = STATE(2129), + [sym_bitstring] = STATE(2129), + [sym_map] = STATE(2129), + [sym_boolean] = STATE(2129), + [sym_nil] = STATE(2129), + [sym_call] = STATE(2129), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2129), + [sym_anonymous_function] = STATE(2129), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2468), + [sym_float] = ACTIONS(2468), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2468), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [820] = { + [sym__expression] = STATE(3301), + [sym_block] = STATE(3301), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3301), + [sym_atom] = STATE(3301), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3301), + [sym_charlist] = STATE(3301), + [sym_sigil] = STATE(3301), + [sym_unary_operator] = STATE(3301), + [sym_binary_operator] = STATE(3301), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3301), + [sym_list] = STATE(3301), + [sym_tuple] = STATE(3301), + [sym_bitstring] = STATE(3301), + [sym_map] = STATE(3301), + [sym_boolean] = STATE(3301), + [sym_nil] = STATE(3301), + [sym_call] = STATE(3301), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3301), + [sym_anonymous_function] = STATE(3301), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2702), + [sym_float] = ACTIONS(2702), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2702), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [821] = { + [sym__expression] = STATE(1719), + [sym_block] = STATE(1719), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1719), + [sym_atom] = STATE(1719), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1719), + [sym_charlist] = STATE(1719), + [sym_sigil] = STATE(1719), + [sym_unary_operator] = STATE(1719), + [sym_binary_operator] = STATE(1719), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1719), + [sym_list] = STATE(1719), + [sym_tuple] = STATE(1719), + [sym_bitstring] = STATE(1719), + [sym_map] = STATE(1719), + [sym_boolean] = STATE(1719), + [sym_nil] = STATE(1719), + [sym_call] = STATE(1719), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1719), + [sym_anonymous_function] = STATE(1719), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2704), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2704), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [822] = { + [sym__expression] = STATE(3851), + [sym_block] = STATE(3851), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3851), + [sym_atom] = STATE(3851), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3851), + [sym_charlist] = STATE(3851), + [sym_sigil] = STATE(3851), + [sym_unary_operator] = STATE(3851), + [sym_binary_operator] = STATE(3851), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3851), + [sym_list] = STATE(3851), + [sym_tuple] = STATE(3851), + [sym_bitstring] = STATE(3851), + [sym_map] = STATE(3851), + [sym_boolean] = STATE(3851), + [sym_nil] = STATE(3851), + [sym_call] = STATE(3851), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3851), + [sym_anonymous_function] = STATE(3851), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2706), + [sym_float] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2706), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [823] = { + [sym__expression] = STATE(1619), + [sym_block] = STATE(1619), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1619), + [sym_atom] = STATE(1619), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1619), + [sym_charlist] = STATE(1619), + [sym_sigil] = STATE(1619), + [sym_unary_operator] = STATE(1619), + [sym_binary_operator] = STATE(1619), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1619), + [sym_list] = STATE(1619), + [sym_tuple] = STATE(1619), + [sym_bitstring] = STATE(1619), + [sym_map] = STATE(1619), + [sym_boolean] = STATE(1619), + [sym_nil] = STATE(1619), + [sym_call] = STATE(1619), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1619), + [sym_anonymous_function] = STATE(1619), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2708), + [sym_float] = ACTIONS(2708), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2708), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [824] = { + [sym__expression] = STATE(3759), + [sym_block] = STATE(3759), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3759), + [sym_atom] = STATE(3759), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3759), + [sym_charlist] = STATE(3759), + [sym_sigil] = STATE(3759), + [sym_unary_operator] = STATE(3759), + [sym_binary_operator] = STATE(3759), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3759), + [sym_list] = STATE(3759), + [sym_tuple] = STATE(3759), + [sym_bitstring] = STATE(3759), + [sym_map] = STATE(3759), + [sym_boolean] = STATE(3759), + [sym_nil] = STATE(3759), + [sym_call] = STATE(3759), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3759), + [sym_anonymous_function] = STATE(3759), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2710), + [sym_float] = ACTIONS(2710), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2710), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [825] = { + [sym__expression] = STATE(3757), + [sym_block] = STATE(3757), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3757), + [sym_atom] = STATE(3757), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3757), + [sym_charlist] = STATE(3757), + [sym_sigil] = STATE(3757), + [sym_unary_operator] = STATE(3757), + [sym_binary_operator] = STATE(3757), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3757), + [sym_list] = STATE(3757), + [sym_tuple] = STATE(3757), + [sym_bitstring] = STATE(3757), + [sym_map] = STATE(3757), + [sym_boolean] = STATE(3757), + [sym_nil] = STATE(3757), + [sym_call] = STATE(3757), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3757), + [sym_anonymous_function] = STATE(3757), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2712), + [sym_float] = ACTIONS(2712), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2712), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [826] = { + [sym__expression] = STATE(1923), + [sym_block] = STATE(1923), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(1923), + [sym_atom] = STATE(1923), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1923), + [sym_charlist] = STATE(1923), + [sym_sigil] = STATE(1923), + [sym_unary_operator] = STATE(1923), + [sym_binary_operator] = STATE(1923), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1923), + [sym_list] = STATE(1923), + [sym_tuple] = STATE(1923), + [sym_bitstring] = STATE(1923), + [sym_map] = STATE(1923), + [sym_boolean] = STATE(1923), + [sym_nil] = STATE(1923), + [sym_call] = STATE(1923), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1923), + [sym_anonymous_function] = STATE(1923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2358), + [sym_float] = ACTIONS(2358), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2358), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [827] = { + [sym__expression] = STATE(3791), + [sym_block] = STATE(3791), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3791), + [sym_atom] = STATE(3791), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3791), + [sym_charlist] = STATE(3791), + [sym_sigil] = STATE(3791), + [sym_unary_operator] = STATE(3791), + [sym_binary_operator] = STATE(3791), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3791), + [sym_list] = STATE(3791), + [sym_tuple] = STATE(3791), + [sym_bitstring] = STATE(3791), + [sym_map] = STATE(3791), + [sym_boolean] = STATE(3791), + [sym_nil] = STATE(3791), + [sym_call] = STATE(3791), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3791), + [sym_anonymous_function] = STATE(3791), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2714), + [sym_float] = ACTIONS(2714), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2714), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [828] = { + [sym__expression] = STATE(3861), + [sym_block] = STATE(3861), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3861), + [sym_atom] = STATE(3861), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3861), + [sym_charlist] = STATE(3861), + [sym_sigil] = STATE(3861), + [sym_unary_operator] = STATE(3861), + [sym_binary_operator] = STATE(3861), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3861), + [sym_list] = STATE(3861), + [sym_tuple] = STATE(3861), + [sym_bitstring] = STATE(3861), + [sym_map] = STATE(3861), + [sym_boolean] = STATE(3861), + [sym_nil] = STATE(3861), + [sym_call] = STATE(3861), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3861), + [sym_anonymous_function] = STATE(3861), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2716), + [sym_float] = ACTIONS(2716), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2716), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [829] = { + [sym__expression] = STATE(3854), + [sym_block] = STATE(3854), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3854), + [sym_atom] = STATE(3854), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3854), + [sym_charlist] = STATE(3854), + [sym_sigil] = STATE(3854), + [sym_unary_operator] = STATE(3854), + [sym_binary_operator] = STATE(3854), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3854), + [sym_list] = STATE(3854), + [sym_tuple] = STATE(3854), + [sym_bitstring] = STATE(3854), + [sym_map] = STATE(3854), + [sym_boolean] = STATE(3854), + [sym_nil] = STATE(3854), + [sym_call] = STATE(3854), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3854), + [sym_anonymous_function] = STATE(3854), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2718), + [sym_float] = ACTIONS(2718), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2718), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [830] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2295), + [sym_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2295), + [sym_charlist] = STATE(2295), + [sym_sigil] = STATE(2295), + [sym_unary_operator] = STATE(2295), + [sym_binary_operator] = STATE(2295), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2295), + [sym_list] = STATE(2295), + [sym_tuple] = STATE(2295), + [sym_bitstring] = STATE(2295), + [sym_map] = STATE(2295), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1643), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1643), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [831] = { + [sym__expression] = STATE(3529), + [sym_block] = STATE(3529), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3529), + [sym_atom] = STATE(3529), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3529), + [sym_charlist] = STATE(3529), + [sym_sigil] = STATE(3529), + [sym_unary_operator] = STATE(3529), + [sym_binary_operator] = STATE(3529), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3529), + [sym_list] = STATE(3529), + [sym_tuple] = STATE(3529), + [sym_bitstring] = STATE(3529), + [sym_map] = STATE(3529), + [sym_boolean] = STATE(3529), + [sym_nil] = STATE(3529), + [sym_call] = STATE(3529), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3529), + [sym_anonymous_function] = STATE(3529), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2720), + [sym_float] = ACTIONS(2720), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2720), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [832] = { + [sym__expression] = STATE(2157), + [sym_block] = STATE(2157), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2157), + [sym_atom] = STATE(2157), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2157), + [sym_charlist] = STATE(2157), + [sym_sigil] = STATE(2157), + [sym_unary_operator] = STATE(2157), + [sym_binary_operator] = STATE(2157), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2157), + [sym_list] = STATE(2157), + [sym_tuple] = STATE(2157), + [sym_bitstring] = STATE(2157), + [sym_map] = STATE(2157), + [sym_boolean] = STATE(2157), + [sym_nil] = STATE(2157), + [sym_call] = STATE(2157), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2157), + [sym_anonymous_function] = STATE(2157), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2722), + [sym_float] = ACTIONS(2722), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2722), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [833] = { + [sym__expression] = STATE(3121), + [sym_block] = STATE(3121), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3121), + [sym_atom] = STATE(3121), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3121), + [sym_charlist] = STATE(3121), + [sym_sigil] = STATE(3121), + [sym_unary_operator] = STATE(3121), + [sym_binary_operator] = STATE(3121), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3121), + [sym_list] = STATE(3121), + [sym_tuple] = STATE(3121), + [sym_bitstring] = STATE(3121), + [sym_map] = STATE(3121), + [sym_boolean] = STATE(3121), + [sym_nil] = STATE(3121), + [sym_call] = STATE(3121), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3121), + [sym_anonymous_function] = STATE(3121), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2724), + [sym_float] = ACTIONS(2724), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2724), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [834] = { + [sym__expression] = STATE(3848), + [sym_block] = STATE(3848), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3848), + [sym_atom] = STATE(3848), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3848), + [sym_charlist] = STATE(3848), + [sym_sigil] = STATE(3848), + [sym_unary_operator] = STATE(3848), + [sym_binary_operator] = STATE(3848), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3848), + [sym_list] = STATE(3848), + [sym_tuple] = STATE(3848), + [sym_bitstring] = STATE(3848), + [sym_map] = STATE(3848), + [sym_boolean] = STATE(3848), + [sym_nil] = STATE(3848), + [sym_call] = STATE(3848), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3848), + [sym_anonymous_function] = STATE(3848), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2726), + [sym_float] = ACTIONS(2726), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2726), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [835] = { + [sym__expression] = STATE(3847), + [sym_block] = STATE(3847), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3847), + [sym_atom] = STATE(3847), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3847), + [sym_charlist] = STATE(3847), + [sym_sigil] = STATE(3847), + [sym_unary_operator] = STATE(3847), + [sym_binary_operator] = STATE(3847), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3847), + [sym_list] = STATE(3847), + [sym_tuple] = STATE(3847), + [sym_bitstring] = STATE(3847), + [sym_map] = STATE(3847), + [sym_boolean] = STATE(3847), + [sym_nil] = STATE(3847), + [sym_call] = STATE(3847), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3847), + [sym_anonymous_function] = STATE(3847), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2728), + [sym_float] = ACTIONS(2728), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2728), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [836] = { + [sym__expression] = STATE(3823), + [sym_block] = STATE(3823), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3823), + [sym_atom] = STATE(3823), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3823), + [sym_charlist] = STATE(3823), + [sym_sigil] = STATE(3823), + [sym_unary_operator] = STATE(3823), + [sym_binary_operator] = STATE(3823), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3823), + [sym_list] = STATE(3823), + [sym_tuple] = STATE(3823), + [sym_bitstring] = STATE(3823), + [sym_map] = STATE(3823), + [sym_boolean] = STATE(3823), + [sym_nil] = STATE(3823), + [sym_call] = STATE(3823), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3823), + [sym_anonymous_function] = STATE(3823), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2730), + [sym_float] = ACTIONS(2730), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2730), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [837] = { + [sym__expression] = STATE(3302), + [sym_block] = STATE(3302), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3302), + [sym_atom] = STATE(3302), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3302), + [sym_charlist] = STATE(3302), + [sym_sigil] = STATE(3302), + [sym_unary_operator] = STATE(3302), + [sym_binary_operator] = STATE(3302), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3302), + [sym_list] = STATE(3302), + [sym_tuple] = STATE(3302), + [sym_bitstring] = STATE(3302), + [sym_map] = STATE(3302), + [sym_boolean] = STATE(3302), + [sym_nil] = STATE(3302), + [sym_call] = STATE(3302), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3302), + [sym_anonymous_function] = STATE(3302), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2732), + [sym_float] = ACTIONS(2732), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2732), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [838] = { + [sym__expression] = STATE(3537), + [sym_block] = STATE(3537), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3537), + [sym_atom] = STATE(3537), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3537), + [sym_charlist] = STATE(3537), + [sym_sigil] = STATE(3537), + [sym_unary_operator] = STATE(3537), + [sym_binary_operator] = STATE(3537), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3537), + [sym_list] = STATE(3537), + [sym_tuple] = STATE(3537), + [sym_bitstring] = STATE(3537), + [sym_map] = STATE(3537), + [sym_boolean] = STATE(3537), + [sym_nil] = STATE(3537), + [sym_call] = STATE(3537), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3537), + [sym_anonymous_function] = STATE(3537), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2734), + [sym_float] = ACTIONS(2734), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2734), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [839] = { + [sym__expression] = STATE(2028), + [sym_block] = STATE(2028), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2028), + [sym_atom] = STATE(2028), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2028), + [sym_charlist] = STATE(2028), + [sym_sigil] = STATE(2028), + [sym_unary_operator] = STATE(2028), + [sym_binary_operator] = STATE(2028), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2028), + [sym_list] = STATE(2028), + [sym_tuple] = STATE(2028), + [sym_bitstring] = STATE(2028), + [sym_map] = STATE(2028), + [sym_boolean] = STATE(2028), + [sym_nil] = STATE(2028), + [sym_call] = STATE(2028), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2028), + [sym_anonymous_function] = STATE(2028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2436), + [sym_float] = ACTIONS(2436), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2436), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [840] = { + [sym__expression] = STATE(1844), + [sym_block] = STATE(1844), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1844), + [sym_atom] = STATE(1844), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1844), + [sym_charlist] = STATE(1844), + [sym_sigil] = STATE(1844), + [sym_unary_operator] = STATE(1844), + [sym_binary_operator] = STATE(1844), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1844), + [sym_list] = STATE(1844), + [sym_tuple] = STATE(1844), + [sym_bitstring] = STATE(1844), + [sym_map] = STATE(1844), + [sym_boolean] = STATE(1844), + [sym_nil] = STATE(1844), + [sym_call] = STATE(1844), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1844), + [sym_anonymous_function] = STATE(1844), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2736), + [sym_float] = ACTIONS(2736), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2736), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [841] = { + [sym__expression] = STATE(2029), + [sym_block] = STATE(2029), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2029), + [sym_atom] = STATE(2029), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2029), + [sym_charlist] = STATE(2029), + [sym_sigil] = STATE(2029), + [sym_unary_operator] = STATE(2029), + [sym_binary_operator] = STATE(2029), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2029), + [sym_list] = STATE(2029), + [sym_tuple] = STATE(2029), + [sym_bitstring] = STATE(2029), + [sym_map] = STATE(2029), + [sym_boolean] = STATE(2029), + [sym_nil] = STATE(2029), + [sym_call] = STATE(2029), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2029), + [sym_anonymous_function] = STATE(2029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2440), + [sym_float] = ACTIONS(2440), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1804), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_CARET] = ACTIONS(1806), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1806), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(1806), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1407), + [sym__not_in] = ACTIONS(61), + }, + [842] = { + [sym__expression] = STATE(2209), + [sym_block] = STATE(2209), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2209), + [sym_atom] = STATE(2209), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2209), + [sym_charlist] = STATE(2209), + [sym_sigil] = STATE(2209), + [sym_unary_operator] = STATE(2209), + [sym_binary_operator] = STATE(2209), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2209), + [sym_list] = STATE(2209), + [sym_tuple] = STATE(2209), + [sym_bitstring] = STATE(2209), + [sym_map] = STATE(2209), + [sym_boolean] = STATE(2209), + [sym_nil] = STATE(2209), + [sym_call] = STATE(2209), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2209), + [sym_anonymous_function] = STATE(2209), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2738), + [sym_float] = ACTIONS(2738), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2738), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [843] = { + [sym__expression] = STATE(2203), + [sym_block] = STATE(2203), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2203), + [sym_atom] = STATE(2203), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2203), + [sym_charlist] = STATE(2203), + [sym_sigil] = STATE(2203), + [sym_unary_operator] = STATE(2203), + [sym_binary_operator] = STATE(2203), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2203), + [sym_list] = STATE(2203), + [sym_tuple] = STATE(2203), + [sym_bitstring] = STATE(2203), + [sym_map] = STATE(2203), + [sym_boolean] = STATE(2203), + [sym_nil] = STATE(2203), + [sym_call] = STATE(2203), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2203), + [sym_anonymous_function] = STATE(2203), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2740), + [sym_float] = ACTIONS(2740), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2740), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [844] = { + [sym__expression] = STATE(1955), + [sym_block] = STATE(1955), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1955), + [sym_atom] = STATE(1955), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1955), + [sym_charlist] = STATE(1955), + [sym_sigil] = STATE(1955), + [sym_unary_operator] = STATE(1955), + [sym_binary_operator] = STATE(1955), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1955), + [sym_list] = STATE(1955), + [sym_tuple] = STATE(1955), + [sym_bitstring] = STATE(1955), + [sym_map] = STATE(1955), + [sym_boolean] = STATE(1955), + [sym_nil] = STATE(1955), + [sym_call] = STATE(1955), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1955), + [sym_anonymous_function] = STATE(1955), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2742), + [sym_float] = ACTIONS(2742), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2742), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [845] = { + [sym__expression] = STATE(2204), + [sym_block] = STATE(2204), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2204), + [sym_atom] = STATE(2204), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2204), + [sym_charlist] = STATE(2204), + [sym_sigil] = STATE(2204), + [sym_unary_operator] = STATE(2204), + [sym_binary_operator] = STATE(2204), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2204), + [sym_list] = STATE(2204), + [sym_tuple] = STATE(2204), + [sym_bitstring] = STATE(2204), + [sym_map] = STATE(2204), + [sym_boolean] = STATE(2204), + [sym_nil] = STATE(2204), + [sym_call] = STATE(2204), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2204), + [sym_anonymous_function] = STATE(2204), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2744), + [sym_float] = ACTIONS(2744), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2744), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [846] = { + [sym__expression] = STATE(1564), + [sym_block] = STATE(1564), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1564), + [sym_atom] = STATE(1564), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1564), + [sym_charlist] = STATE(1564), + [sym_sigil] = STATE(1564), + [sym_unary_operator] = STATE(1564), + [sym_binary_operator] = STATE(1564), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1564), + [sym_list] = STATE(1564), + [sym_tuple] = STATE(1564), + [sym_bitstring] = STATE(1564), + [sym_map] = STATE(1564), + [sym_boolean] = STATE(1564), + [sym_nil] = STATE(1564), + [sym_call] = STATE(1564), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1564), + [sym_anonymous_function] = STATE(1564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2276), + [sym_float] = ACTIONS(2276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [847] = { + [sym__expression] = STATE(1441), + [sym_block] = STATE(1441), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(1441), + [sym_atom] = STATE(1441), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1441), + [sym_charlist] = STATE(1441), + [sym_sigil] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_binary_operator] = STATE(1441), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1441), + [sym_list] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_bitstring] = STATE(1441), + [sym_map] = STATE(1441), + [sym_boolean] = STATE(1441), + [sym_nil] = STATE(1441), + [sym_call] = STATE(1441), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1441), + [sym_anonymous_function] = STATE(1441), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2278), + [sym_float] = ACTIONS(2278), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2278), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [848] = { + [sym__expression] = STATE(1923), + [sym_block] = STATE(1923), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(1923), + [sym_atom] = STATE(1923), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1923), + [sym_charlist] = STATE(1923), + [sym_sigil] = STATE(1923), + [sym_unary_operator] = STATE(1923), + [sym_binary_operator] = STATE(1923), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1923), + [sym_list] = STATE(1923), + [sym_tuple] = STATE(1923), + [sym_bitstring] = STATE(1923), + [sym_map] = STATE(1923), + [sym_boolean] = STATE(1923), + [sym_nil] = STATE(1923), + [sym_call] = STATE(1923), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1923), + [sym_anonymous_function] = STATE(1923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2358), + [sym_float] = ACTIONS(2358), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2358), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [849] = { + [sym__expression] = STATE(3303), + [sym_block] = STATE(3303), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3303), + [sym_atom] = STATE(3303), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3303), + [sym_charlist] = STATE(3303), + [sym_sigil] = STATE(3303), + [sym_unary_operator] = STATE(3303), + [sym_binary_operator] = STATE(3303), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3303), + [sym_list] = STATE(3303), + [sym_tuple] = STATE(3303), + [sym_bitstring] = STATE(3303), + [sym_map] = STATE(3303), + [sym_boolean] = STATE(3303), + [sym_nil] = STATE(3303), + [sym_call] = STATE(3303), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3303), + [sym_anonymous_function] = STATE(3303), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2746), + [sym_float] = ACTIONS(2746), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2746), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [850] = { + [sym__expression] = STATE(3304), + [sym_block] = STATE(3304), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3304), + [sym_atom] = STATE(3304), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3304), + [sym_charlist] = STATE(3304), + [sym_sigil] = STATE(3304), + [sym_unary_operator] = STATE(3304), + [sym_binary_operator] = STATE(3304), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3304), + [sym_list] = STATE(3304), + [sym_tuple] = STATE(3304), + [sym_bitstring] = STATE(3304), + [sym_map] = STATE(3304), + [sym_boolean] = STATE(3304), + [sym_nil] = STATE(3304), + [sym_call] = STATE(3304), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3304), + [sym_anonymous_function] = STATE(3304), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2748), + [sym_float] = ACTIONS(2748), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2748), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [851] = { + [sym__expression] = STATE(2205), + [sym_block] = STATE(2205), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2205), + [sym_atom] = STATE(2205), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2205), + [sym_charlist] = STATE(2205), + [sym_sigil] = STATE(2205), + [sym_unary_operator] = STATE(2205), + [sym_binary_operator] = STATE(2205), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2205), + [sym_list] = STATE(2205), + [sym_tuple] = STATE(2205), + [sym_bitstring] = STATE(2205), + [sym_map] = STATE(2205), + [sym_boolean] = STATE(2205), + [sym_nil] = STATE(2205), + [sym_call] = STATE(2205), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2205), + [sym_anonymous_function] = STATE(2205), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2750), + [sym_float] = ACTIONS(2750), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2750), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [852] = { + [sym__expression] = STATE(2240), + [sym_block] = STATE(2240), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2240), + [sym_atom] = STATE(2240), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2240), + [sym_charlist] = STATE(2240), + [sym_sigil] = STATE(2240), + [sym_unary_operator] = STATE(2240), + [sym_binary_operator] = STATE(2240), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2240), + [sym_list] = STATE(2240), + [sym_tuple] = STATE(2240), + [sym_bitstring] = STATE(2240), + [sym_map] = STATE(2240), + [sym_boolean] = STATE(2240), + [sym_nil] = STATE(2240), + [sym_call] = STATE(2240), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2240), + [sym_anonymous_function] = STATE(2240), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2752), + [sym_float] = ACTIONS(2752), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2752), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [853] = { + [sym__expression] = STATE(3428), + [sym_block] = STATE(3428), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3428), + [sym_atom] = STATE(3428), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3428), + [sym_charlist] = STATE(3428), + [sym_sigil] = STATE(3428), + [sym_unary_operator] = STATE(3428), + [sym_binary_operator] = STATE(3428), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3428), + [sym_list] = STATE(3428), + [sym_tuple] = STATE(3428), + [sym_bitstring] = STATE(3428), + [sym_map] = STATE(3428), + [sym_boolean] = STATE(3428), + [sym_nil] = STATE(3428), + [sym_call] = STATE(3428), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3428), + [sym_anonymous_function] = STATE(3428), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(1461), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [854] = { + [sym__expression] = STATE(2206), + [sym_block] = STATE(2206), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2206), + [sym_atom] = STATE(2206), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2206), + [sym_charlist] = STATE(2206), + [sym_sigil] = STATE(2206), + [sym_unary_operator] = STATE(2206), + [sym_binary_operator] = STATE(2206), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2206), + [sym_list] = STATE(2206), + [sym_tuple] = STATE(2206), + [sym_bitstring] = STATE(2206), + [sym_map] = STATE(2206), + [sym_boolean] = STATE(2206), + [sym_nil] = STATE(2206), + [sym_call] = STATE(2206), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2206), + [sym_anonymous_function] = STATE(2206), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2754), + [sym_float] = ACTIONS(2754), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2754), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [855] = { + [sym__expression] = STATE(2207), + [sym_block] = STATE(2207), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2207), + [sym_atom] = STATE(2207), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2207), + [sym_charlist] = STATE(2207), + [sym_sigil] = STATE(2207), + [sym_unary_operator] = STATE(2207), + [sym_binary_operator] = STATE(2207), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2207), + [sym_list] = STATE(2207), + [sym_tuple] = STATE(2207), + [sym_bitstring] = STATE(2207), + [sym_map] = STATE(2207), + [sym_boolean] = STATE(2207), + [sym_nil] = STATE(2207), + [sym_call] = STATE(2207), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2207), + [sym_anonymous_function] = STATE(2207), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2756), + [sym_float] = ACTIONS(2756), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2756), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [856] = { + [sym__expression] = STATE(2208), + [sym_block] = STATE(2208), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2208), + [sym_atom] = STATE(2208), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2208), + [sym_charlist] = STATE(2208), + [sym_sigil] = STATE(2208), + [sym_unary_operator] = STATE(2208), + [sym_binary_operator] = STATE(2208), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2208), + [sym_list] = STATE(2208), + [sym_tuple] = STATE(2208), + [sym_bitstring] = STATE(2208), + [sym_map] = STATE(2208), + [sym_boolean] = STATE(2208), + [sym_nil] = STATE(2208), + [sym_call] = STATE(2208), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2208), + [sym_anonymous_function] = STATE(2208), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2758), + [sym_float] = ACTIONS(2758), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2758), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [857] = { + [sym__expression] = STATE(2028), + [sym_block] = STATE(2028), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2028), + [sym_atom] = STATE(2028), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2028), + [sym_charlist] = STATE(2028), + [sym_sigil] = STATE(2028), + [sym_unary_operator] = STATE(2028), + [sym_binary_operator] = STATE(2028), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2028), + [sym_list] = STATE(2028), + [sym_tuple] = STATE(2028), + [sym_bitstring] = STATE(2028), + [sym_map] = STATE(2028), + [sym_boolean] = STATE(2028), + [sym_nil] = STATE(2028), + [sym_call] = STATE(2028), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2028), + [sym_anonymous_function] = STATE(2028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2436), + [sym_float] = ACTIONS(2436), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2436), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [858] = { + [sym__expression] = STATE(2029), + [sym_block] = STATE(2029), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2029), + [sym_atom] = STATE(2029), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2029), + [sym_charlist] = STATE(2029), + [sym_sigil] = STATE(2029), + [sym_unary_operator] = STATE(2029), + [sym_binary_operator] = STATE(2029), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2029), + [sym_list] = STATE(2029), + [sym_tuple] = STATE(2029), + [sym_bitstring] = STATE(2029), + [sym_map] = STATE(2029), + [sym_boolean] = STATE(2029), + [sym_nil] = STATE(2029), + [sym_call] = STATE(2029), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2029), + [sym_anonymous_function] = STATE(2029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2440), + [sym_float] = ACTIONS(2440), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [859] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [860] = { + [sym__expression] = STATE(3865), + [sym_block] = STATE(3865), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3865), + [sym_atom] = STATE(3865), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3865), + [sym_charlist] = STATE(3865), + [sym_sigil] = STATE(3865), + [sym_unary_operator] = STATE(3865), + [sym_binary_operator] = STATE(3865), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3865), + [sym_list] = STATE(3865), + [sym_tuple] = STATE(3865), + [sym_bitstring] = STATE(3865), + [sym_map] = STATE(3865), + [sym_boolean] = STATE(3865), + [sym_nil] = STATE(3865), + [sym_call] = STATE(3865), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3865), + [sym_anonymous_function] = STATE(3865), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2760), + [sym_float] = ACTIONS(2760), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2760), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [861] = { + [sym__expression] = STATE(3926), + [sym_block] = STATE(3926), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3926), + [sym_atom] = STATE(3926), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3926), + [sym_charlist] = STATE(3926), + [sym_sigil] = STATE(3926), + [sym_unary_operator] = STATE(3926), + [sym_binary_operator] = STATE(3926), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3926), + [sym_list] = STATE(3926), + [sym_tuple] = STATE(3926), + [sym_bitstring] = STATE(3926), + [sym_map] = STATE(3926), + [sym_boolean] = STATE(3926), + [sym_nil] = STATE(3926), + [sym_call] = STATE(3926), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3926), + [sym_anonymous_function] = STATE(3926), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2762), + [sym_float] = ACTIONS(2762), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2762), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [862] = { + [sym__expression] = STATE(3658), + [sym_block] = STATE(3658), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3658), + [sym_atom] = STATE(3658), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3658), + [sym_charlist] = STATE(3658), + [sym_sigil] = STATE(3658), + [sym_unary_operator] = STATE(3658), + [sym_binary_operator] = STATE(3658), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3658), + [sym_list] = STATE(3658), + [sym_tuple] = STATE(3658), + [sym_bitstring] = STATE(3658), + [sym_map] = STATE(3658), + [sym_boolean] = STATE(3658), + [sym_nil] = STATE(3658), + [sym_call] = STATE(3658), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3658), + [sym_anonymous_function] = STATE(3658), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2764), + [sym_float] = ACTIONS(2764), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2764), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [863] = { + [sym__expression] = STATE(3864), + [sym_block] = STATE(3864), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3864), + [sym_atom] = STATE(3864), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3864), + [sym_charlist] = STATE(3864), + [sym_sigil] = STATE(3864), + [sym_unary_operator] = STATE(3864), + [sym_binary_operator] = STATE(3864), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3864), + [sym_list] = STATE(3864), + [sym_tuple] = STATE(3864), + [sym_bitstring] = STATE(3864), + [sym_map] = STATE(3864), + [sym_boolean] = STATE(3864), + [sym_nil] = STATE(3864), + [sym_call] = STATE(3864), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3864), + [sym_anonymous_function] = STATE(3864), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2766), + [sym_float] = ACTIONS(2766), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2766), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [864] = { + [sym__expression] = STATE(3843), + [sym_block] = STATE(3843), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3843), + [sym_atom] = STATE(3843), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3843), + [sym_charlist] = STATE(3843), + [sym_sigil] = STATE(3843), + [sym_unary_operator] = STATE(3843), + [sym_binary_operator] = STATE(3843), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3843), + [sym_list] = STATE(3843), + [sym_tuple] = STATE(3843), + [sym_bitstring] = STATE(3843), + [sym_map] = STATE(3843), + [sym_boolean] = STATE(3843), + [sym_nil] = STATE(3843), + [sym_call] = STATE(3843), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3843), + [sym_anonymous_function] = STATE(3843), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2768), + [sym_float] = ACTIONS(2768), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2768), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [865] = { + [sym__expression] = STATE(3663), + [sym_block] = STATE(3663), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3663), + [sym_atom] = STATE(3663), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3663), + [sym_charlist] = STATE(3663), + [sym_sigil] = STATE(3663), + [sym_unary_operator] = STATE(3663), + [sym_binary_operator] = STATE(3663), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3663), + [sym_list] = STATE(3663), + [sym_tuple] = STATE(3663), + [sym_bitstring] = STATE(3663), + [sym_map] = STATE(3663), + [sym_boolean] = STATE(3663), + [sym_nil] = STATE(3663), + [sym_call] = STATE(3663), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3663), + [sym_anonymous_function] = STATE(3663), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2770), + [sym_float] = ACTIONS(2770), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2770), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [866] = { + [sym__expression] = STATE(3339), + [sym_block] = STATE(3339), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3339), + [sym_atom] = STATE(3339), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3339), + [sym_charlist] = STATE(3339), + [sym_sigil] = STATE(3339), + [sym_unary_operator] = STATE(3339), + [sym_binary_operator] = STATE(3339), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3339), + [sym_list] = STATE(3339), + [sym_tuple] = STATE(3339), + [sym_bitstring] = STATE(3339), + [sym_map] = STATE(3339), + [sym_boolean] = STATE(3339), + [sym_nil] = STATE(3339), + [sym_call] = STATE(3339), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3339), + [sym_anonymous_function] = STATE(3339), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2772), + [sym_float] = ACTIONS(2772), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2772), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [867] = { + [sym__expression] = STATE(3920), + [sym_block] = STATE(3920), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3920), + [sym_atom] = STATE(3920), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3920), + [sym_charlist] = STATE(3920), + [sym_sigil] = STATE(3920), + [sym_unary_operator] = STATE(3920), + [sym_binary_operator] = STATE(3920), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3920), + [sym_list] = STATE(3920), + [sym_tuple] = STATE(3920), + [sym_bitstring] = STATE(3920), + [sym_map] = STATE(3920), + [sym_boolean] = STATE(3920), + [sym_nil] = STATE(3920), + [sym_call] = STATE(3920), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3920), + [sym_anonymous_function] = STATE(3920), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2774), + [sym_float] = ACTIONS(2774), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [868] = { + [sym__expression] = STATE(3842), + [sym_block] = STATE(3842), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3842), + [sym_atom] = STATE(3842), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3842), + [sym_charlist] = STATE(3842), + [sym_sigil] = STATE(3842), + [sym_unary_operator] = STATE(3842), + [sym_binary_operator] = STATE(3842), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3842), + [sym_list] = STATE(3842), + [sym_tuple] = STATE(3842), + [sym_bitstring] = STATE(3842), + [sym_map] = STATE(3842), + [sym_boolean] = STATE(3842), + [sym_nil] = STATE(3842), + [sym_call] = STATE(3842), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3842), + [sym_anonymous_function] = STATE(3842), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2776), + [sym_float] = ACTIONS(2776), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2776), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [869] = { + [sym__expression] = STATE(3841), + [sym_block] = STATE(3841), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3841), + [sym_atom] = STATE(3841), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3841), + [sym_charlist] = STATE(3841), + [sym_sigil] = STATE(3841), + [sym_unary_operator] = STATE(3841), + [sym_binary_operator] = STATE(3841), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3841), + [sym_list] = STATE(3841), + [sym_tuple] = STATE(3841), + [sym_bitstring] = STATE(3841), + [sym_map] = STATE(3841), + [sym_boolean] = STATE(3841), + [sym_nil] = STATE(3841), + [sym_call] = STATE(3841), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3841), + [sym_anonymous_function] = STATE(3841), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2778), + [sym_float] = ACTIONS(2778), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2778), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [870] = { + [sym__expression] = STATE(2932), + [sym_block] = STATE(2932), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2932), + [sym_atom] = STATE(2932), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2932), + [sym_charlist] = STATE(2932), + [sym_sigil] = STATE(2932), + [sym_unary_operator] = STATE(2932), + [sym_binary_operator] = STATE(2932), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2932), + [sym_list] = STATE(2932), + [sym_tuple] = STATE(2932), + [sym_bitstring] = STATE(2932), + [sym_map] = STATE(2932), + [sym_boolean] = STATE(2932), + [sym_nil] = STATE(2932), + [sym_call] = STATE(2932), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2932), + [sym_anonymous_function] = STATE(2932), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(2780), + [sym_float] = ACTIONS(2780), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(2780), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [871] = { + [sym__expression] = STATE(3477), + [sym_block] = STATE(3477), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3477), + [sym_atom] = STATE(3477), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3477), + [sym_charlist] = STATE(3477), + [sym_sigil] = STATE(3477), + [sym_unary_operator] = STATE(3477), + [sym_binary_operator] = STATE(3477), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3477), + [sym_list] = STATE(3477), + [sym_tuple] = STATE(3477), + [sym_bitstring] = STATE(3477), + [sym_map] = STATE(3477), + [sym_boolean] = STATE(3477), + [sym_nil] = STATE(3477), + [sym_call] = STATE(3477), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3477), + [sym_anonymous_function] = STATE(3477), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2782), + [sym_float] = ACTIONS(2782), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2782), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [872] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3840), + [sym_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3840), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3840), + [sym_anonymous_function] = STATE(3840), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2784), + [sym_float] = ACTIONS(2784), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2784), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [873] = { + [sym__expression] = STATE(3838), + [sym_block] = STATE(3838), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3838), + [sym_atom] = STATE(3838), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3838), + [sym_charlist] = STATE(3838), + [sym_sigil] = STATE(3838), + [sym_unary_operator] = STATE(3838), + [sym_binary_operator] = STATE(3838), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3838), + [sym_list] = STATE(3838), + [sym_tuple] = STATE(3838), + [sym_bitstring] = STATE(3838), + [sym_map] = STATE(3838), + [sym_boolean] = STATE(3838), + [sym_nil] = STATE(3838), + [sym_call] = STATE(3838), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3838), + [sym_anonymous_function] = STATE(3838), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2786), + [sym_float] = ACTIONS(2786), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2786), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [874] = { + [sym__expression] = STATE(3837), + [sym_block] = STATE(3837), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3837), + [sym_atom] = STATE(3837), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3837), + [sym_charlist] = STATE(3837), + [sym_sigil] = STATE(3837), + [sym_unary_operator] = STATE(3837), + [sym_binary_operator] = STATE(3837), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3837), + [sym_list] = STATE(3837), + [sym_tuple] = STATE(3837), + [sym_bitstring] = STATE(3837), + [sym_map] = STATE(3837), + [sym_boolean] = STATE(3837), + [sym_nil] = STATE(3837), + [sym_call] = STATE(3837), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3837), + [sym_anonymous_function] = STATE(3837), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2788), + [sym_float] = ACTIONS(2788), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2788), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [875] = { + [sym__expression] = STATE(2845), + [sym_block] = STATE(2845), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2845), + [sym_atom] = STATE(2845), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2845), + [sym_charlist] = STATE(2845), + [sym_sigil] = STATE(2845), + [sym_unary_operator] = STATE(2845), + [sym_binary_operator] = STATE(2845), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2845), + [sym_list] = STATE(2845), + [sym_tuple] = STATE(2845), + [sym_bitstring] = STATE(2845), + [sym_map] = STATE(2845), + [sym_boolean] = STATE(2845), + [sym_nil] = STATE(2845), + [sym_call] = STATE(2845), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2845), + [sym_anonymous_function] = STATE(2845), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2790), + [sym_float] = ACTIONS(2790), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2790), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [876] = { + [sym__expression] = STATE(3166), + [sym_block] = STATE(3166), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3166), + [sym_atom] = STATE(3166), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3166), + [sym_charlist] = STATE(3166), + [sym_sigil] = STATE(3166), + [sym_unary_operator] = STATE(3166), + [sym_binary_operator] = STATE(3166), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3166), + [sym_list] = STATE(3166), + [sym_tuple] = STATE(3166), + [sym_bitstring] = STATE(3166), + [sym_map] = STATE(3166), + [sym_boolean] = STATE(3166), + [sym_nil] = STATE(3166), + [sym_call] = STATE(3166), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3166), + [sym_anonymous_function] = STATE(3166), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2792), + [sym_float] = ACTIONS(2792), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2792), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [877] = { + [sym__expression] = STATE(3409), + [sym_block] = STATE(3409), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3409), + [sym_atom] = STATE(3409), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3409), + [sym_charlist] = STATE(3409), + [sym_sigil] = STATE(3409), + [sym_unary_operator] = STATE(3409), + [sym_binary_operator] = STATE(3409), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3409), + [sym_list] = STATE(3409), + [sym_tuple] = STATE(3409), + [sym_bitstring] = STATE(3409), + [sym_map] = STATE(3409), + [sym_boolean] = STATE(3409), + [sym_nil] = STATE(3409), + [sym_call] = STATE(3409), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3409), + [sym_anonymous_function] = STATE(3409), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2794), + [sym_float] = ACTIONS(2794), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2794), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [878] = { + [sym__expression] = STATE(3171), + [sym_block] = STATE(3171), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3171), + [sym_atom] = STATE(3171), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3171), + [sym_charlist] = STATE(3171), + [sym_sigil] = STATE(3171), + [sym_unary_operator] = STATE(3171), + [sym_binary_operator] = STATE(3171), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3171), + [sym_list] = STATE(3171), + [sym_tuple] = STATE(3171), + [sym_bitstring] = STATE(3171), + [sym_map] = STATE(3171), + [sym_boolean] = STATE(3171), + [sym_nil] = STATE(3171), + [sym_call] = STATE(3171), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3171), + [sym_anonymous_function] = STATE(3171), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2796), + [sym_float] = ACTIONS(2796), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2796), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [879] = { + [sym__expression] = STATE(3836), + [sym_block] = STATE(3836), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3836), + [sym_atom] = STATE(3836), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3836), + [sym_charlist] = STATE(3836), + [sym_sigil] = STATE(3836), + [sym_unary_operator] = STATE(3836), + [sym_binary_operator] = STATE(3836), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3836), + [sym_list] = STATE(3836), + [sym_tuple] = STATE(3836), + [sym_bitstring] = STATE(3836), + [sym_map] = STATE(3836), + [sym_boolean] = STATE(3836), + [sym_nil] = STATE(3836), + [sym_call] = STATE(3836), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3836), + [sym_anonymous_function] = STATE(3836), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2798), + [sym_float] = ACTIONS(2798), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2798), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [880] = { + [sym__expression] = STATE(3835), + [sym_block] = STATE(3835), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3835), + [sym_atom] = STATE(3835), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3835), + [sym_charlist] = STATE(3835), + [sym_sigil] = STATE(3835), + [sym_unary_operator] = STATE(3835), + [sym_binary_operator] = STATE(3835), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3835), + [sym_list] = STATE(3835), + [sym_tuple] = STATE(3835), + [sym_bitstring] = STATE(3835), + [sym_map] = STATE(3835), + [sym_boolean] = STATE(3835), + [sym_nil] = STATE(3835), + [sym_call] = STATE(3835), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3835), + [sym_anonymous_function] = STATE(3835), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2800), + [sym_float] = ACTIONS(2800), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2800), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [881] = { + [sym__expression] = STATE(3834), + [sym_block] = STATE(3834), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3834), + [sym_atom] = STATE(3834), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3834), + [sym_charlist] = STATE(3834), + [sym_sigil] = STATE(3834), + [sym_unary_operator] = STATE(3834), + [sym_binary_operator] = STATE(3834), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3834), + [sym_list] = STATE(3834), + [sym_tuple] = STATE(3834), + [sym_bitstring] = STATE(3834), + [sym_map] = STATE(3834), + [sym_boolean] = STATE(3834), + [sym_nil] = STATE(3834), + [sym_call] = STATE(3834), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3834), + [sym_anonymous_function] = STATE(3834), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2802), + [sym_float] = ACTIONS(2802), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2802), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [882] = { + [sym__expression] = STATE(3951), + [sym_block] = STATE(3951), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3951), + [sym_atom] = STATE(3951), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3951), + [sym_charlist] = STATE(3951), + [sym_sigil] = STATE(3951), + [sym_unary_operator] = STATE(3951), + [sym_binary_operator] = STATE(3951), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3951), + [sym_list] = STATE(3951), + [sym_tuple] = STATE(3951), + [sym_bitstring] = STATE(3951), + [sym_map] = STATE(3951), + [sym_boolean] = STATE(3951), + [sym_nil] = STATE(3951), + [sym_call] = STATE(3951), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3951), + [sym_anonymous_function] = STATE(3951), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2804), + [sym_float] = ACTIONS(2804), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2804), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [883] = { + [sym__expression] = STATE(3947), + [sym_block] = STATE(3947), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3947), + [sym_atom] = STATE(3947), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3947), + [sym_charlist] = STATE(3947), + [sym_sigil] = STATE(3947), + [sym_unary_operator] = STATE(3947), + [sym_binary_operator] = STATE(3947), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3947), + [sym_list] = STATE(3947), + [sym_tuple] = STATE(3947), + [sym_bitstring] = STATE(3947), + [sym_map] = STATE(3947), + [sym_boolean] = STATE(3947), + [sym_nil] = STATE(3947), + [sym_call] = STATE(3947), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3947), + [sym_anonymous_function] = STATE(3947), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2806), + [sym_float] = ACTIONS(2806), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2806), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [884] = { + [sym__expression] = STATE(3833), + [sym_block] = STATE(3833), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3833), + [sym_atom] = STATE(3833), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3833), + [sym_charlist] = STATE(3833), + [sym_sigil] = STATE(3833), + [sym_unary_operator] = STATE(3833), + [sym_binary_operator] = STATE(3833), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3833), + [sym_list] = STATE(3833), + [sym_tuple] = STATE(3833), + [sym_bitstring] = STATE(3833), + [sym_map] = STATE(3833), + [sym_boolean] = STATE(3833), + [sym_nil] = STATE(3833), + [sym_call] = STATE(3833), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3833), + [sym_anonymous_function] = STATE(3833), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2808), + [sym_float] = ACTIONS(2808), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2808), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [885] = { + [sym__expression] = STATE(3469), + [sym_block] = STATE(3469), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3469), + [sym_atom] = STATE(3469), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3469), + [sym_charlist] = STATE(3469), + [sym_sigil] = STATE(3469), + [sym_unary_operator] = STATE(3469), + [sym_binary_operator] = STATE(3469), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3469), + [sym_list] = STATE(3469), + [sym_tuple] = STATE(3469), + [sym_bitstring] = STATE(3469), + [sym_map] = STATE(3469), + [sym_boolean] = STATE(3469), + [sym_nil] = STATE(3469), + [sym_call] = STATE(3469), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3469), + [sym_anonymous_function] = STATE(3469), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2280), + [sym_float] = ACTIONS(2280), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2280), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [886] = { + [sym__expression] = STATE(3832), + [sym_block] = STATE(3832), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3832), + [sym_atom] = STATE(3832), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3832), + [sym_charlist] = STATE(3832), + [sym_sigil] = STATE(3832), + [sym_unary_operator] = STATE(3832), + [sym_binary_operator] = STATE(3832), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3832), + [sym_list] = STATE(3832), + [sym_tuple] = STATE(3832), + [sym_bitstring] = STATE(3832), + [sym_map] = STATE(3832), + [sym_boolean] = STATE(3832), + [sym_nil] = STATE(3832), + [sym_call] = STATE(3832), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3832), + [sym_anonymous_function] = STATE(3832), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2810), + [sym_float] = ACTIONS(2810), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2810), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [887] = { + [sym__expression] = STATE(3831), + [sym_block] = STATE(3831), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3831), + [sym_atom] = STATE(3831), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3831), + [sym_charlist] = STATE(3831), + [sym_sigil] = STATE(3831), + [sym_unary_operator] = STATE(3831), + [sym_binary_operator] = STATE(3831), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3831), + [sym_list] = STATE(3831), + [sym_tuple] = STATE(3831), + [sym_bitstring] = STATE(3831), + [sym_map] = STATE(3831), + [sym_boolean] = STATE(3831), + [sym_nil] = STATE(3831), + [sym_call] = STATE(3831), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3831), + [sym_anonymous_function] = STATE(3831), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2812), + [sym_float] = ACTIONS(2812), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2812), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [888] = { + [sym__expression] = STATE(3790), + [sym_block] = STATE(3790), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3790), + [sym_atom] = STATE(3790), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3790), + [sym_charlist] = STATE(3790), + [sym_sigil] = STATE(3790), + [sym_unary_operator] = STATE(3790), + [sym_binary_operator] = STATE(3790), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3790), + [sym_list] = STATE(3790), + [sym_tuple] = STATE(3790), + [sym_bitstring] = STATE(3790), + [sym_map] = STATE(3790), + [sym_boolean] = STATE(3790), + [sym_nil] = STATE(3790), + [sym_call] = STATE(3790), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3790), + [sym_anonymous_function] = STATE(3790), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2814), + [sym_float] = ACTIONS(2814), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2814), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [889] = { + [sym__expression] = STATE(3891), + [sym_block] = STATE(3891), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3891), + [sym_atom] = STATE(3891), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3891), + [sym_charlist] = STATE(3891), + [sym_sigil] = STATE(3891), + [sym_unary_operator] = STATE(3891), + [sym_binary_operator] = STATE(3891), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3891), + [sym_list] = STATE(3891), + [sym_tuple] = STATE(3891), + [sym_bitstring] = STATE(3891), + [sym_map] = STATE(3891), + [sym_boolean] = STATE(3891), + [sym_nil] = STATE(3891), + [sym_call] = STATE(3891), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3891), + [sym_anonymous_function] = STATE(3891), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(1333), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [890] = { + [sym__expression] = STATE(2868), + [sym_block] = STATE(2868), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2868), + [sym_atom] = STATE(2868), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2868), + [sym_charlist] = STATE(2868), + [sym_sigil] = STATE(2868), + [sym_unary_operator] = STATE(2868), + [sym_binary_operator] = STATE(2868), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2868), + [sym_list] = STATE(2868), + [sym_tuple] = STATE(2868), + [sym_bitstring] = STATE(2868), + [sym_map] = STATE(2868), + [sym_boolean] = STATE(2868), + [sym_nil] = STATE(2868), + [sym_call] = STATE(2868), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2868), + [sym_anonymous_function] = STATE(2868), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2816), + [sym_float] = ACTIONS(2816), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2816), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [891] = { + [sym__expression] = STATE(3963), + [sym_block] = STATE(3963), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3963), + [sym_atom] = STATE(3963), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3963), + [sym_charlist] = STATE(3963), + [sym_sigil] = STATE(3963), + [sym_unary_operator] = STATE(3963), + [sym_binary_operator] = STATE(3963), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3963), + [sym_list] = STATE(3963), + [sym_tuple] = STATE(3963), + [sym_bitstring] = STATE(3963), + [sym_map] = STATE(3963), + [sym_boolean] = STATE(3963), + [sym_nil] = STATE(3963), + [sym_call] = STATE(3963), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3963), + [sym_anonymous_function] = STATE(3963), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2818), + [sym_float] = ACTIONS(2818), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2818), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [892] = { + [sym__expression] = STATE(3681), + [sym_block] = STATE(3681), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3681), + [sym_atom] = STATE(3681), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3681), + [sym_charlist] = STATE(3681), + [sym_sigil] = STATE(3681), + [sym_unary_operator] = STATE(3681), + [sym_binary_operator] = STATE(3681), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3681), + [sym_list] = STATE(3681), + [sym_tuple] = STATE(3681), + [sym_bitstring] = STATE(3681), + [sym_map] = STATE(3681), + [sym_boolean] = STATE(3681), + [sym_nil] = STATE(3681), + [sym_call] = STATE(3681), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3681), + [sym_anonymous_function] = STATE(3681), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2820), + [sym_float] = ACTIONS(2820), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2820), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [893] = { + [sym__expression] = STATE(3683), + [sym_block] = STATE(3683), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3683), + [sym_atom] = STATE(3683), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3683), + [sym_charlist] = STATE(3683), + [sym_sigil] = STATE(3683), + [sym_unary_operator] = STATE(3683), + [sym_binary_operator] = STATE(3683), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3683), + [sym_list] = STATE(3683), + [sym_tuple] = STATE(3683), + [sym_bitstring] = STATE(3683), + [sym_map] = STATE(3683), + [sym_boolean] = STATE(3683), + [sym_nil] = STATE(3683), + [sym_call] = STATE(3683), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3683), + [sym_anonymous_function] = STATE(3683), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2822), + [sym_float] = ACTIONS(2822), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2822), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [894] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [895] = { + [sym__expression] = STATE(2168), + [sym_block] = STATE(2168), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2168), + [sym_atom] = STATE(2168), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2168), + [sym_charlist] = STATE(2168), + [sym_sigil] = STATE(2168), + [sym_unary_operator] = STATE(2168), + [sym_binary_operator] = STATE(2168), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2168), + [sym_list] = STATE(2168), + [sym_tuple] = STATE(2168), + [sym_bitstring] = STATE(2168), + [sym_map] = STATE(2168), + [sym_boolean] = STATE(2168), + [sym_nil] = STATE(2168), + [sym_call] = STATE(2168), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2168), + [sym_anonymous_function] = STATE(2168), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2824), + [sym_float] = ACTIONS(2824), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2824), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [896] = { + [sym__expression] = STATE(2954), + [sym_block] = STATE(2954), + [sym__identifier] = STATE(114), + [sym_identifier] = STATE(114), + [sym_special_identifier] = STATE(114), + [sym_alias] = STATE(2954), + [sym_atom] = STATE(2954), + [sym__quoted_i_double] = STATE(2732), + [sym__quoted_i_single] = STATE(2731), + [sym__quoted_i_heredoc_single] = STATE(2731), + [sym__quoted_i_heredoc_double] = STATE(2732), + [sym_string] = STATE(2954), + [sym_charlist] = STATE(2954), + [sym_sigil] = STATE(2954), + [sym_unary_operator] = STATE(2954), + [sym_binary_operator] = STATE(2954), + [sym_operator_identifier] = STATE(5368), + [sym_dot] = STATE(2954), + [sym_list] = STATE(2954), + [sym_tuple] = STATE(2954), + [sym_bitstring] = STATE(2954), + [sym_map] = STATE(2954), + [sym_boolean] = STATE(2954), + [sym_nil] = STATE(2954), + [sym_call] = STATE(2954), + [sym__call_on_call] = STATE(2730), + [sym__local_call_with_arguments] = STATE(2730), + [sym__parenthesised_local_call_with_arguments] = STATE(2106), + [sym__local_call_without_arguments] = STATE(2730), + [sym__remote_call] = STATE(2730), + [sym__parenthesised_remote_call] = STATE(2106), + [sym__remote_dot] = STATE(126), + [sym__anonymous_call] = STATE(2106), + [sym__anonymous_dot] = STATE(5271), + [sym_access_call] = STATE(2954), + [sym_anonymous_function] = STATE(2954), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(831), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2094), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [sym_integer] = ACTIONS(1621), + [sym_float] = ACTIONS(1621), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2102), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_CARET] = ACTIONS(2104), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2104), + [anon_sym_PERCENT] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(854), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(862), + [anon_sym_not] = ACTIONS(2104), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_nil] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_LT_LT] = ACTIONS(875), + [sym_char] = ACTIONS(1621), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(879), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(881), + [sym__not_in] = ACTIONS(61), + }, + [897] = { + [sym__expression] = STATE(3469), + [sym_block] = STATE(3469), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3469), + [sym_atom] = STATE(3469), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3469), + [sym_charlist] = STATE(3469), + [sym_sigil] = STATE(3469), + [sym_unary_operator] = STATE(3469), + [sym_binary_operator] = STATE(3469), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3469), + [sym_list] = STATE(3469), + [sym_tuple] = STATE(3469), + [sym_bitstring] = STATE(3469), + [sym_map] = STATE(3469), + [sym_boolean] = STATE(3469), + [sym_nil] = STATE(3469), + [sym_call] = STATE(3469), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3469), + [sym_anonymous_function] = STATE(3469), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2280), + [sym_float] = ACTIONS(2280), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2280), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [898] = { + [sym__expression] = STATE(3192), + [sym_block] = STATE(3192), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3192), + [sym_atom] = STATE(3192), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3192), + [sym_charlist] = STATE(3192), + [sym_sigil] = STATE(3192), + [sym_unary_operator] = STATE(3192), + [sym_binary_operator] = STATE(3192), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3192), + [sym_list] = STATE(3192), + [sym_tuple] = STATE(3192), + [sym_bitstring] = STATE(3192), + [sym_map] = STATE(3192), + [sym_boolean] = STATE(3192), + [sym_nil] = STATE(3192), + [sym_call] = STATE(3192), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3192), + [sym_anonymous_function] = STATE(3192), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(1257), + [sym_float] = ACTIONS(1257), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(1257), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [899] = { + [sym__expression] = STATE(3470), + [sym_block] = STATE(3470), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3470), + [sym_atom] = STATE(3470), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3470), + [sym_charlist] = STATE(3470), + [sym_sigil] = STATE(3470), + [sym_unary_operator] = STATE(3470), + [sym_binary_operator] = STATE(3470), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3470), + [sym_list] = STATE(3470), + [sym_tuple] = STATE(3470), + [sym_bitstring] = STATE(3470), + [sym_map] = STATE(3470), + [sym_boolean] = STATE(3470), + [sym_nil] = STATE(3470), + [sym_call] = STATE(3470), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3470), + [sym_anonymous_function] = STATE(3470), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2282), + [sym_float] = ACTIONS(2282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [900] = { + [sym__expression] = STATE(2847), + [sym_block] = STATE(2847), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2847), + [sym_atom] = STATE(2847), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2847), + [sym_charlist] = STATE(2847), + [sym_sigil] = STATE(2847), + [sym_unary_operator] = STATE(2847), + [sym_binary_operator] = STATE(2847), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2847), + [sym_list] = STATE(2847), + [sym_tuple] = STATE(2847), + [sym_bitstring] = STATE(2847), + [sym_map] = STATE(2847), + [sym_boolean] = STATE(2847), + [sym_nil] = STATE(2847), + [sym_call] = STATE(2847), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2847), + [sym_anonymous_function] = STATE(2847), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2826), + [sym_float] = ACTIONS(2826), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2826), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [901] = { + [sym__expression] = STATE(3594), + [sym_block] = STATE(3594), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3594), + [sym_atom] = STATE(3594), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3594), + [sym_charlist] = STATE(3594), + [sym_sigil] = STATE(3594), + [sym_unary_operator] = STATE(3594), + [sym_binary_operator] = STATE(3594), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3594), + [sym_list] = STATE(3594), + [sym_tuple] = STATE(3594), + [sym_bitstring] = STATE(3594), + [sym_map] = STATE(3594), + [sym_boolean] = STATE(3594), + [sym_nil] = STATE(3594), + [sym_call] = STATE(3594), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3594), + [sym_anonymous_function] = STATE(3594), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2828), + [sym_float] = ACTIONS(2828), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2828), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [902] = { + [sym__expression] = STATE(2866), + [sym_block] = STATE(2866), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2866), + [sym_atom] = STATE(2866), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2866), + [sym_charlist] = STATE(2866), + [sym_sigil] = STATE(2866), + [sym_unary_operator] = STATE(2866), + [sym_binary_operator] = STATE(2866), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2866), + [sym_list] = STATE(2866), + [sym_tuple] = STATE(2866), + [sym_bitstring] = STATE(2866), + [sym_map] = STATE(2866), + [sym_boolean] = STATE(2866), + [sym_nil] = STATE(2866), + [sym_call] = STATE(2866), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2866), + [sym_anonymous_function] = STATE(2866), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2830), + [sym_float] = ACTIONS(2830), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2830), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [903] = { + [sym__expression] = STATE(3643), + [sym_block] = STATE(3643), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3643), + [sym_atom] = STATE(3643), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3643), + [sym_charlist] = STATE(3643), + [sym_sigil] = STATE(3643), + [sym_unary_operator] = STATE(3643), + [sym_binary_operator] = STATE(3643), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3643), + [sym_list] = STATE(3643), + [sym_tuple] = STATE(3643), + [sym_bitstring] = STATE(3643), + [sym_map] = STATE(3643), + [sym_boolean] = STATE(3643), + [sym_nil] = STATE(3643), + [sym_call] = STATE(3643), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3643), + [sym_anonymous_function] = STATE(3643), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2304), + [sym_float] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2304), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [904] = { + [sym__expression] = STATE(3470), + [sym_block] = STATE(3470), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3470), + [sym_atom] = STATE(3470), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3470), + [sym_charlist] = STATE(3470), + [sym_sigil] = STATE(3470), + [sym_unary_operator] = STATE(3470), + [sym_binary_operator] = STATE(3470), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3470), + [sym_list] = STATE(3470), + [sym_tuple] = STATE(3470), + [sym_bitstring] = STATE(3470), + [sym_map] = STATE(3470), + [sym_boolean] = STATE(3470), + [sym_nil] = STATE(3470), + [sym_call] = STATE(3470), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3470), + [sym_anonymous_function] = STATE(3470), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2282), + [sym_float] = ACTIONS(2282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [905] = { + [sym__expression] = STATE(3754), + [sym_block] = STATE(3754), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3754), + [sym_atom] = STATE(3754), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3754), + [sym_charlist] = STATE(3754), + [sym_sigil] = STATE(3754), + [sym_unary_operator] = STATE(3754), + [sym_binary_operator] = STATE(3754), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3754), + [sym_list] = STATE(3754), + [sym_tuple] = STATE(3754), + [sym_bitstring] = STATE(3754), + [sym_map] = STATE(3754), + [sym_boolean] = STATE(3754), + [sym_nil] = STATE(3754), + [sym_call] = STATE(3754), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3754), + [sym_anonymous_function] = STATE(3754), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2832), + [sym_float] = ACTIONS(2832), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2832), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [906] = { + [sym__expression] = STATE(1887), + [sym_block] = STATE(1887), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1887), + [sym_atom] = STATE(1887), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1887), + [sym_charlist] = STATE(1887), + [sym_sigil] = STATE(1887), + [sym_unary_operator] = STATE(1887), + [sym_binary_operator] = STATE(1887), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1887), + [sym_list] = STATE(1887), + [sym_tuple] = STATE(1887), + [sym_bitstring] = STATE(1887), + [sym_map] = STATE(1887), + [sym_boolean] = STATE(1887), + [sym_nil] = STATE(1887), + [sym_call] = STATE(1887), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1887), + [sym_anonymous_function] = STATE(1887), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2666), + [sym_float] = ACTIONS(2666), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2666), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [907] = { + [sym__expression] = STATE(2863), + [sym_block] = STATE(2863), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2863), + [sym_atom] = STATE(2863), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2863), + [sym_charlist] = STATE(2863), + [sym_sigil] = STATE(2863), + [sym_unary_operator] = STATE(2863), + [sym_binary_operator] = STATE(2863), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2863), + [sym_list] = STATE(2863), + [sym_tuple] = STATE(2863), + [sym_bitstring] = STATE(2863), + [sym_map] = STATE(2863), + [sym_boolean] = STATE(2863), + [sym_nil] = STATE(2863), + [sym_call] = STATE(2863), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2863), + [sym_anonymous_function] = STATE(2863), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2834), + [sym_float] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2834), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [908] = { + [sym__expression] = STATE(3752), + [sym_block] = STATE(3752), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3752), + [sym_atom] = STATE(3752), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3752), + [sym_charlist] = STATE(3752), + [sym_sigil] = STATE(3752), + [sym_unary_operator] = STATE(3752), + [sym_binary_operator] = STATE(3752), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3752), + [sym_list] = STATE(3752), + [sym_tuple] = STATE(3752), + [sym_bitstring] = STATE(3752), + [sym_map] = STATE(3752), + [sym_boolean] = STATE(3752), + [sym_nil] = STATE(3752), + [sym_call] = STATE(3752), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3752), + [sym_anonymous_function] = STATE(3752), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2836), + [sym_float] = ACTIONS(2836), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2836), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [909] = { + [sym__expression] = STATE(3488), + [sym_block] = STATE(3488), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3488), + [sym_atom] = STATE(3488), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3488), + [sym_charlist] = STATE(3488), + [sym_sigil] = STATE(3488), + [sym_unary_operator] = STATE(3488), + [sym_binary_operator] = STATE(3488), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3488), + [sym_list] = STATE(3488), + [sym_tuple] = STATE(3488), + [sym_bitstring] = STATE(3488), + [sym_map] = STATE(3488), + [sym_boolean] = STATE(3488), + [sym_nil] = STATE(3488), + [sym_call] = STATE(3488), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3488), + [sym_anonymous_function] = STATE(3488), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2838), + [sym_float] = ACTIONS(2838), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2838), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [910] = { + [sym__expression] = STATE(3305), + [sym_block] = STATE(3305), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3305), + [sym_atom] = STATE(3305), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3305), + [sym_charlist] = STATE(3305), + [sym_sigil] = STATE(3305), + [sym_unary_operator] = STATE(3305), + [sym_binary_operator] = STATE(3305), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3305), + [sym_list] = STATE(3305), + [sym_tuple] = STATE(3305), + [sym_bitstring] = STATE(3305), + [sym_map] = STATE(3305), + [sym_boolean] = STATE(3305), + [sym_nil] = STATE(3305), + [sym_call] = STATE(3305), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3305), + [sym_anonymous_function] = STATE(3305), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2840), + [sym_float] = ACTIONS(2840), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [911] = { + [sym__expression] = STATE(3306), + [sym_block] = STATE(3306), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3306), + [sym_atom] = STATE(3306), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3306), + [sym_charlist] = STATE(3306), + [sym_sigil] = STATE(3306), + [sym_unary_operator] = STATE(3306), + [sym_binary_operator] = STATE(3306), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3306), + [sym_list] = STATE(3306), + [sym_tuple] = STATE(3306), + [sym_bitstring] = STATE(3306), + [sym_map] = STATE(3306), + [sym_boolean] = STATE(3306), + [sym_nil] = STATE(3306), + [sym_call] = STATE(3306), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3306), + [sym_anonymous_function] = STATE(3306), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2842), + [sym_float] = ACTIONS(2842), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2842), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [912] = { + [sym__expression] = STATE(3307), + [sym_block] = STATE(3307), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3307), + [sym_atom] = STATE(3307), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3307), + [sym_charlist] = STATE(3307), + [sym_sigil] = STATE(3307), + [sym_unary_operator] = STATE(3307), + [sym_binary_operator] = STATE(3307), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3307), + [sym_list] = STATE(3307), + [sym_tuple] = STATE(3307), + [sym_bitstring] = STATE(3307), + [sym_map] = STATE(3307), + [sym_boolean] = STATE(3307), + [sym_nil] = STATE(3307), + [sym_call] = STATE(3307), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3307), + [sym_anonymous_function] = STATE(3307), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2844), + [sym_float] = ACTIONS(2844), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2844), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [913] = { + [sym__expression] = STATE(2862), + [sym_block] = STATE(2862), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2862), + [sym_atom] = STATE(2862), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2862), + [sym_charlist] = STATE(2862), + [sym_sigil] = STATE(2862), + [sym_unary_operator] = STATE(2862), + [sym_binary_operator] = STATE(2862), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2862), + [sym_list] = STATE(2862), + [sym_tuple] = STATE(2862), + [sym_bitstring] = STATE(2862), + [sym_map] = STATE(2862), + [sym_boolean] = STATE(2862), + [sym_nil] = STATE(2862), + [sym_call] = STATE(2862), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2862), + [sym_anonymous_function] = STATE(2862), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2846), + [sym_float] = ACTIONS(2846), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2846), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [914] = { + [sym__expression] = STATE(3480), + [sym_block] = STATE(3480), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3480), + [sym_atom] = STATE(3480), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3480), + [sym_charlist] = STATE(3480), + [sym_sigil] = STATE(3480), + [sym_unary_operator] = STATE(3480), + [sym_binary_operator] = STATE(3480), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3480), + [sym_list] = STATE(3480), + [sym_tuple] = STATE(3480), + [sym_bitstring] = STATE(3480), + [sym_map] = STATE(3480), + [sym_boolean] = STATE(3480), + [sym_nil] = STATE(3480), + [sym_call] = STATE(3480), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3480), + [sym_anonymous_function] = STATE(3480), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2848), + [sym_float] = ACTIONS(2848), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2848), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [915] = { + [sym__expression] = STATE(1805), + [sym_block] = STATE(1805), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1805), + [sym_atom] = STATE(1805), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1805), + [sym_charlist] = STATE(1805), + [sym_sigil] = STATE(1805), + [sym_unary_operator] = STATE(1805), + [sym_binary_operator] = STATE(1805), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1805), + [sym_list] = STATE(1805), + [sym_tuple] = STATE(1805), + [sym_bitstring] = STATE(1805), + [sym_map] = STATE(1805), + [sym_boolean] = STATE(1805), + [sym_nil] = STATE(1805), + [sym_call] = STATE(1805), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1805), + [sym_anonymous_function] = STATE(1805), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2312), + [sym_float] = ACTIONS(2312), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2312), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [916] = { + [sym__expression] = STATE(1806), + [sym_block] = STATE(1806), + [sym__identifier] = STATE(124), + [sym_identifier] = STATE(124), + [sym_special_identifier] = STATE(124), + [sym_alias] = STATE(1806), + [sym_atom] = STATE(1806), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1806), + [sym_charlist] = STATE(1806), + [sym_sigil] = STATE(1806), + [sym_unary_operator] = STATE(1806), + [sym_binary_operator] = STATE(1806), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1806), + [sym_list] = STATE(1806), + [sym_tuple] = STATE(1806), + [sym_bitstring] = STATE(1806), + [sym_map] = STATE(1806), + [sym_boolean] = STATE(1806), + [sym_nil] = STATE(1806), + [sym_call] = STATE(1806), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(100), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1806), + [sym_anonymous_function] = STATE(1806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2130), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2310), + [sym_float] = ACTIONS(2310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2136), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_CARET] = ACTIONS(2138), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2138), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(269), + [anon_sym_not] = ACTIONS(2138), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(273), + [sym__not_in] = ACTIONS(61), + }, + [917] = { + [sym__expression] = STATE(1888), + [sym_block] = STATE(1888), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1888), + [sym_atom] = STATE(1888), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1888), + [sym_charlist] = STATE(1888), + [sym_sigil] = STATE(1888), + [sym_unary_operator] = STATE(1888), + [sym_binary_operator] = STATE(1888), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1888), + [sym_list] = STATE(1888), + [sym_tuple] = STATE(1888), + [sym_bitstring] = STATE(1888), + [sym_map] = STATE(1888), + [sym_boolean] = STATE(1888), + [sym_nil] = STATE(1888), + [sym_call] = STATE(1888), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1888), + [sym_anonymous_function] = STATE(1888), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [918] = { + [sym__expression] = STATE(3179), + [sym_block] = STATE(3179), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3179), + [sym_atom] = STATE(3179), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3179), + [sym_charlist] = STATE(3179), + [sym_sigil] = STATE(3179), + [sym_unary_operator] = STATE(3179), + [sym_binary_operator] = STATE(3179), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3179), + [sym_list] = STATE(3179), + [sym_tuple] = STATE(3179), + [sym_bitstring] = STATE(3179), + [sym_map] = STATE(3179), + [sym_boolean] = STATE(3179), + [sym_nil] = STATE(3179), + [sym_call] = STATE(3179), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3179), + [sym_anonymous_function] = STATE(3179), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2850), + [sym_float] = ACTIONS(2850), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2850), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [919] = { + [sym__expression] = STATE(2261), + [sym_block] = STATE(2261), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2261), + [sym_atom] = STATE(2261), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2261), + [sym_charlist] = STATE(2261), + [sym_sigil] = STATE(2261), + [sym_unary_operator] = STATE(2261), + [sym_binary_operator] = STATE(2261), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2261), + [sym_list] = STATE(2261), + [sym_tuple] = STATE(2261), + [sym_bitstring] = STATE(2261), + [sym_map] = STATE(2261), + [sym_boolean] = STATE(2261), + [sym_nil] = STATE(2261), + [sym_call] = STATE(2261), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2261), + [sym_anonymous_function] = STATE(2261), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2852), + [sym_float] = ACTIONS(2852), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2852), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [920] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [921] = { + [sym__expression] = STATE(2263), + [sym_block] = STATE(2263), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2263), + [sym_atom] = STATE(2263), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2263), + [sym_charlist] = STATE(2263), + [sym_sigil] = STATE(2263), + [sym_unary_operator] = STATE(2263), + [sym_binary_operator] = STATE(2263), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2263), + [sym_list] = STATE(2263), + [sym_tuple] = STATE(2263), + [sym_bitstring] = STATE(2263), + [sym_map] = STATE(2263), + [sym_boolean] = STATE(2263), + [sym_nil] = STATE(2263), + [sym_call] = STATE(2263), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2263), + [sym_anonymous_function] = STATE(2263), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2854), + [sym_float] = ACTIONS(2854), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2122), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2124), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2854), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1567), + [sym__not_in] = ACTIONS(61), + }, + [922] = { + [sym__expression] = STATE(2861), + [sym_block] = STATE(2861), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2861), + [sym_atom] = STATE(2861), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2861), + [sym_charlist] = STATE(2861), + [sym_sigil] = STATE(2861), + [sym_unary_operator] = STATE(2861), + [sym_binary_operator] = STATE(2861), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2861), + [sym_list] = STATE(2861), + [sym_tuple] = STATE(2861), + [sym_bitstring] = STATE(2861), + [sym_map] = STATE(2861), + [sym_boolean] = STATE(2861), + [sym_nil] = STATE(2861), + [sym_call] = STATE(2861), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2861), + [sym_anonymous_function] = STATE(2861), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2856), + [sym_float] = ACTIONS(2856), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2856), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [923] = { + [sym__expression] = STATE(3922), + [sym_block] = STATE(3922), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3922), + [sym_atom] = STATE(3922), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3922), + [sym_charlist] = STATE(3922), + [sym_sigil] = STATE(3922), + [sym_unary_operator] = STATE(3922), + [sym_binary_operator] = STATE(3922), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3922), + [sym_list] = STATE(3922), + [sym_tuple] = STATE(3922), + [sym_bitstring] = STATE(3922), + [sym_map] = STATE(3922), + [sym_boolean] = STATE(3922), + [sym_nil] = STATE(3922), + [sym_call] = STATE(3922), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3922), + [sym_anonymous_function] = STATE(3922), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2858), + [sym_float] = ACTIONS(2858), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2858), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [924] = { + [sym__expression] = STATE(2100), + [sym_block] = STATE(2100), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(2100), + [sym_atom] = STATE(2100), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2100), + [sym_charlist] = STATE(2100), + [sym_sigil] = STATE(2100), + [sym_unary_operator] = STATE(2100), + [sym_binary_operator] = STATE(2100), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2100), + [sym_list] = STATE(2100), + [sym_tuple] = STATE(2100), + [sym_bitstring] = STATE(2100), + [sym_map] = STATE(2100), + [sym_boolean] = STATE(2100), + [sym_nil] = STATE(2100), + [sym_call] = STATE(2100), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2100), + [sym_anonymous_function] = STATE(2100), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2860), + [sym_float] = ACTIONS(2860), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2860), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [925] = { + [sym__expression] = STATE(1977), + [sym_block] = STATE(1977), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1977), + [sym_atom] = STATE(1977), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1977), + [sym_charlist] = STATE(1977), + [sym_sigil] = STATE(1977), + [sym_unary_operator] = STATE(1977), + [sym_binary_operator] = STATE(1977), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1977), + [sym_list] = STATE(1977), + [sym_tuple] = STATE(1977), + [sym_bitstring] = STATE(1977), + [sym_map] = STATE(1977), + [sym_boolean] = STATE(1977), + [sym_nil] = STATE(1977), + [sym_call] = STATE(1977), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1977), + [sym_anonymous_function] = STATE(1977), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2862), + [sym_float] = ACTIONS(2862), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2862), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [926] = { + [sym__expression] = STATE(3909), + [sym_block] = STATE(3909), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3909), + [sym_atom] = STATE(3909), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3909), + [sym_charlist] = STATE(3909), + [sym_sigil] = STATE(3909), + [sym_unary_operator] = STATE(3909), + [sym_binary_operator] = STATE(3909), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3909), + [sym_list] = STATE(3909), + [sym_tuple] = STATE(3909), + [sym_bitstring] = STATE(3909), + [sym_map] = STATE(3909), + [sym_boolean] = STATE(3909), + [sym_nil] = STATE(3909), + [sym_call] = STATE(3909), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3909), + [sym_anonymous_function] = STATE(3909), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2864), + [sym_float] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2864), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [927] = { + [sym__expression] = STATE(3666), + [sym_block] = STATE(3666), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3666), + [sym_atom] = STATE(3666), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3666), + [sym_charlist] = STATE(3666), + [sym_sigil] = STATE(3666), + [sym_unary_operator] = STATE(3666), + [sym_binary_operator] = STATE(3666), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3666), + [sym_list] = STATE(3666), + [sym_tuple] = STATE(3666), + [sym_bitstring] = STATE(3666), + [sym_map] = STATE(3666), + [sym_boolean] = STATE(3666), + [sym_nil] = STATE(3666), + [sym_call] = STATE(3666), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3666), + [sym_anonymous_function] = STATE(3666), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2866), + [sym_float] = ACTIONS(2866), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2866), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [928] = { + [sym__expression] = STATE(2070), + [sym_block] = STATE(2070), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(2070), + [sym_atom] = STATE(2070), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2070), + [sym_charlist] = STATE(2070), + [sym_sigil] = STATE(2070), + [sym_unary_operator] = STATE(2070), + [sym_binary_operator] = STATE(2070), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2070), + [sym_list] = STATE(2070), + [sym_tuple] = STATE(2070), + [sym_bitstring] = STATE(2070), + [sym_map] = STATE(2070), + [sym_boolean] = STATE(2070), + [sym_nil] = STATE(2070), + [sym_call] = STATE(2070), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2070), + [sym_anonymous_function] = STATE(2070), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2868), + [sym_float] = ACTIONS(2868), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2868), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [929] = { + [sym__expression] = STATE(2067), + [sym_block] = STATE(2067), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(2067), + [sym_atom] = STATE(2067), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2067), + [sym_charlist] = STATE(2067), + [sym_sigil] = STATE(2067), + [sym_unary_operator] = STATE(2067), + [sym_binary_operator] = STATE(2067), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2067), + [sym_list] = STATE(2067), + [sym_tuple] = STATE(2067), + [sym_bitstring] = STATE(2067), + [sym_map] = STATE(2067), + [sym_boolean] = STATE(2067), + [sym_nil] = STATE(2067), + [sym_call] = STATE(2067), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2067), + [sym_anonymous_function] = STATE(2067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2870), + [sym_float] = ACTIONS(2870), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2870), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [930] = { + [sym__expression] = STATE(3674), + [sym_block] = STATE(3674), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3674), + [sym_atom] = STATE(3674), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3674), + [sym_charlist] = STATE(3674), + [sym_sigil] = STATE(3674), + [sym_unary_operator] = STATE(3674), + [sym_binary_operator] = STATE(3674), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3674), + [sym_list] = STATE(3674), + [sym_tuple] = STATE(3674), + [sym_bitstring] = STATE(3674), + [sym_map] = STATE(3674), + [sym_boolean] = STATE(3674), + [sym_nil] = STATE(3674), + [sym_call] = STATE(3674), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3674), + [sym_anonymous_function] = STATE(3674), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2872), + [sym_float] = ACTIONS(2872), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2872), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [931] = { + [sym__expression] = STATE(3675), + [sym_block] = STATE(3675), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3675), + [sym_atom] = STATE(3675), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3675), + [sym_charlist] = STATE(3675), + [sym_sigil] = STATE(3675), + [sym_unary_operator] = STATE(3675), + [sym_binary_operator] = STATE(3675), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3675), + [sym_list] = STATE(3675), + [sym_tuple] = STATE(3675), + [sym_bitstring] = STATE(3675), + [sym_map] = STATE(3675), + [sym_boolean] = STATE(3675), + [sym_nil] = STATE(3675), + [sym_call] = STATE(3675), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3675), + [sym_anonymous_function] = STATE(3675), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2874), + [sym_float] = ACTIONS(2874), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2874), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [932] = { + [sym__expression] = STATE(2357), + [sym_block] = STATE(2357), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2357), + [sym_atom] = STATE(2357), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2357), + [sym_charlist] = STATE(2357), + [sym_sigil] = STATE(2357), + [sym_unary_operator] = STATE(2357), + [sym_binary_operator] = STATE(2357), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2357), + [sym_list] = STATE(2357), + [sym_tuple] = STATE(2357), + [sym_bitstring] = STATE(2357), + [sym_map] = STATE(2357), + [sym_boolean] = STATE(2357), + [sym_nil] = STATE(2357), + [sym_call] = STATE(2357), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2357), + [sym_anonymous_function] = STATE(2357), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2876), + [sym_float] = ACTIONS(2876), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2876), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [933] = { + [sym__expression] = STATE(3308), + [sym_block] = STATE(3308), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3308), + [sym_atom] = STATE(3308), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3308), + [sym_charlist] = STATE(3308), + [sym_sigil] = STATE(3308), + [sym_unary_operator] = STATE(3308), + [sym_binary_operator] = STATE(3308), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3308), + [sym_list] = STATE(3308), + [sym_tuple] = STATE(3308), + [sym_bitstring] = STATE(3308), + [sym_map] = STATE(3308), + [sym_boolean] = STATE(3308), + [sym_nil] = STATE(3308), + [sym_call] = STATE(3308), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3308), + [sym_anonymous_function] = STATE(3308), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2878), + [sym_float] = ACTIONS(2878), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2878), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [934] = { + [sym__expression] = STATE(1707), + [sym_block] = STATE(1707), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(1707), + [sym_atom] = STATE(1707), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1707), + [sym_charlist] = STATE(1707), + [sym_sigil] = STATE(1707), + [sym_unary_operator] = STATE(1707), + [sym_binary_operator] = STATE(1707), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1707), + [sym_list] = STATE(1707), + [sym_tuple] = STATE(1707), + [sym_bitstring] = STATE(1707), + [sym_map] = STATE(1707), + [sym_boolean] = STATE(1707), + [sym_nil] = STATE(1707), + [sym_call] = STATE(1707), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1707), + [sym_anonymous_function] = STATE(1707), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2880), + [sym_float] = ACTIONS(2880), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2880), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [935] = { + [sym__expression] = STATE(2039), + [sym_block] = STATE(2039), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(2039), + [sym_atom] = STATE(2039), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2039), + [sym_charlist] = STATE(2039), + [sym_sigil] = STATE(2039), + [sym_unary_operator] = STATE(2039), + [sym_binary_operator] = STATE(2039), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2039), + [sym_list] = STATE(2039), + [sym_tuple] = STATE(2039), + [sym_bitstring] = STATE(2039), + [sym_map] = STATE(2039), + [sym_boolean] = STATE(2039), + [sym_nil] = STATE(2039), + [sym_call] = STATE(2039), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2039), + [sym_anonymous_function] = STATE(2039), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2882), + [sym_float] = ACTIONS(2882), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2882), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [936] = { + [sym__expression] = STATE(1818), + [sym_block] = STATE(1818), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1818), + [sym_atom] = STATE(1818), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1818), + [sym_charlist] = STATE(1818), + [sym_sigil] = STATE(1818), + [sym_unary_operator] = STATE(1818), + [sym_binary_operator] = STATE(1818), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1818), + [sym_list] = STATE(1818), + [sym_tuple] = STATE(1818), + [sym_bitstring] = STATE(1818), + [sym_map] = STATE(1818), + [sym_boolean] = STATE(1818), + [sym_nil] = STATE(1818), + [sym_call] = STATE(1818), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1818), + [sym_anonymous_function] = STATE(1818), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2570), + [sym_float] = ACTIONS(2570), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2570), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [937] = { + [sym__expression] = STATE(2026), + [sym_block] = STATE(2026), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(2026), + [sym_atom] = STATE(2026), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(2026), + [sym_charlist] = STATE(2026), + [sym_sigil] = STATE(2026), + [sym_unary_operator] = STATE(2026), + [sym_binary_operator] = STATE(2026), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(2026), + [sym_list] = STATE(2026), + [sym_tuple] = STATE(2026), + [sym_bitstring] = STATE(2026), + [sym_map] = STATE(2026), + [sym_boolean] = STATE(2026), + [sym_nil] = STATE(2026), + [sym_call] = STATE(2026), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(2026), + [sym_anonymous_function] = STATE(2026), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2884), + [sym_float] = ACTIONS(2884), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2884), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [938] = { + [sym__expression] = STATE(1952), + [sym_block] = STATE(1952), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1952), + [sym_atom] = STATE(1952), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1952), + [sym_charlist] = STATE(1952), + [sym_sigil] = STATE(1952), + [sym_unary_operator] = STATE(1952), + [sym_binary_operator] = STATE(1952), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1952), + [sym_list] = STATE(1952), + [sym_tuple] = STATE(1952), + [sym_bitstring] = STATE(1952), + [sym_map] = STATE(1952), + [sym_boolean] = STATE(1952), + [sym_nil] = STATE(1952), + [sym_call] = STATE(1952), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1952), + [sym_anonymous_function] = STATE(1952), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2886), + [sym_float] = ACTIONS(2886), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2886), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [939] = { + [sym__expression] = STATE(1946), + [sym_block] = STATE(1946), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1946), + [sym_atom] = STATE(1946), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1946), + [sym_charlist] = STATE(1946), + [sym_sigil] = STATE(1946), + [sym_unary_operator] = STATE(1946), + [sym_binary_operator] = STATE(1946), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1946), + [sym_list] = STATE(1946), + [sym_tuple] = STATE(1946), + [sym_bitstring] = STATE(1946), + [sym_map] = STATE(1946), + [sym_boolean] = STATE(1946), + [sym_nil] = STATE(1946), + [sym_call] = STATE(1946), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1946), + [sym_anonymous_function] = STATE(1946), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2888), + [sym_float] = ACTIONS(2888), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2888), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [940] = { + [sym__expression] = STATE(3784), + [sym_block] = STATE(3784), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3784), + [sym_atom] = STATE(3784), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3784), + [sym_charlist] = STATE(3784), + [sym_sigil] = STATE(3784), + [sym_unary_operator] = STATE(3784), + [sym_binary_operator] = STATE(3784), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3784), + [sym_list] = STATE(3784), + [sym_tuple] = STATE(3784), + [sym_bitstring] = STATE(3784), + [sym_map] = STATE(3784), + [sym_boolean] = STATE(3784), + [sym_nil] = STATE(3784), + [sym_call] = STATE(3784), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3784), + [sym_anonymous_function] = STATE(3784), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2292), + [sym_float] = ACTIONS(2292), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2292), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [941] = { + [sym__expression] = STATE(1945), + [sym_block] = STATE(1945), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1945), + [sym_atom] = STATE(1945), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1945), + [sym_charlist] = STATE(1945), + [sym_sigil] = STATE(1945), + [sym_unary_operator] = STATE(1945), + [sym_binary_operator] = STATE(1945), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1945), + [sym_list] = STATE(1945), + [sym_tuple] = STATE(1945), + [sym_bitstring] = STATE(1945), + [sym_map] = STATE(1945), + [sym_boolean] = STATE(1945), + [sym_nil] = STATE(1945), + [sym_call] = STATE(1945), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1945), + [sym_anonymous_function] = STATE(1945), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2890), + [sym_float] = ACTIONS(2890), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [942] = { + [sym__expression] = STATE(1929), + [sym_block] = STATE(1929), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1929), + [sym_atom] = STATE(1929), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1929), + [sym_charlist] = STATE(1929), + [sym_sigil] = STATE(1929), + [sym_unary_operator] = STATE(1929), + [sym_binary_operator] = STATE(1929), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1929), + [sym_list] = STATE(1929), + [sym_tuple] = STATE(1929), + [sym_bitstring] = STATE(1929), + [sym_map] = STATE(1929), + [sym_boolean] = STATE(1929), + [sym_nil] = STATE(1929), + [sym_call] = STATE(1929), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1929), + [sym_anonymous_function] = STATE(1929), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2892), + [sym_float] = ACTIONS(2892), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2892), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [943] = { + [sym__expression] = STATE(1937), + [sym_block] = STATE(1937), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1937), + [sym_atom] = STATE(1937), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1937), + [sym_charlist] = STATE(1937), + [sym_sigil] = STATE(1937), + [sym_unary_operator] = STATE(1937), + [sym_binary_operator] = STATE(1937), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1937), + [sym_list] = STATE(1937), + [sym_tuple] = STATE(1937), + [sym_bitstring] = STATE(1937), + [sym_map] = STATE(1937), + [sym_boolean] = STATE(1937), + [sym_nil] = STATE(1937), + [sym_call] = STATE(1937), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1937), + [sym_anonymous_function] = STATE(1937), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2894), + [sym_float] = ACTIONS(2894), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2894), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [944] = { + [sym__expression] = STATE(3668), + [sym_block] = STATE(3668), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3668), + [sym_atom] = STATE(3668), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3668), + [sym_charlist] = STATE(3668), + [sym_sigil] = STATE(3668), + [sym_unary_operator] = STATE(3668), + [sym_binary_operator] = STATE(3668), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3668), + [sym_list] = STATE(3668), + [sym_tuple] = STATE(3668), + [sym_bitstring] = STATE(3668), + [sym_map] = STATE(3668), + [sym_boolean] = STATE(3668), + [sym_nil] = STATE(3668), + [sym_call] = STATE(3668), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3668), + [sym_anonymous_function] = STATE(3668), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2896), + [sym_float] = ACTIONS(2896), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2896), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [945] = { + [sym__expression] = STATE(1968), + [sym_block] = STATE(1968), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1968), + [sym_atom] = STATE(1968), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1968), + [sym_charlist] = STATE(1968), + [sym_sigil] = STATE(1968), + [sym_unary_operator] = STATE(1968), + [sym_binary_operator] = STATE(1968), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1968), + [sym_list] = STATE(1968), + [sym_tuple] = STATE(1968), + [sym_bitstring] = STATE(1968), + [sym_map] = STATE(1968), + [sym_boolean] = STATE(1968), + [sym_nil] = STATE(1968), + [sym_call] = STATE(1968), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1968), + [sym_anonymous_function] = STATE(1968), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2898), + [sym_float] = ACTIONS(2898), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2898), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [946] = { + [sym__expression] = STATE(1924), + [sym_block] = STATE(1924), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1924), + [sym_atom] = STATE(1924), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1924), + [sym_charlist] = STATE(1924), + [sym_sigil] = STATE(1924), + [sym_unary_operator] = STATE(1924), + [sym_binary_operator] = STATE(1924), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1924), + [sym_list] = STATE(1924), + [sym_tuple] = STATE(1924), + [sym_bitstring] = STATE(1924), + [sym_map] = STATE(1924), + [sym_boolean] = STATE(1924), + [sym_nil] = STATE(1924), + [sym_call] = STATE(1924), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1924), + [sym_anonymous_function] = STATE(1924), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2900), + [sym_float] = ACTIONS(2900), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2900), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [947] = { + [sym__expression] = STATE(3178), + [sym_block] = STATE(3178), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3178), + [sym_atom] = STATE(3178), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3178), + [sym_charlist] = STATE(3178), + [sym_sigil] = STATE(3178), + [sym_unary_operator] = STATE(3178), + [sym_binary_operator] = STATE(3178), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3178), + [sym_list] = STATE(3178), + [sym_tuple] = STATE(3178), + [sym_bitstring] = STATE(3178), + [sym_map] = STATE(3178), + [sym_boolean] = STATE(3178), + [sym_nil] = STATE(3178), + [sym_call] = STATE(3178), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3178), + [sym_anonymous_function] = STATE(3178), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(2902), + [sym_float] = ACTIONS(2902), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(2902), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [948] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [949] = { + [sym__expression] = STATE(1624), + [sym_block] = STATE(1624), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1624), + [sym_atom] = STATE(1624), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1624), + [sym_charlist] = STATE(1624), + [sym_sigil] = STATE(1624), + [sym_unary_operator] = STATE(1624), + [sym_binary_operator] = STATE(1624), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1624), + [sym_list] = STATE(1624), + [sym_tuple] = STATE(1624), + [sym_bitstring] = STATE(1624), + [sym_map] = STATE(1624), + [sym_boolean] = STATE(1624), + [sym_nil] = STATE(1624), + [sym_call] = STATE(1624), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1624), + [sym_anonymous_function] = STATE(1624), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2288), + [sym_float] = ACTIONS(2288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [950] = { + [sym__expression] = STATE(1988), + [sym_block] = STATE(1988), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1988), + [sym_atom] = STATE(1988), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1988), + [sym_charlist] = STATE(1988), + [sym_sigil] = STATE(1988), + [sym_unary_operator] = STATE(1988), + [sym_binary_operator] = STATE(1988), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1988), + [sym_list] = STATE(1988), + [sym_tuple] = STATE(1988), + [sym_bitstring] = STATE(1988), + [sym_map] = STATE(1988), + [sym_boolean] = STATE(1988), + [sym_nil] = STATE(1988), + [sym_call] = STATE(1988), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1988), + [sym_anonymous_function] = STATE(1988), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2904), + [sym_float] = ACTIONS(2904), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2904), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [951] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [952] = { + [sym__expression] = STATE(3694), + [sym_block] = STATE(3694), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3694), + [sym_atom] = STATE(3694), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3694), + [sym_charlist] = STATE(3694), + [sym_sigil] = STATE(3694), + [sym_unary_operator] = STATE(3694), + [sym_binary_operator] = STATE(3694), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3694), + [sym_list] = STATE(3694), + [sym_tuple] = STATE(3694), + [sym_bitstring] = STATE(3694), + [sym_map] = STATE(3694), + [sym_boolean] = STATE(3694), + [sym_nil] = STATE(3694), + [sym_call] = STATE(3694), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3694), + [sym_anonymous_function] = STATE(3694), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2906), + [sym_float] = ACTIONS(2906), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2906), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [953] = { + [sym__expression] = STATE(3693), + [sym_block] = STATE(3693), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3693), + [sym_atom] = STATE(3693), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3693), + [sym_charlist] = STATE(3693), + [sym_sigil] = STATE(3693), + [sym_unary_operator] = STATE(3693), + [sym_binary_operator] = STATE(3693), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3693), + [sym_list] = STATE(3693), + [sym_tuple] = STATE(3693), + [sym_bitstring] = STATE(3693), + [sym_map] = STATE(3693), + [sym_boolean] = STATE(3693), + [sym_nil] = STATE(3693), + [sym_call] = STATE(3693), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3693), + [sym_anonymous_function] = STATE(3693), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2908), + [sym_float] = ACTIONS(2908), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2908), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [954] = { + [sym__expression] = STATE(1950), + [sym_block] = STATE(1950), + [sym__identifier] = STATE(130), + [sym_identifier] = STATE(130), + [sym_special_identifier] = STATE(130), + [sym_alias] = STATE(1950), + [sym_atom] = STATE(1950), + [sym__quoted_i_double] = STATE(1778), + [sym__quoted_i_single] = STATE(1777), + [sym__quoted_i_heredoc_single] = STATE(1777), + [sym__quoted_i_heredoc_double] = STATE(1778), + [sym_string] = STATE(1950), + [sym_charlist] = STATE(1950), + [sym_sigil] = STATE(1950), + [sym_unary_operator] = STATE(1950), + [sym_binary_operator] = STATE(1950), + [sym_operator_identifier] = STATE(5421), + [sym_dot] = STATE(1950), + [sym_list] = STATE(1950), + [sym_tuple] = STATE(1950), + [sym_bitstring] = STATE(1950), + [sym_map] = STATE(1950), + [sym_boolean] = STATE(1950), + [sym_nil] = STATE(1950), + [sym_call] = STATE(1950), + [sym__call_on_call] = STATE(1776), + [sym__local_call_with_arguments] = STATE(1776), + [sym__parenthesised_local_call_with_arguments] = STATE(1548), + [sym__local_call_without_arguments] = STATE(1776), + [sym__remote_call] = STATE(1776), + [sym__parenthesised_remote_call] = STATE(1548), + [sym__remote_dot] = STATE(113), + [sym__anonymous_call] = STATE(1548), + [sym__anonymous_dot] = STATE(5302), + [sym_access_call] = STATE(1950), + [sym_anonymous_function] = STATE(1950), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1421), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(2070), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [sym_integer] = ACTIONS(2910), + [sym_float] = ACTIONS(2910), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2078), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_CARET] = ACTIONS(2080), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2080), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_not] = ACTIONS(2080), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_nil] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_LT_LT] = ACTIONS(131), + [sym_char] = ACTIONS(2910), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(135), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(139), + [sym__not_in] = ACTIONS(61), + }, + [955] = { + [sym__expression] = STATE(3689), + [sym_block] = STATE(3689), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3689), + [sym_atom] = STATE(3689), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3689), + [sym_charlist] = STATE(3689), + [sym_sigil] = STATE(3689), + [sym_unary_operator] = STATE(3689), + [sym_binary_operator] = STATE(3689), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3689), + [sym_list] = STATE(3689), + [sym_tuple] = STATE(3689), + [sym_bitstring] = STATE(3689), + [sym_map] = STATE(3689), + [sym_boolean] = STATE(3689), + [sym_nil] = STATE(3689), + [sym_call] = STATE(3689), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3689), + [sym_anonymous_function] = STATE(3689), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2912), + [sym_float] = ACTIONS(2912), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2912), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [956] = { + [sym__expression] = STATE(3688), + [sym_block] = STATE(3688), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3688), + [sym_atom] = STATE(3688), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3688), + [sym_charlist] = STATE(3688), + [sym_sigil] = STATE(3688), + [sym_unary_operator] = STATE(3688), + [sym_binary_operator] = STATE(3688), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3688), + [sym_list] = STATE(3688), + [sym_tuple] = STATE(3688), + [sym_bitstring] = STATE(3688), + [sym_map] = STATE(3688), + [sym_boolean] = STATE(3688), + [sym_nil] = STATE(3688), + [sym_call] = STATE(3688), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3688), + [sym_anonymous_function] = STATE(3688), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2914), + [sym_float] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2914), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [957] = { + [sym__expression] = STATE(3687), + [sym_block] = STATE(3687), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3687), + [sym_atom] = STATE(3687), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3687), + [sym_charlist] = STATE(3687), + [sym_sigil] = STATE(3687), + [sym_unary_operator] = STATE(3687), + [sym_binary_operator] = STATE(3687), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3687), + [sym_list] = STATE(3687), + [sym_tuple] = STATE(3687), + [sym_bitstring] = STATE(3687), + [sym_map] = STATE(3687), + [sym_boolean] = STATE(3687), + [sym_nil] = STATE(3687), + [sym_call] = STATE(3687), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3687), + [sym_anonymous_function] = STATE(3687), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2916), + [sym_float] = ACTIONS(2916), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2916), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [958] = { + [sym__expression] = STATE(3686), + [sym_block] = STATE(3686), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3686), + [sym_atom] = STATE(3686), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3686), + [sym_charlist] = STATE(3686), + [sym_sigil] = STATE(3686), + [sym_unary_operator] = STATE(3686), + [sym_binary_operator] = STATE(3686), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3686), + [sym_list] = STATE(3686), + [sym_tuple] = STATE(3686), + [sym_bitstring] = STATE(3686), + [sym_map] = STATE(3686), + [sym_boolean] = STATE(3686), + [sym_nil] = STATE(3686), + [sym_call] = STATE(3686), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3686), + [sym_anonymous_function] = STATE(3686), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2918), + [sym_float] = ACTIONS(2918), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2918), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [959] = { + [sym__expression] = STATE(3822), + [sym_block] = STATE(3822), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3822), + [sym_atom] = STATE(3822), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3822), + [sym_charlist] = STATE(3822), + [sym_sigil] = STATE(3822), + [sym_unary_operator] = STATE(3822), + [sym_binary_operator] = STATE(3822), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3822), + [sym_list] = STATE(3822), + [sym_tuple] = STATE(3822), + [sym_bitstring] = STATE(3822), + [sym_map] = STATE(3822), + [sym_boolean] = STATE(3822), + [sym_nil] = STATE(3822), + [sym_call] = STATE(3822), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3822), + [sym_anonymous_function] = STATE(3822), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1966), + [sym_float] = ACTIONS(1966), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1966), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [960] = { + [sym__expression] = STATE(3680), + [sym_block] = STATE(3680), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3680), + [sym_atom] = STATE(3680), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3680), + [sym_charlist] = STATE(3680), + [sym_sigil] = STATE(3680), + [sym_unary_operator] = STATE(3680), + [sym_binary_operator] = STATE(3680), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3680), + [sym_list] = STATE(3680), + [sym_tuple] = STATE(3680), + [sym_bitstring] = STATE(3680), + [sym_map] = STATE(3680), + [sym_boolean] = STATE(3680), + [sym_nil] = STATE(3680), + [sym_call] = STATE(3680), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3680), + [sym_anonymous_function] = STATE(3680), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2920), + [sym_float] = ACTIONS(2920), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [961] = { + [sym__expression] = STATE(3679), + [sym_block] = STATE(3679), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3679), + [sym_atom] = STATE(3679), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3679), + [sym_charlist] = STATE(3679), + [sym_sigil] = STATE(3679), + [sym_unary_operator] = STATE(3679), + [sym_binary_operator] = STATE(3679), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3679), + [sym_list] = STATE(3679), + [sym_tuple] = STATE(3679), + [sym_bitstring] = STATE(3679), + [sym_map] = STATE(3679), + [sym_boolean] = STATE(3679), + [sym_nil] = STATE(3679), + [sym_call] = STATE(3679), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3679), + [sym_anonymous_function] = STATE(3679), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2922), + [sym_float] = ACTIONS(2922), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2922), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [962] = { + [sym__expression] = STATE(3870), + [sym_block] = STATE(3870), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3870), + [sym_atom] = STATE(3870), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3870), + [sym_charlist] = STATE(3870), + [sym_sigil] = STATE(3870), + [sym_unary_operator] = STATE(3870), + [sym_binary_operator] = STATE(3870), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3870), + [sym_list] = STATE(3870), + [sym_tuple] = STATE(3870), + [sym_bitstring] = STATE(3870), + [sym_map] = STATE(3870), + [sym_boolean] = STATE(3870), + [sym_nil] = STATE(3870), + [sym_call] = STATE(3870), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3870), + [sym_anonymous_function] = STATE(3870), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2924), + [sym_float] = ACTIONS(2924), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2924), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [963] = { + [sym__expression] = STATE(3677), + [sym_block] = STATE(3677), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3677), + [sym_atom] = STATE(3677), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3677), + [sym_charlist] = STATE(3677), + [sym_sigil] = STATE(3677), + [sym_unary_operator] = STATE(3677), + [sym_binary_operator] = STATE(3677), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3677), + [sym_list] = STATE(3677), + [sym_tuple] = STATE(3677), + [sym_bitstring] = STATE(3677), + [sym_map] = STATE(3677), + [sym_boolean] = STATE(3677), + [sym_nil] = STATE(3677), + [sym_call] = STATE(3677), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3677), + [sym_anonymous_function] = STATE(3677), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2926), + [sym_float] = ACTIONS(2926), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2926), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [964] = { + [sym__expression] = STATE(3676), + [sym_block] = STATE(3676), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3676), + [sym_atom] = STATE(3676), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3676), + [sym_charlist] = STATE(3676), + [sym_sigil] = STATE(3676), + [sym_unary_operator] = STATE(3676), + [sym_binary_operator] = STATE(3676), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3676), + [sym_list] = STATE(3676), + [sym_tuple] = STATE(3676), + [sym_bitstring] = STATE(3676), + [sym_map] = STATE(3676), + [sym_boolean] = STATE(3676), + [sym_nil] = STATE(3676), + [sym_call] = STATE(3676), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3676), + [sym_anonymous_function] = STATE(3676), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2928), + [sym_float] = ACTIONS(2928), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2928), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [965] = { + [sym__expression] = STATE(3671), + [sym_block] = STATE(3671), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3671), + [sym_atom] = STATE(3671), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3671), + [sym_charlist] = STATE(3671), + [sym_sigil] = STATE(3671), + [sym_unary_operator] = STATE(3671), + [sym_binary_operator] = STATE(3671), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3671), + [sym_list] = STATE(3671), + [sym_tuple] = STATE(3671), + [sym_bitstring] = STATE(3671), + [sym_map] = STATE(3671), + [sym_boolean] = STATE(3671), + [sym_nil] = STATE(3671), + [sym_call] = STATE(3671), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3671), + [sym_anonymous_function] = STATE(3671), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2930), + [sym_float] = ACTIONS(2930), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2930), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [966] = { + [sym__expression] = STATE(3670), + [sym_block] = STATE(3670), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3670), + [sym_atom] = STATE(3670), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3670), + [sym_charlist] = STATE(3670), + [sym_sigil] = STATE(3670), + [sym_unary_operator] = STATE(3670), + [sym_binary_operator] = STATE(3670), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3670), + [sym_list] = STATE(3670), + [sym_tuple] = STATE(3670), + [sym_bitstring] = STATE(3670), + [sym_map] = STATE(3670), + [sym_boolean] = STATE(3670), + [sym_nil] = STATE(3670), + [sym_call] = STATE(3670), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3670), + [sym_anonymous_function] = STATE(3670), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2932), + [sym_float] = ACTIONS(2932), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2932), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [967] = { + [sym__expression] = STATE(3662), + [sym_block] = STATE(3662), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3662), + [sym_atom] = STATE(3662), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3662), + [sym_charlist] = STATE(3662), + [sym_sigil] = STATE(3662), + [sym_unary_operator] = STATE(3662), + [sym_binary_operator] = STATE(3662), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3662), + [sym_list] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_bitstring] = STATE(3662), + [sym_map] = STATE(3662), + [sym_boolean] = STATE(3662), + [sym_nil] = STATE(3662), + [sym_call] = STATE(3662), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3662), + [sym_anonymous_function] = STATE(3662), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2934), + [sym_float] = ACTIONS(2934), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2934), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [968] = { + [sym__expression] = STATE(3667), + [sym_block] = STATE(3667), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3667), + [sym_atom] = STATE(3667), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3667), + [sym_charlist] = STATE(3667), + [sym_sigil] = STATE(3667), + [sym_unary_operator] = STATE(3667), + [sym_binary_operator] = STATE(3667), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3667), + [sym_list] = STATE(3667), + [sym_tuple] = STATE(3667), + [sym_bitstring] = STATE(3667), + [sym_map] = STATE(3667), + [sym_boolean] = STATE(3667), + [sym_nil] = STATE(3667), + [sym_call] = STATE(3667), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3667), + [sym_anonymous_function] = STATE(3667), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2936), + [sym_float] = ACTIONS(2936), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2936), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [969] = { + [sym__expression] = STATE(3408), + [sym_block] = STATE(3408), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3408), + [sym_atom] = STATE(3408), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3408), + [sym_charlist] = STATE(3408), + [sym_sigil] = STATE(3408), + [sym_unary_operator] = STATE(3408), + [sym_binary_operator] = STATE(3408), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3408), + [sym_list] = STATE(3408), + [sym_tuple] = STATE(3408), + [sym_bitstring] = STATE(3408), + [sym_map] = STATE(3408), + [sym_boolean] = STATE(3408), + [sym_nil] = STATE(3408), + [sym_call] = STATE(3408), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3408), + [sym_anonymous_function] = STATE(3408), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2938), + [sym_float] = ACTIONS(2938), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2938), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [970] = { + [sym__expression] = STATE(3660), + [sym_block] = STATE(3660), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3660), + [sym_atom] = STATE(3660), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3660), + [sym_charlist] = STATE(3660), + [sym_sigil] = STATE(3660), + [sym_unary_operator] = STATE(3660), + [sym_binary_operator] = STATE(3660), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3660), + [sym_list] = STATE(3660), + [sym_tuple] = STATE(3660), + [sym_bitstring] = STATE(3660), + [sym_map] = STATE(3660), + [sym_boolean] = STATE(3660), + [sym_nil] = STATE(3660), + [sym_call] = STATE(3660), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3660), + [sym_anonymous_function] = STATE(3660), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2940), + [sym_float] = ACTIONS(2940), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2048), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_CARET] = ACTIONS(2050), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2050), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2050), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2940), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(61), + }, + [971] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [972] = { + [sym__expression] = STATE(3944), + [sym_block] = STATE(3944), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3944), + [sym_atom] = STATE(3944), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3944), + [sym_charlist] = STATE(3944), + [sym_sigil] = STATE(3944), + [sym_unary_operator] = STATE(3944), + [sym_binary_operator] = STATE(3944), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3944), + [sym_list] = STATE(3944), + [sym_tuple] = STATE(3944), + [sym_bitstring] = STATE(3944), + [sym_map] = STATE(3944), + [sym_boolean] = STATE(3944), + [sym_nil] = STATE(3944), + [sym_call] = STATE(3944), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3944), + [sym_anonymous_function] = STATE(3944), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2942), + [sym_float] = ACTIONS(2942), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2942), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [973] = { + [sym__expression] = STATE(2859), + [sym_block] = STATE(2859), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2859), + [sym_atom] = STATE(2859), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2859), + [sym_charlist] = STATE(2859), + [sym_sigil] = STATE(2859), + [sym_unary_operator] = STATE(2859), + [sym_binary_operator] = STATE(2859), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2859), + [sym_list] = STATE(2859), + [sym_tuple] = STATE(2859), + [sym_bitstring] = STATE(2859), + [sym_map] = STATE(2859), + [sym_boolean] = STATE(2859), + [sym_nil] = STATE(2859), + [sym_call] = STATE(2859), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2859), + [sym_anonymous_function] = STATE(2859), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2944), + [sym_float] = ACTIONS(2944), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2944), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [974] = { + [sym__expression] = STATE(2406), + [sym_block] = STATE(2406), + [sym__identifier] = STATE(62), + [sym_identifier] = STATE(62), + [sym_special_identifier] = STATE(62), + [sym_alias] = STATE(2406), + [sym_atom] = STATE(2406), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2406), + [sym_charlist] = STATE(2406), + [sym_sigil] = STATE(2406), + [sym_unary_operator] = STATE(2406), + [sym_binary_operator] = STATE(2406), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2406), + [sym_list] = STATE(2406), + [sym_tuple] = STATE(2406), + [sym_bitstring] = STATE(2406), + [sym_map] = STATE(2406), + [sym_boolean] = STATE(2406), + [sym_nil] = STATE(2406), + [sym_call] = STATE(2406), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2406), + [sym_anonymous_function] = STATE(2406), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(2186), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(1437), + [sym_float] = ACTIONS(1437), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2192), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2194), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2194), + [anon_sym_CARET] = ACTIONS(2194), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2194), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(2194), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(1437), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(443), + [sym__not_in] = ACTIONS(61), + }, + [975] = { + [sym__expression] = STATE(3937), + [sym_block] = STATE(3937), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3937), + [sym_atom] = STATE(3937), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3937), + [sym_charlist] = STATE(3937), + [sym_sigil] = STATE(3937), + [sym_unary_operator] = STATE(3937), + [sym_binary_operator] = STATE(3937), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3937), + [sym_list] = STATE(3937), + [sym_tuple] = STATE(3937), + [sym_bitstring] = STATE(3937), + [sym_map] = STATE(3937), + [sym_boolean] = STATE(3937), + [sym_nil] = STATE(3937), + [sym_call] = STATE(3937), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3937), + [sym_anonymous_function] = STATE(3937), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2946), + [sym_float] = ACTIONS(2946), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2946), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [976] = { + [sym__expression] = STATE(3925), + [sym_block] = STATE(3925), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3925), + [sym_atom] = STATE(3925), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3925), + [sym_charlist] = STATE(3925), + [sym_sigil] = STATE(3925), + [sym_unary_operator] = STATE(3925), + [sym_binary_operator] = STATE(3925), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3925), + [sym_list] = STATE(3925), + [sym_tuple] = STATE(3925), + [sym_bitstring] = STATE(3925), + [sym_map] = STATE(3925), + [sym_boolean] = STATE(3925), + [sym_nil] = STATE(3925), + [sym_call] = STATE(3925), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3925), + [sym_anonymous_function] = STATE(3925), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2948), + [sym_float] = ACTIONS(2948), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2948), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [977] = { + [sym__expression] = STATE(2856), + [sym_block] = STATE(2856), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2856), + [sym_atom] = STATE(2856), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2856), + [sym_charlist] = STATE(2856), + [sym_sigil] = STATE(2856), + [sym_unary_operator] = STATE(2856), + [sym_binary_operator] = STATE(2856), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2856), + [sym_list] = STATE(2856), + [sym_tuple] = STATE(2856), + [sym_bitstring] = STATE(2856), + [sym_map] = STATE(2856), + [sym_boolean] = STATE(2856), + [sym_nil] = STATE(2856), + [sym_call] = STATE(2856), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2856), + [sym_anonymous_function] = STATE(2856), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2950), + [sym_float] = ACTIONS(2950), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2950), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [978] = { + [sym__expression] = STATE(3928), + [sym_block] = STATE(3928), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3928), + [sym_atom] = STATE(3928), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3928), + [sym_charlist] = STATE(3928), + [sym_sigil] = STATE(3928), + [sym_unary_operator] = STATE(3928), + [sym_binary_operator] = STATE(3928), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3928), + [sym_list] = STATE(3928), + [sym_tuple] = STATE(3928), + [sym_bitstring] = STATE(3928), + [sym_map] = STATE(3928), + [sym_boolean] = STATE(3928), + [sym_nil] = STATE(3928), + [sym_call] = STATE(3928), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3928), + [sym_anonymous_function] = STATE(3928), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2952), + [sym_float] = ACTIONS(2952), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2952), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [979] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1788), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1790), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_CARET] = ACTIONS(1792), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1792), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1792), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1453), + [sym__not_in] = ACTIONS(61), + }, + [980] = { + [sym__expression] = STATE(3946), + [sym_block] = STATE(3946), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3946), + [sym_atom] = STATE(3946), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3946), + [sym_charlist] = STATE(3946), + [sym_sigil] = STATE(3946), + [sym_unary_operator] = STATE(3946), + [sym_binary_operator] = STATE(3946), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3946), + [sym_list] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_bitstring] = STATE(3946), + [sym_map] = STATE(3946), + [sym_boolean] = STATE(3946), + [sym_nil] = STATE(3946), + [sym_call] = STATE(3946), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3946), + [sym_anonymous_function] = STATE(3946), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2954), + [sym_float] = ACTIONS(2954), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2954), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [981] = { + [sym__expression] = STATE(3690), + [sym_block] = STATE(3690), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3690), + [sym_atom] = STATE(3690), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3690), + [sym_charlist] = STATE(3690), + [sym_sigil] = STATE(3690), + [sym_unary_operator] = STATE(3690), + [sym_binary_operator] = STATE(3690), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3690), + [sym_list] = STATE(3690), + [sym_tuple] = STATE(3690), + [sym_bitstring] = STATE(3690), + [sym_map] = STATE(3690), + [sym_boolean] = STATE(3690), + [sym_nil] = STATE(3690), + [sym_call] = STATE(3690), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3690), + [sym_anonymous_function] = STATE(3690), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2956), + [sym_float] = ACTIONS(2956), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2956), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [982] = { + [sym__expression] = STATE(3451), + [sym_block] = STATE(3451), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3451), + [sym_atom] = STATE(3451), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3451), + [sym_charlist] = STATE(3451), + [sym_sigil] = STATE(3451), + [sym_unary_operator] = STATE(3451), + [sym_binary_operator] = STATE(3451), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3451), + [sym_list] = STATE(3451), + [sym_tuple] = STATE(3451), + [sym_bitstring] = STATE(3451), + [sym_map] = STATE(3451), + [sym_boolean] = STATE(3451), + [sym_nil] = STATE(3451), + [sym_call] = STATE(3451), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3451), + [sym_anonymous_function] = STATE(3451), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2958), + [sym_float] = ACTIONS(2958), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2958), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [983] = { + [sym__expression] = STATE(3936), + [sym_block] = STATE(3936), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3936), + [sym_atom] = STATE(3936), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3936), + [sym_charlist] = STATE(3936), + [sym_sigil] = STATE(3936), + [sym_unary_operator] = STATE(3936), + [sym_binary_operator] = STATE(3936), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3936), + [sym_list] = STATE(3936), + [sym_tuple] = STATE(3936), + [sym_bitstring] = STATE(3936), + [sym_map] = STATE(3936), + [sym_boolean] = STATE(3936), + [sym_nil] = STATE(3936), + [sym_call] = STATE(3936), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3936), + [sym_anonymous_function] = STATE(3936), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2960), + [sym_float] = ACTIONS(2960), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2960), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [984] = { + [sym__expression] = STATE(3047), + [sym_block] = STATE(3047), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3047), + [sym_atom] = STATE(3047), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3047), + [sym_charlist] = STATE(3047), + [sym_sigil] = STATE(3047), + [sym_unary_operator] = STATE(3047), + [sym_binary_operator] = STATE(3047), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3047), + [sym_list] = STATE(3047), + [sym_tuple] = STATE(3047), + [sym_bitstring] = STATE(3047), + [sym_map] = STATE(3047), + [sym_boolean] = STATE(3047), + [sym_nil] = STATE(3047), + [sym_call] = STATE(3047), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3047), + [sym_anonymous_function] = STATE(3047), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2520), + [sym_float] = ACTIONS(2520), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [985] = { + [sym__expression] = STATE(2855), + [sym_block] = STATE(2855), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2855), + [sym_atom] = STATE(2855), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2855), + [sym_charlist] = STATE(2855), + [sym_sigil] = STATE(2855), + [sym_unary_operator] = STATE(2855), + [sym_binary_operator] = STATE(2855), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2855), + [sym_list] = STATE(2855), + [sym_tuple] = STATE(2855), + [sym_bitstring] = STATE(2855), + [sym_map] = STATE(2855), + [sym_boolean] = STATE(2855), + [sym_nil] = STATE(2855), + [sym_call] = STATE(2855), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2855), + [sym_anonymous_function] = STATE(2855), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2962), + [sym_float] = ACTIONS(2962), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2962), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [986] = { + [sym__expression] = STATE(3956), + [sym_block] = STATE(3956), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3956), + [sym_atom] = STATE(3956), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3956), + [sym_charlist] = STATE(3956), + [sym_sigil] = STATE(3956), + [sym_unary_operator] = STATE(3956), + [sym_binary_operator] = STATE(3956), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3956), + [sym_list] = STATE(3956), + [sym_tuple] = STATE(3956), + [sym_bitstring] = STATE(3956), + [sym_map] = STATE(3956), + [sym_boolean] = STATE(3956), + [sym_nil] = STATE(3956), + [sym_call] = STATE(3956), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3956), + [sym_anonymous_function] = STATE(3956), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2964), + [sym_float] = ACTIONS(2964), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2964), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [987] = { + [sym__expression] = STATE(2852), + [sym_block] = STATE(2852), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2852), + [sym_atom] = STATE(2852), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2852), + [sym_charlist] = STATE(2852), + [sym_sigil] = STATE(2852), + [sym_unary_operator] = STATE(2852), + [sym_binary_operator] = STATE(2852), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2852), + [sym_list] = STATE(2852), + [sym_tuple] = STATE(2852), + [sym_bitstring] = STATE(2852), + [sym_map] = STATE(2852), + [sym_boolean] = STATE(2852), + [sym_nil] = STATE(2852), + [sym_call] = STATE(2852), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2852), + [sym_anonymous_function] = STATE(2852), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2966), + [sym_float] = ACTIONS(2966), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2966), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [988] = { + [sym__expression] = STATE(2851), + [sym_block] = STATE(2851), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2851), + [sym_atom] = STATE(2851), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2851), + [sym_charlist] = STATE(2851), + [sym_sigil] = STATE(2851), + [sym_unary_operator] = STATE(2851), + [sym_binary_operator] = STATE(2851), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2851), + [sym_list] = STATE(2851), + [sym_tuple] = STATE(2851), + [sym_bitstring] = STATE(2851), + [sym_map] = STATE(2851), + [sym_boolean] = STATE(2851), + [sym_nil] = STATE(2851), + [sym_call] = STATE(2851), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2851), + [sym_anonymous_function] = STATE(2851), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2968), + [sym_float] = ACTIONS(2968), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2968), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [989] = { + [sym__expression] = STATE(3040), + [sym_block] = STATE(3040), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3040), + [sym_atom] = STATE(3040), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3040), + [sym_charlist] = STATE(3040), + [sym_sigil] = STATE(3040), + [sym_unary_operator] = STATE(3040), + [sym_binary_operator] = STATE(3040), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3040), + [sym_list] = STATE(3040), + [sym_tuple] = STATE(3040), + [sym_bitstring] = STATE(3040), + [sym_map] = STATE(3040), + [sym_boolean] = STATE(3040), + [sym_nil] = STATE(3040), + [sym_call] = STATE(3040), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3040), + [sym_anonymous_function] = STATE(3040), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2406), + [sym_float] = ACTIONS(2406), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1874), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_CARET] = ACTIONS(1876), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1876), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1876), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2406), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1117), + [sym__not_in] = ACTIONS(61), + }, + [990] = { + [sym__expression] = STATE(3941), + [sym_block] = STATE(3941), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3941), + [sym_atom] = STATE(3941), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3941), + [sym_charlist] = STATE(3941), + [sym_sigil] = STATE(3941), + [sym_unary_operator] = STATE(3941), + [sym_binary_operator] = STATE(3941), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3941), + [sym_list] = STATE(3941), + [sym_tuple] = STATE(3941), + [sym_bitstring] = STATE(3941), + [sym_map] = STATE(3941), + [sym_boolean] = STATE(3941), + [sym_nil] = STATE(3941), + [sym_call] = STATE(3941), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3941), + [sym_anonymous_function] = STATE(3941), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2970), + [sym_float] = ACTIONS(2970), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2970), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [991] = { + [sym__expression] = STATE(2850), + [sym_block] = STATE(2850), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2850), + [sym_atom] = STATE(2850), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2850), + [sym_charlist] = STATE(2850), + [sym_sigil] = STATE(2850), + [sym_unary_operator] = STATE(2850), + [sym_binary_operator] = STATE(2850), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2850), + [sym_list] = STATE(2850), + [sym_tuple] = STATE(2850), + [sym_bitstring] = STATE(2850), + [sym_map] = STATE(2850), + [sym_boolean] = STATE(2850), + [sym_nil] = STATE(2850), + [sym_call] = STATE(2850), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2850), + [sym_anonymous_function] = STATE(2850), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2972), + [sym_float] = ACTIONS(2972), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2972), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [992] = { + [sym__expression] = STATE(3915), + [sym_block] = STATE(3915), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3915), + [sym_atom] = STATE(3915), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3915), + [sym_charlist] = STATE(3915), + [sym_sigil] = STATE(3915), + [sym_unary_operator] = STATE(3915), + [sym_binary_operator] = STATE(3915), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3915), + [sym_list] = STATE(3915), + [sym_tuple] = STATE(3915), + [sym_bitstring] = STATE(3915), + [sym_map] = STATE(3915), + [sym_boolean] = STATE(3915), + [sym_nil] = STATE(3915), + [sym_call] = STATE(3915), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3915), + [sym_anonymous_function] = STATE(3915), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2974), + [sym_float] = ACTIONS(2974), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2974), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [993] = { + [sym__expression] = STATE(3935), + [sym_block] = STATE(3935), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3935), + [sym_atom] = STATE(3935), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3935), + [sym_charlist] = STATE(3935), + [sym_sigil] = STATE(3935), + [sym_unary_operator] = STATE(3935), + [sym_binary_operator] = STATE(3935), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3935), + [sym_list] = STATE(3935), + [sym_tuple] = STATE(3935), + [sym_bitstring] = STATE(3935), + [sym_map] = STATE(3935), + [sym_boolean] = STATE(3935), + [sym_nil] = STATE(3935), + [sym_call] = STATE(3935), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3935), + [sym_anonymous_function] = STATE(3935), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2976), + [sym_float] = ACTIONS(2976), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2976), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [994] = { + [sym__expression] = STATE(3929), + [sym_block] = STATE(3929), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3929), + [sym_atom] = STATE(3929), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3929), + [sym_charlist] = STATE(3929), + [sym_sigil] = STATE(3929), + [sym_unary_operator] = STATE(3929), + [sym_binary_operator] = STATE(3929), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3929), + [sym_list] = STATE(3929), + [sym_tuple] = STATE(3929), + [sym_bitstring] = STATE(3929), + [sym_map] = STATE(3929), + [sym_boolean] = STATE(3929), + [sym_nil] = STATE(3929), + [sym_call] = STATE(3929), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3929), + [sym_anonymous_function] = STATE(3929), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2978), + [sym_float] = ACTIONS(2978), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2978), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [995] = { + [sym__expression] = STATE(3918), + [sym_block] = STATE(3918), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3918), + [sym_atom] = STATE(3918), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3918), + [sym_charlist] = STATE(3918), + [sym_sigil] = STATE(3918), + [sym_unary_operator] = STATE(3918), + [sym_binary_operator] = STATE(3918), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3918), + [sym_list] = STATE(3918), + [sym_tuple] = STATE(3918), + [sym_bitstring] = STATE(3918), + [sym_map] = STATE(3918), + [sym_boolean] = STATE(3918), + [sym_nil] = STATE(3918), + [sym_call] = STATE(3918), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3918), + [sym_anonymous_function] = STATE(3918), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2980), + [sym_float] = ACTIONS(2980), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2980), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [996] = { + [sym__expression] = STATE(2416), + [sym_block] = STATE(2416), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2416), + [sym_atom] = STATE(2416), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2416), + [sym_charlist] = STATE(2416), + [sym_sigil] = STATE(2416), + [sym_unary_operator] = STATE(2416), + [sym_binary_operator] = STATE(2416), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2416), + [sym_list] = STATE(2416), + [sym_tuple] = STATE(2416), + [sym_bitstring] = STATE(2416), + [sym_map] = STATE(2416), + [sym_boolean] = STATE(2416), + [sym_nil] = STATE(2416), + [sym_call] = STATE(2416), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2416), + [sym_anonymous_function] = STATE(2416), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2982), + [sym_float] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2982), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [997] = { + [sym__expression] = STATE(2849), + [sym_block] = STATE(2849), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2849), + [sym_atom] = STATE(2849), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2849), + [sym_charlist] = STATE(2849), + [sym_sigil] = STATE(2849), + [sym_unary_operator] = STATE(2849), + [sym_binary_operator] = STATE(2849), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2849), + [sym_list] = STATE(2849), + [sym_tuple] = STATE(2849), + [sym_bitstring] = STATE(2849), + [sym_map] = STATE(2849), + [sym_boolean] = STATE(2849), + [sym_nil] = STATE(2849), + [sym_call] = STATE(2849), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2849), + [sym_anonymous_function] = STATE(2849), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2984), + [sym_float] = ACTIONS(2984), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2984), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [998] = { + [sym__expression] = STATE(3949), + [sym_block] = STATE(3949), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3949), + [sym_atom] = STATE(3949), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3949), + [sym_charlist] = STATE(3949), + [sym_sigil] = STATE(3949), + [sym_unary_operator] = STATE(3949), + [sym_binary_operator] = STATE(3949), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3949), + [sym_list] = STATE(3949), + [sym_tuple] = STATE(3949), + [sym_bitstring] = STATE(3949), + [sym_map] = STATE(3949), + [sym_boolean] = STATE(3949), + [sym_nil] = STATE(3949), + [sym_call] = STATE(3949), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3949), + [sym_anonymous_function] = STATE(3949), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2986), + [sym_float] = ACTIONS(2986), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2986), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [999] = { + [sym__expression] = STATE(3959), + [sym_block] = STATE(3959), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3959), + [sym_atom] = STATE(3959), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3959), + [sym_charlist] = STATE(3959), + [sym_sigil] = STATE(3959), + [sym_unary_operator] = STATE(3959), + [sym_binary_operator] = STATE(3959), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3959), + [sym_list] = STATE(3959), + [sym_tuple] = STATE(3959), + [sym_bitstring] = STATE(3959), + [sym_map] = STATE(3959), + [sym_boolean] = STATE(3959), + [sym_nil] = STATE(3959), + [sym_call] = STATE(3959), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3959), + [sym_anonymous_function] = STATE(3959), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2988), + [sym_float] = ACTIONS(2988), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2988), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [1000] = { + [sym__expression] = STATE(3917), + [sym_block] = STATE(3917), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3917), + [sym_atom] = STATE(3917), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3917), + [sym_charlist] = STATE(3917), + [sym_sigil] = STATE(3917), + [sym_unary_operator] = STATE(3917), + [sym_binary_operator] = STATE(3917), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3917), + [sym_list] = STATE(3917), + [sym_tuple] = STATE(3917), + [sym_bitstring] = STATE(3917), + [sym_map] = STATE(3917), + [sym_boolean] = STATE(3917), + [sym_nil] = STATE(3917), + [sym_call] = STATE(3917), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3917), + [sym_anonymous_function] = STATE(3917), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2990), + [sym_float] = ACTIONS(2990), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2990), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [1001] = { + [sym__expression] = STATE(3931), + [sym_block] = STATE(3931), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3931), + [sym_atom] = STATE(3931), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3931), + [sym_charlist] = STATE(3931), + [sym_sigil] = STATE(3931), + [sym_unary_operator] = STATE(3931), + [sym_binary_operator] = STATE(3931), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3931), + [sym_list] = STATE(3931), + [sym_tuple] = STATE(3931), + [sym_bitstring] = STATE(3931), + [sym_map] = STATE(3931), + [sym_boolean] = STATE(3931), + [sym_nil] = STATE(3931), + [sym_call] = STATE(3931), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3931), + [sym_anonymous_function] = STATE(3931), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2992), + [sym_float] = ACTIONS(2992), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2992), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [1002] = { + [sym__expression] = STATE(3643), + [sym_block] = STATE(3643), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3643), + [sym_atom] = STATE(3643), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3643), + [sym_charlist] = STATE(3643), + [sym_sigil] = STATE(3643), + [sym_unary_operator] = STATE(3643), + [sym_binary_operator] = STATE(3643), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3643), + [sym_list] = STATE(3643), + [sym_tuple] = STATE(3643), + [sym_bitstring] = STATE(3643), + [sym_map] = STATE(3643), + [sym_boolean] = STATE(3643), + [sym_nil] = STATE(3643), + [sym_call] = STATE(3643), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3643), + [sym_anonymous_function] = STATE(3643), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2304), + [sym_float] = ACTIONS(2304), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2304), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1003] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3645), + [sym_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2306), + [sym_float] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1004] = { + [sym__expression] = STATE(3719), + [sym_block] = STATE(3719), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3719), + [sym_atom] = STATE(3719), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3719), + [sym_charlist] = STATE(3719), + [sym_sigil] = STATE(3719), + [sym_unary_operator] = STATE(3719), + [sym_binary_operator] = STATE(3719), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3719), + [sym_list] = STATE(3719), + [sym_tuple] = STATE(3719), + [sym_bitstring] = STATE(3719), + [sym_map] = STATE(3719), + [sym_boolean] = STATE(3719), + [sym_nil] = STATE(3719), + [sym_call] = STATE(3719), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3719), + [sym_anonymous_function] = STATE(3719), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2374), + [sym_float] = ACTIONS(2374), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2374), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1005] = { + [sym__expression] = STATE(3715), + [sym_block] = STATE(3715), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3715), + [sym_atom] = STATE(3715), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3715), + [sym_charlist] = STATE(3715), + [sym_sigil] = STATE(3715), + [sym_unary_operator] = STATE(3715), + [sym_binary_operator] = STATE(3715), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3715), + [sym_list] = STATE(3715), + [sym_tuple] = STATE(3715), + [sym_bitstring] = STATE(3715), + [sym_map] = STATE(3715), + [sym_boolean] = STATE(3715), + [sym_nil] = STATE(3715), + [sym_call] = STATE(3715), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3715), + [sym_anonymous_function] = STATE(3715), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2446), + [sym_float] = ACTIONS(2446), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2446), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1006] = { + [sym__expression] = STATE(3596), + [sym_block] = STATE(3596), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3596), + [sym_atom] = STATE(3596), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3596), + [sym_charlist] = STATE(3596), + [sym_sigil] = STATE(3596), + [sym_unary_operator] = STATE(3596), + [sym_binary_operator] = STATE(3596), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3596), + [sym_list] = STATE(3596), + [sym_tuple] = STATE(3596), + [sym_bitstring] = STATE(3596), + [sym_map] = STATE(3596), + [sym_boolean] = STATE(3596), + [sym_nil] = STATE(3596), + [sym_call] = STATE(3596), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3596), + [sym_anonymous_function] = STATE(3596), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2994), + [sym_float] = ACTIONS(2994), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2994), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1007] = { + [sym__expression] = STATE(3932), + [sym_block] = STATE(3932), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3932), + [sym_atom] = STATE(3932), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3932), + [sym_charlist] = STATE(3932), + [sym_sigil] = STATE(3932), + [sym_unary_operator] = STATE(3932), + [sym_binary_operator] = STATE(3932), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3932), + [sym_list] = STATE(3932), + [sym_tuple] = STATE(3932), + [sym_bitstring] = STATE(3932), + [sym_map] = STATE(3932), + [sym_boolean] = STATE(3932), + [sym_nil] = STATE(3932), + [sym_call] = STATE(3932), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3932), + [sym_anonymous_function] = STATE(3932), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2996), + [sym_float] = ACTIONS(2996), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2996), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1008] = { + [sym__expression] = STATE(3309), + [sym_block] = STATE(3309), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3309), + [sym_atom] = STATE(3309), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3309), + [sym_charlist] = STATE(3309), + [sym_sigil] = STATE(3309), + [sym_unary_operator] = STATE(3309), + [sym_binary_operator] = STATE(3309), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3309), + [sym_list] = STATE(3309), + [sym_tuple] = STATE(3309), + [sym_bitstring] = STATE(3309), + [sym_map] = STATE(3309), + [sym_boolean] = STATE(3309), + [sym_nil] = STATE(3309), + [sym_call] = STATE(3309), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3309), + [sym_anonymous_function] = STATE(3309), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2998), + [sym_float] = ACTIONS(2998), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2998), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [1009] = { + [sym__expression] = STATE(3735), + [sym_block] = STATE(3735), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3735), + [sym_atom] = STATE(3735), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3735), + [sym_charlist] = STATE(3735), + [sym_sigil] = STATE(3735), + [sym_unary_operator] = STATE(3735), + [sym_binary_operator] = STATE(3735), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3735), + [sym_list] = STATE(3735), + [sym_tuple] = STATE(3735), + [sym_bitstring] = STATE(3735), + [sym_map] = STATE(3735), + [sym_boolean] = STATE(3735), + [sym_nil] = STATE(3735), + [sym_call] = STATE(3735), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3735), + [sym_anonymous_function] = STATE(3735), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3000), + [sym_float] = ACTIONS(3000), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3000), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1010] = { + [sym__expression] = STATE(3957), + [sym_block] = STATE(3957), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3957), + [sym_atom] = STATE(3957), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3957), + [sym_charlist] = STATE(3957), + [sym_sigil] = STATE(3957), + [sym_unary_operator] = STATE(3957), + [sym_binary_operator] = STATE(3957), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3957), + [sym_list] = STATE(3957), + [sym_tuple] = STATE(3957), + [sym_bitstring] = STATE(3957), + [sym_map] = STATE(3957), + [sym_boolean] = STATE(3957), + [sym_nil] = STATE(3957), + [sym_call] = STATE(3957), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3957), + [sym_anonymous_function] = STATE(3957), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3002), + [sym_float] = ACTIONS(3002), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3002), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1011] = { + [sym__expression] = STATE(3311), + [sym_block] = STATE(3311), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(3311), + [sym_atom] = STATE(3311), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(3311), + [sym_charlist] = STATE(3311), + [sym_sigil] = STATE(3311), + [sym_unary_operator] = STATE(3311), + [sym_binary_operator] = STATE(3311), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(3311), + [sym_list] = STATE(3311), + [sym_tuple] = STATE(3311), + [sym_bitstring] = STATE(3311), + [sym_map] = STATE(3311), + [sym_boolean] = STATE(3311), + [sym_nil] = STATE(3311), + [sym_call] = STATE(3311), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(3311), + [sym_anonymous_function] = STATE(3311), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(3004), + [sym_float] = ACTIONS(3004), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(3004), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [1012] = { + [sym__expression] = STATE(3023), + [sym_block] = STATE(3023), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3023), + [sym_atom] = STATE(3023), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3023), + [sym_charlist] = STATE(3023), + [sym_sigil] = STATE(3023), + [sym_unary_operator] = STATE(3023), + [sym_binary_operator] = STATE(3023), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3023), + [sym_list] = STATE(3023), + [sym_tuple] = STATE(3023), + [sym_bitstring] = STATE(3023), + [sym_map] = STATE(3023), + [sym_boolean] = STATE(3023), + [sym_nil] = STATE(3023), + [sym_call] = STATE(3023), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3023), + [sym_anonymous_function] = STATE(3023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3006), + [sym_float] = ACTIONS(3006), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3006), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1013] = { + [sym__expression] = STATE(3024), + [sym_block] = STATE(3024), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3024), + [sym_atom] = STATE(3024), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3024), + [sym_charlist] = STATE(3024), + [sym_sigil] = STATE(3024), + [sym_unary_operator] = STATE(3024), + [sym_binary_operator] = STATE(3024), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3024), + [sym_list] = STATE(3024), + [sym_tuple] = STATE(3024), + [sym_bitstring] = STATE(3024), + [sym_map] = STATE(3024), + [sym_boolean] = STATE(3024), + [sym_nil] = STATE(3024), + [sym_call] = STATE(3024), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3024), + [sym_anonymous_function] = STATE(3024), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3008), + [sym_float] = ACTIONS(3008), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3008), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1014] = { + [sym__expression] = STATE(1663), + [sym_block] = STATE(1663), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1663), + [sym_atom] = STATE(1663), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1663), + [sym_charlist] = STATE(1663), + [sym_sigil] = STATE(1663), + [sym_unary_operator] = STATE(1663), + [sym_binary_operator] = STATE(1663), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1663), + [sym_list] = STATE(1663), + [sym_tuple] = STATE(1663), + [sym_bitstring] = STATE(1663), + [sym_map] = STATE(1663), + [sym_boolean] = STATE(1663), + [sym_nil] = STATE(1663), + [sym_call] = STATE(1663), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1663), + [sym_anonymous_function] = STATE(1663), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2662), + [sym_float] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2662), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1015] = { + [sym__expression] = STATE(3585), + [sym_block] = STATE(3585), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3585), + [sym_atom] = STATE(3585), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3585), + [sym_charlist] = STATE(3585), + [sym_sigil] = STATE(3585), + [sym_unary_operator] = STATE(3585), + [sym_binary_operator] = STATE(3585), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3585), + [sym_list] = STATE(3585), + [sym_tuple] = STATE(3585), + [sym_bitstring] = STATE(3585), + [sym_map] = STATE(3585), + [sym_boolean] = STATE(3585), + [sym_nil] = STATE(3585), + [sym_call] = STATE(3585), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3585), + [sym_anonymous_function] = STATE(3585), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3010), + [sym_float] = ACTIONS(3010), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3010), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1016] = { + [sym__expression] = STATE(3736), + [sym_block] = STATE(3736), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3736), + [sym_atom] = STATE(3736), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3736), + [sym_charlist] = STATE(3736), + [sym_sigil] = STATE(3736), + [sym_unary_operator] = STATE(3736), + [sym_binary_operator] = STATE(3736), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3736), + [sym_list] = STATE(3736), + [sym_tuple] = STATE(3736), + [sym_bitstring] = STATE(3736), + [sym_map] = STATE(3736), + [sym_boolean] = STATE(3736), + [sym_nil] = STATE(3736), + [sym_call] = STATE(3736), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3736), + [sym_anonymous_function] = STATE(3736), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3012), + [sym_float] = ACTIONS(3012), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3012), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1017] = { + [sym__expression] = STATE(1719), + [sym_block] = STATE(1719), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1719), + [sym_atom] = STATE(1719), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1719), + [sym_charlist] = STATE(1719), + [sym_sigil] = STATE(1719), + [sym_unary_operator] = STATE(1719), + [sym_binary_operator] = STATE(1719), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1719), + [sym_list] = STATE(1719), + [sym_tuple] = STATE(1719), + [sym_bitstring] = STATE(1719), + [sym_map] = STATE(1719), + [sym_boolean] = STATE(1719), + [sym_nil] = STATE(1719), + [sym_call] = STATE(1719), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1719), + [sym_anonymous_function] = STATE(1719), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2704), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2704), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1018] = { + [sym__expression] = STATE(3593), + [sym_block] = STATE(3593), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3593), + [sym_atom] = STATE(3593), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3593), + [sym_charlist] = STATE(3593), + [sym_sigil] = STATE(3593), + [sym_unary_operator] = STATE(3593), + [sym_binary_operator] = STATE(3593), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3593), + [sym_list] = STATE(3593), + [sym_tuple] = STATE(3593), + [sym_bitstring] = STATE(3593), + [sym_map] = STATE(3593), + [sym_boolean] = STATE(3593), + [sym_nil] = STATE(3593), + [sym_call] = STATE(3593), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3593), + [sym_anonymous_function] = STATE(3593), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3014), + [sym_float] = ACTIONS(3014), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3014), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1019] = { + [sym__expression] = STATE(1564), + [sym_block] = STATE(1564), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1564), + [sym_atom] = STATE(1564), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1564), + [sym_charlist] = STATE(1564), + [sym_sigil] = STATE(1564), + [sym_unary_operator] = STATE(1564), + [sym_binary_operator] = STATE(1564), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1564), + [sym_list] = STATE(1564), + [sym_tuple] = STATE(1564), + [sym_bitstring] = STATE(1564), + [sym_map] = STATE(1564), + [sym_boolean] = STATE(1564), + [sym_nil] = STATE(1564), + [sym_call] = STATE(1564), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1564), + [sym_anonymous_function] = STATE(1564), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2276), + [sym_float] = ACTIONS(2276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [1020] = { + [sym__expression] = STATE(1441), + [sym_block] = STATE(1441), + [sym__identifier] = STATE(123), + [sym_identifier] = STATE(123), + [sym_special_identifier] = STATE(123), + [sym_alias] = STATE(1441), + [sym_atom] = STATE(1441), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(1441), + [sym_charlist] = STATE(1441), + [sym_sigil] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_binary_operator] = STATE(1441), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(1441), + [sym_list] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_bitstring] = STATE(1441), + [sym_map] = STATE(1441), + [sym_boolean] = STATE(1441), + [sym_nil] = STATE(1441), + [sym_call] = STATE(1441), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(122), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(1441), + [sym_anonymous_function] = STATE(1441), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2150), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(2278), + [sym_float] = ACTIONS(2278), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2158), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(825), + [anon_sym_not] = ACTIONS(2160), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(2278), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(829), + [sym__not_in] = ACTIONS(61), + }, + [1021] = { + [sym__expression] = STATE(3591), + [sym_block] = STATE(3591), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3591), + [sym_atom] = STATE(3591), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3591), + [sym_charlist] = STATE(3591), + [sym_sigil] = STATE(3591), + [sym_unary_operator] = STATE(3591), + [sym_binary_operator] = STATE(3591), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3591), + [sym_list] = STATE(3591), + [sym_tuple] = STATE(3591), + [sym_bitstring] = STATE(3591), + [sym_map] = STATE(3591), + [sym_boolean] = STATE(3591), + [sym_nil] = STATE(3591), + [sym_call] = STATE(3591), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3591), + [sym_anonymous_function] = STATE(3591), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3016), + [sym_float] = ACTIONS(3016), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3016), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1022] = { + [sym__expression] = STATE(3477), + [sym_block] = STATE(3477), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3477), + [sym_atom] = STATE(3477), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3477), + [sym_charlist] = STATE(3477), + [sym_sigil] = STATE(3477), + [sym_unary_operator] = STATE(3477), + [sym_binary_operator] = STATE(3477), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3477), + [sym_list] = STATE(3477), + [sym_tuple] = STATE(3477), + [sym_bitstring] = STATE(3477), + [sym_map] = STATE(3477), + [sym_boolean] = STATE(3477), + [sym_nil] = STATE(3477), + [sym_call] = STATE(3477), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3477), + [sym_anonymous_function] = STATE(3477), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2782), + [sym_float] = ACTIONS(2782), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2782), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1023] = { + [sym__expression] = STATE(3590), + [sym_block] = STATE(3590), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3590), + [sym_atom] = STATE(3590), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3590), + [sym_charlist] = STATE(3590), + [sym_sigil] = STATE(3590), + [sym_unary_operator] = STATE(3590), + [sym_binary_operator] = STATE(3590), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3590), + [sym_list] = STATE(3590), + [sym_tuple] = STATE(3590), + [sym_bitstring] = STATE(3590), + [sym_map] = STATE(3590), + [sym_boolean] = STATE(3590), + [sym_nil] = STATE(3590), + [sym_call] = STATE(3590), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3590), + [sym_anonymous_function] = STATE(3590), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3018), + [sym_float] = ACTIONS(3018), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3018), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1024] = { + [sym__expression] = STATE(3587), + [sym_block] = STATE(3587), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3587), + [sym_atom] = STATE(3587), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3587), + [sym_charlist] = STATE(3587), + [sym_sigil] = STATE(3587), + [sym_unary_operator] = STATE(3587), + [sym_binary_operator] = STATE(3587), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3587), + [sym_list] = STATE(3587), + [sym_tuple] = STATE(3587), + [sym_bitstring] = STATE(3587), + [sym_map] = STATE(3587), + [sym_boolean] = STATE(3587), + [sym_nil] = STATE(3587), + [sym_call] = STATE(3587), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3587), + [sym_anonymous_function] = STATE(3587), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3020), + [sym_float] = ACTIONS(3020), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3020), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1025] = { + [sym__expression] = STATE(3586), + [sym_block] = STATE(3586), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3586), + [sym_atom] = STATE(3586), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3586), + [sym_charlist] = STATE(3586), + [sym_sigil] = STATE(3586), + [sym_unary_operator] = STATE(3586), + [sym_binary_operator] = STATE(3586), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3586), + [sym_list] = STATE(3586), + [sym_tuple] = STATE(3586), + [sym_bitstring] = STATE(3586), + [sym_map] = STATE(3586), + [sym_boolean] = STATE(3586), + [sym_nil] = STATE(3586), + [sym_call] = STATE(3586), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3586), + [sym_anonymous_function] = STATE(3586), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3022), + [sym_float] = ACTIONS(3022), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3022), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1026] = { + [sym__expression] = STATE(3913), + [sym_block] = STATE(3913), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3913), + [sym_atom] = STATE(3913), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3913), + [sym_charlist] = STATE(3913), + [sym_sigil] = STATE(3913), + [sym_unary_operator] = STATE(3913), + [sym_binary_operator] = STATE(3913), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3913), + [sym_list] = STATE(3913), + [sym_tuple] = STATE(3913), + [sym_bitstring] = STATE(3913), + [sym_map] = STATE(3913), + [sym_boolean] = STATE(3913), + [sym_nil] = STATE(3913), + [sym_call] = STATE(3913), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3913), + [sym_anonymous_function] = STATE(3913), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3024), + [sym_float] = ACTIONS(3024), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3024), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1027] = { + [sym__expression] = STATE(2475), + [sym_block] = STATE(2475), + [sym__identifier] = STATE(91), + [sym_identifier] = STATE(91), + [sym_special_identifier] = STATE(91), + [sym_alias] = STATE(2475), + [sym_atom] = STATE(2475), + [sym__quoted_i_double] = STATE(1572), + [sym__quoted_i_single] = STATE(1571), + [sym__quoted_i_heredoc_single] = STATE(1571), + [sym__quoted_i_heredoc_double] = STATE(1572), + [sym_string] = STATE(2475), + [sym_charlist] = STATE(2475), + [sym_sigil] = STATE(2475), + [sym_unary_operator] = STATE(2475), + [sym_binary_operator] = STATE(2475), + [sym_operator_identifier] = STATE(5378), + [sym_dot] = STATE(2475), + [sym_list] = STATE(2475), + [sym_tuple] = STATE(2475), + [sym_bitstring] = STATE(2475), + [sym_map] = STATE(2475), + [sym_boolean] = STATE(2475), + [sym_nil] = STATE(2475), + [sym_call] = STATE(2475), + [sym__call_on_call] = STATE(1570), + [sym__local_call_with_arguments] = STATE(1570), + [sym__parenthesised_local_call_with_arguments] = STATE(1387), + [sym__local_call_without_arguments] = STATE(1570), + [sym__remote_call] = STATE(1570), + [sym__parenthesised_remote_call] = STATE(1387), + [sym__remote_dot] = STATE(90), + [sym__anonymous_call] = STATE(1387), + [sym__anonymous_dot] = STATE(5311), + [sym_access_call] = STATE(2475), + [sym_anonymous_function] = STATE(2475), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(673), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2250), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [sym_integer] = ACTIONS(1635), + [sym_float] = ACTIONS(1635), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2256), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_CARET] = ACTIONS(2258), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2258), + [anon_sym_PERCENT] = ACTIONS(687), + [anon_sym_DQUOTE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(693), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(695), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_not] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_nil] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_LT_LT] = ACTIONS(711), + [sym_char] = ACTIONS(1635), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(715), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(717), + [sym__not_in] = ACTIONS(61), + }, + [1028] = { + [sym__expression] = STATE(3584), + [sym_block] = STATE(3584), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3584), + [sym_atom] = STATE(3584), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3584), + [sym_charlist] = STATE(3584), + [sym_sigil] = STATE(3584), + [sym_unary_operator] = STATE(3584), + [sym_binary_operator] = STATE(3584), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3584), + [sym_list] = STATE(3584), + [sym_tuple] = STATE(3584), + [sym_bitstring] = STATE(3584), + [sym_map] = STATE(3584), + [sym_boolean] = STATE(3584), + [sym_nil] = STATE(3584), + [sym_call] = STATE(3584), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3584), + [sym_anonymous_function] = STATE(3584), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3026), + [sym_float] = ACTIONS(3026), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3026), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1029] = { + [sym__expression] = STATE(3583), + [sym_block] = STATE(3583), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3583), + [sym_atom] = STATE(3583), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3583), + [sym_charlist] = STATE(3583), + [sym_sigil] = STATE(3583), + [sym_unary_operator] = STATE(3583), + [sym_binary_operator] = STATE(3583), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3583), + [sym_list] = STATE(3583), + [sym_tuple] = STATE(3583), + [sym_bitstring] = STATE(3583), + [sym_map] = STATE(3583), + [sym_boolean] = STATE(3583), + [sym_nil] = STATE(3583), + [sym_call] = STATE(3583), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3583), + [sym_anonymous_function] = STATE(3583), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3028), + [sym_float] = ACTIONS(3028), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3028), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1030] = { + [sym__expression] = STATE(3582), + [sym_block] = STATE(3582), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3582), + [sym_atom] = STATE(3582), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3582), + [sym_charlist] = STATE(3582), + [sym_sigil] = STATE(3582), + [sym_unary_operator] = STATE(3582), + [sym_binary_operator] = STATE(3582), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3582), + [sym_list] = STATE(3582), + [sym_tuple] = STATE(3582), + [sym_bitstring] = STATE(3582), + [sym_map] = STATE(3582), + [sym_boolean] = STATE(3582), + [sym_nil] = STATE(3582), + [sym_call] = STATE(3582), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3582), + [sym_anonymous_function] = STATE(3582), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3030), + [sym_float] = ACTIONS(3030), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3030), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1031] = { + [sym__expression] = STATE(3952), + [sym_block] = STATE(3952), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3952), + [sym_atom] = STATE(3952), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3952), + [sym_charlist] = STATE(3952), + [sym_sigil] = STATE(3952), + [sym_unary_operator] = STATE(3952), + [sym_binary_operator] = STATE(3952), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3952), + [sym_list] = STATE(3952), + [sym_tuple] = STATE(3952), + [sym_bitstring] = STATE(3952), + [sym_map] = STATE(3952), + [sym_boolean] = STATE(3952), + [sym_nil] = STATE(3952), + [sym_call] = STATE(3952), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3952), + [sym_anonymous_function] = STATE(3952), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3032), + [sym_float] = ACTIONS(3032), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3032), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1032] = { + [sym__expression] = STATE(3580), + [sym_block] = STATE(3580), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3580), + [sym_atom] = STATE(3580), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3580), + [sym_charlist] = STATE(3580), + [sym_sigil] = STATE(3580), + [sym_unary_operator] = STATE(3580), + [sym_binary_operator] = STATE(3580), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3580), + [sym_list] = STATE(3580), + [sym_tuple] = STATE(3580), + [sym_bitstring] = STATE(3580), + [sym_map] = STATE(3580), + [sym_boolean] = STATE(3580), + [sym_nil] = STATE(3580), + [sym_call] = STATE(3580), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3580), + [sym_anonymous_function] = STATE(3580), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3034), + [sym_float] = ACTIONS(3034), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3034), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1033] = { + [sym__expression] = STATE(3577), + [sym_block] = STATE(3577), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3577), + [sym_atom] = STATE(3577), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3577), + [sym_charlist] = STATE(3577), + [sym_sigil] = STATE(3577), + [sym_unary_operator] = STATE(3577), + [sym_binary_operator] = STATE(3577), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3577), + [sym_list] = STATE(3577), + [sym_tuple] = STATE(3577), + [sym_bitstring] = STATE(3577), + [sym_map] = STATE(3577), + [sym_boolean] = STATE(3577), + [sym_nil] = STATE(3577), + [sym_call] = STATE(3577), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3577), + [sym_anonymous_function] = STATE(3577), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(3036), + [sym_float] = ACTIONS(3036), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1844), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1846), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_CARET] = ACTIONS(1846), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1846), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(1846), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(3036), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1601), + [sym__not_in] = ACTIONS(61), + }, + [1034] = { + [sym__expression] = STATE(3697), + [sym_block] = STATE(3697), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3697), + [sym_atom] = STATE(3697), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3697), + [sym_charlist] = STATE(3697), + [sym_sigil] = STATE(3697), + [sym_unary_operator] = STATE(3697), + [sym_binary_operator] = STATE(3697), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3697), + [sym_list] = STATE(3697), + [sym_tuple] = STATE(3697), + [sym_bitstring] = STATE(3697), + [sym_map] = STATE(3697), + [sym_boolean] = STATE(3697), + [sym_nil] = STATE(3697), + [sym_call] = STATE(3697), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3697), + [sym_anonymous_function] = STATE(3697), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3038), + [sym_float] = ACTIONS(3038), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3038), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [1035] = { + [sym__expression] = STATE(3940), + [sym_block] = STATE(3940), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3940), + [sym_atom] = STATE(3940), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3940), + [sym_charlist] = STATE(3940), + [sym_sigil] = STATE(3940), + [sym_unary_operator] = STATE(3940), + [sym_binary_operator] = STATE(3940), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3940), + [sym_list] = STATE(3940), + [sym_tuple] = STATE(3940), + [sym_bitstring] = STATE(3940), + [sym_map] = STATE(3940), + [sym_boolean] = STATE(3940), + [sym_nil] = STATE(3940), + [sym_call] = STATE(3940), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3940), + [sym_anonymous_function] = STATE(3940), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3040), + [sym_float] = ACTIONS(3040), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3040), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1036] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1037] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1038] = { + [sym__expression] = STATE(2848), + [sym_block] = STATE(2848), + [sym__identifier] = STATE(86), + [sym_identifier] = STATE(86), + [sym_special_identifier] = STATE(86), + [sym_alias] = STATE(2848), + [sym_atom] = STATE(2848), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2848), + [sym_charlist] = STATE(2848), + [sym_sigil] = STATE(2848), + [sym_unary_operator] = STATE(2848), + [sym_binary_operator] = STATE(2848), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2848), + [sym_list] = STATE(2848), + [sym_tuple] = STATE(2848), + [sym_bitstring] = STATE(2848), + [sym_map] = STATE(2848), + [sym_boolean] = STATE(2848), + [sym_nil] = STATE(2848), + [sym_call] = STATE(2848), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(87), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2848), + [sym_anonymous_function] = STATE(2848), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1998), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3042), + [sym_float] = ACTIONS(3042), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2004), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2006), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(596), + [anon_sym_not] = ACTIONS(2006), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3042), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(615), + [sym__not_in] = ACTIONS(61), + }, + [1039] = { + [sym__expression] = STATE(3942), + [sym_block] = STATE(3942), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3942), + [sym_atom] = STATE(3942), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3942), + [sym_charlist] = STATE(3942), + [sym_sigil] = STATE(3942), + [sym_unary_operator] = STATE(3942), + [sym_binary_operator] = STATE(3942), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3942), + [sym_list] = STATE(3942), + [sym_tuple] = STATE(3942), + [sym_bitstring] = STATE(3942), + [sym_map] = STATE(3942), + [sym_boolean] = STATE(3942), + [sym_nil] = STATE(3942), + [sym_call] = STATE(3942), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3942), + [sym_anonymous_function] = STATE(3942), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3044), + [sym_float] = ACTIONS(3044), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3044), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1040] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3943), + [sym_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3943), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3046), + [sym_float] = ACTIONS(3046), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3046), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1041] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1042] = { + [sym__expression] = STATE(3147), + [sym_block] = STATE(3147), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3147), + [sym_atom] = STATE(3147), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3147), + [sym_charlist] = STATE(3147), + [sym_sigil] = STATE(3147), + [sym_unary_operator] = STATE(3147), + [sym_binary_operator] = STATE(3147), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3147), + [sym_list] = STATE(3147), + [sym_tuple] = STATE(3147), + [sym_bitstring] = STATE(3147), + [sym_map] = STATE(3147), + [sym_boolean] = STATE(3147), + [sym_nil] = STATE(3147), + [sym_call] = STATE(3147), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3147), + [sym_anonymous_function] = STATE(3147), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3048), + [sym_float] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3048), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1043] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1044] = { + [sym__expression] = STATE(3047), + [sym_block] = STATE(3047), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3047), + [sym_atom] = STATE(3047), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3047), + [sym_charlist] = STATE(3047), + [sym_sigil] = STATE(3047), + [sym_unary_operator] = STATE(3047), + [sym_binary_operator] = STATE(3047), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3047), + [sym_list] = STATE(3047), + [sym_tuple] = STATE(3047), + [sym_bitstring] = STATE(3047), + [sym_map] = STATE(3047), + [sym_boolean] = STATE(3047), + [sym_nil] = STATE(3047), + [sym_call] = STATE(3047), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3047), + [sym_anonymous_function] = STATE(3047), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2520), + [sym_float] = ACTIONS(2520), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2520), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1045] = { + [sym__expression] = STATE(3040), + [sym_block] = STATE(3040), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3040), + [sym_atom] = STATE(3040), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3040), + [sym_charlist] = STATE(3040), + [sym_sigil] = STATE(3040), + [sym_unary_operator] = STATE(3040), + [sym_binary_operator] = STATE(3040), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3040), + [sym_list] = STATE(3040), + [sym_tuple] = STATE(3040), + [sym_bitstring] = STATE(3040), + [sym_map] = STATE(3040), + [sym_boolean] = STATE(3040), + [sym_nil] = STATE(3040), + [sym_call] = STATE(3040), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3040), + [sym_anonymous_function] = STATE(3040), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2406), + [sym_float] = ACTIONS(2406), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2406), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1046] = { + [sym__expression] = STATE(3674), + [sym_block] = STATE(3674), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3674), + [sym_atom] = STATE(3674), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3674), + [sym_charlist] = STATE(3674), + [sym_sigil] = STATE(3674), + [sym_unary_operator] = STATE(3674), + [sym_binary_operator] = STATE(3674), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3674), + [sym_list] = STATE(3674), + [sym_tuple] = STATE(3674), + [sym_bitstring] = STATE(3674), + [sym_map] = STATE(3674), + [sym_boolean] = STATE(3674), + [sym_nil] = STATE(3674), + [sym_call] = STATE(3674), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3674), + [sym_anonymous_function] = STATE(3674), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2872), + [sym_float] = ACTIONS(2872), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2872), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1047] = { + [sym__expression] = STATE(2804), + [sym_block] = STATE(2804), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2804), + [sym_atom] = STATE(2804), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2804), + [sym_charlist] = STATE(2804), + [sym_sigil] = STATE(2804), + [sym_unary_operator] = STATE(2804), + [sym_binary_operator] = STATE(2804), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2804), + [sym_list] = STATE(2804), + [sym_tuple] = STATE(2804), + [sym_bitstring] = STATE(2804), + [sym_map] = STATE(2804), + [sym_boolean] = STATE(2804), + [sym_nil] = STATE(2804), + [sym_call] = STATE(2804), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3050), + [sym_float] = ACTIONS(3050), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3050), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1048] = { + [sym__expression] = STATE(3645), + [sym_block] = STATE(3645), + [sym__identifier] = STATE(110), + [sym_identifier] = STATE(110), + [sym_special_identifier] = STATE(110), + [sym_alias] = STATE(3645), + [sym_atom] = STATE(3645), + [sym__quoted_i_double] = STATE(3629), + [sym__quoted_i_single] = STATE(3630), + [sym__quoted_i_heredoc_single] = STATE(3630), + [sym__quoted_i_heredoc_double] = STATE(3629), + [sym_string] = STATE(3645), + [sym_charlist] = STATE(3645), + [sym_sigil] = STATE(3645), + [sym_unary_operator] = STATE(3645), + [sym_binary_operator] = STATE(3645), + [sym_operator_identifier] = STATE(5433), + [sym_dot] = STATE(3645), + [sym_list] = STATE(3645), + [sym_tuple] = STATE(3645), + [sym_bitstring] = STATE(3645), + [sym_map] = STATE(3645), + [sym_boolean] = STATE(3645), + [sym_nil] = STATE(3645), + [sym_call] = STATE(3645), + [sym__call_on_call] = STATE(3631), + [sym__local_call_with_arguments] = STATE(3631), + [sym__parenthesised_local_call_with_arguments] = STATE(2981), + [sym__local_call_without_arguments] = STATE(3631), + [sym__remote_call] = STATE(3631), + [sym__parenthesised_remote_call] = STATE(2981), + [sym__remote_dot] = STATE(88), + [sym__anonymous_call] = STATE(2981), + [sym__anonymous_dot] = STATE(5301), + [sym_access_call] = STATE(3645), + [sym_anonymous_function] = STATE(3645), + [anon_sym_LF] = 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_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [sym_integer] = ACTIONS(2306), + [sym_float] = ACTIONS(2306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(29), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(31), + [anon_sym_DASH] = ACTIONS(31), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(31), + [anon_sym_CARET] = ACTIONS(31), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(31), + [anon_sym_PERCENT] = ACTIONS(33), + [anon_sym_DQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(39), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_not] = ACTIONS(31), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(49), + [anon_sym_false] = ACTIONS(49), + [anon_sym_nil] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_LT_LT] = ACTIONS(55), + [sym_char] = ACTIONS(2306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(57), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(59), + [sym__not_in] = ACTIONS(61), + }, + [1049] = { + [sym__expression] = STATE(3152), + [sym_block] = STATE(3152), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3152), + [sym_atom] = STATE(3152), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3152), + [sym_charlist] = STATE(3152), + [sym_sigil] = STATE(3152), + [sym_unary_operator] = STATE(3152), + [sym_binary_operator] = STATE(3152), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3152), + [sym_list] = STATE(3152), + [sym_tuple] = STATE(3152), + [sym_bitstring] = STATE(3152), + [sym_map] = STATE(3152), + [sym_boolean] = STATE(3152), + [sym_nil] = STATE(3152), + [sym_call] = STATE(3152), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3152), + [sym_anonymous_function] = STATE(3152), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3052), + [sym_float] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3052), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1050] = { + [sym__expression] = STATE(3153), + [sym_block] = STATE(3153), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3153), + [sym_atom] = STATE(3153), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3153), + [sym_charlist] = STATE(3153), + [sym_sigil] = STATE(3153), + [sym_unary_operator] = STATE(3153), + [sym_binary_operator] = STATE(3153), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3153), + [sym_list] = STATE(3153), + [sym_tuple] = STATE(3153), + [sym_bitstring] = STATE(3153), + [sym_map] = STATE(3153), + [sym_boolean] = STATE(3153), + [sym_nil] = STATE(3153), + [sym_call] = STATE(3153), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3153), + [sym_anonymous_function] = STATE(3153), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3054), + [sym_float] = ACTIONS(3054), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3054), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1051] = { + [sym__expression] = STATE(3675), + [sym_block] = STATE(3675), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3675), + [sym_atom] = STATE(3675), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3675), + [sym_charlist] = STATE(3675), + [sym_sigil] = STATE(3675), + [sym_unary_operator] = STATE(3675), + [sym_binary_operator] = STATE(3675), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3675), + [sym_list] = STATE(3675), + [sym_tuple] = STATE(3675), + [sym_bitstring] = STATE(3675), + [sym_map] = STATE(3675), + [sym_boolean] = STATE(3675), + [sym_nil] = STATE(3675), + [sym_call] = STATE(3675), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3675), + [sym_anonymous_function] = STATE(3675), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2874), + [sym_float] = ACTIONS(2874), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2874), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1052] = { + [sym__expression] = STATE(3933), + [sym_block] = STATE(3933), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3933), + [sym_atom] = STATE(3933), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3933), + [sym_charlist] = STATE(3933), + [sym_sigil] = STATE(3933), + [sym_unary_operator] = STATE(3933), + [sym_binary_operator] = STATE(3933), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3933), + [sym_list] = STATE(3933), + [sym_tuple] = STATE(3933), + [sym_bitstring] = STATE(3933), + [sym_map] = STATE(3933), + [sym_boolean] = STATE(3933), + [sym_nil] = STATE(3933), + [sym_call] = STATE(3933), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3933), + [sym_anonymous_function] = STATE(3933), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3056), + [sym_float] = ACTIONS(3056), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3056), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1053] = { + [sym__expression] = STATE(2912), + [sym_block] = STATE(2912), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2912), + [sym_atom] = STATE(2912), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2912), + [sym_charlist] = STATE(2912), + [sym_sigil] = STATE(2912), + [sym_unary_operator] = STATE(2912), + [sym_binary_operator] = STATE(2912), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2912), + [sym_list] = STATE(2912), + [sym_tuple] = STATE(2912), + [sym_bitstring] = STATE(2912), + [sym_map] = STATE(2912), + [sym_boolean] = STATE(2912), + [sym_nil] = STATE(2912), + [sym_call] = STATE(2912), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2912), + [sym_anonymous_function] = STATE(2912), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3058), + [sym_float] = ACTIONS(3058), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3058), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1054] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3154), + [sym_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3154), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3060), + [sym_float] = ACTIONS(3060), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3060), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1055] = { + [sym__expression] = STATE(2911), + [sym_block] = STATE(2911), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2911), + [sym_atom] = STATE(2911), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2911), + [sym_charlist] = STATE(2911), + [sym_sigil] = STATE(2911), + [sym_unary_operator] = STATE(2911), + [sym_binary_operator] = STATE(2911), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2911), + [sym_list] = STATE(2911), + [sym_tuple] = STATE(2911), + [sym_bitstring] = STATE(2911), + [sym_map] = STATE(2911), + [sym_boolean] = STATE(2911), + [sym_nil] = STATE(2911), + [sym_call] = STATE(2911), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2911), + [sym_anonymous_function] = STATE(2911), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3062), + [sym_float] = ACTIONS(3062), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3062), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1056] = { + [sym__expression] = STATE(3927), + [sym_block] = STATE(3927), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3927), + [sym_atom] = STATE(3927), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3927), + [sym_charlist] = STATE(3927), + [sym_sigil] = STATE(3927), + [sym_unary_operator] = STATE(3927), + [sym_binary_operator] = STATE(3927), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3927), + [sym_list] = STATE(3927), + [sym_tuple] = STATE(3927), + [sym_bitstring] = STATE(3927), + [sym_map] = STATE(3927), + [sym_boolean] = STATE(3927), + [sym_nil] = STATE(3927), + [sym_call] = STATE(3927), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3927), + [sym_anonymous_function] = STATE(3927), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3064), + [sym_float] = ACTIONS(3064), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3064), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1057] = { + [sym__expression] = STATE(3766), + [sym_block] = STATE(3766), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3766), + [sym_atom] = STATE(3766), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3766), + [sym_charlist] = STATE(3766), + [sym_sigil] = STATE(3766), + [sym_unary_operator] = STATE(3766), + [sym_binary_operator] = STATE(3766), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3766), + [sym_list] = STATE(3766), + [sym_tuple] = STATE(3766), + [sym_bitstring] = STATE(3766), + [sym_map] = STATE(3766), + [sym_boolean] = STATE(3766), + [sym_nil] = STATE(3766), + [sym_call] = STATE(3766), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3766), + [sym_anonymous_function] = STATE(3766), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3066), + [sym_float] = ACTIONS(3066), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3066), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1058] = { + [sym__expression] = STATE(2909), + [sym_block] = STATE(2909), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2909), + [sym_atom] = STATE(2909), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2909), + [sym_charlist] = STATE(2909), + [sym_sigil] = STATE(2909), + [sym_unary_operator] = STATE(2909), + [sym_binary_operator] = STATE(2909), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2909), + [sym_list] = STATE(2909), + [sym_tuple] = STATE(2909), + [sym_bitstring] = STATE(2909), + [sym_map] = STATE(2909), + [sym_boolean] = STATE(2909), + [sym_nil] = STATE(2909), + [sym_call] = STATE(2909), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2909), + [sym_anonymous_function] = STATE(2909), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3068), + [sym_float] = ACTIONS(3068), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3068), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1059] = { + [sym__expression] = STATE(2908), + [sym_block] = STATE(2908), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2908), + [sym_atom] = STATE(2908), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2908), + [sym_charlist] = STATE(2908), + [sym_sigil] = STATE(2908), + [sym_unary_operator] = STATE(2908), + [sym_binary_operator] = STATE(2908), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2908), + [sym_list] = STATE(2908), + [sym_tuple] = STATE(2908), + [sym_bitstring] = STATE(2908), + [sym_map] = STATE(2908), + [sym_boolean] = STATE(2908), + [sym_nil] = STATE(2908), + [sym_call] = STATE(2908), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2908), + [sym_anonymous_function] = STATE(2908), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3070), + [sym_float] = ACTIONS(3070), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3070), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1060] = { + [sym__expression] = STATE(2907), + [sym_block] = STATE(2907), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2907), + [sym_atom] = STATE(2907), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2907), + [sym_charlist] = STATE(2907), + [sym_sigil] = STATE(2907), + [sym_unary_operator] = STATE(2907), + [sym_binary_operator] = STATE(2907), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2907), + [sym_list] = STATE(2907), + [sym_tuple] = STATE(2907), + [sym_bitstring] = STATE(2907), + [sym_map] = STATE(2907), + [sym_boolean] = STATE(2907), + [sym_nil] = STATE(2907), + [sym_call] = STATE(2907), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2907), + [sym_anonymous_function] = STATE(2907), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3072), + [sym_float] = ACTIONS(3072), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3072), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1061] = { + [sym__expression] = STATE(2963), + [sym_block] = STATE(2963), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(2963), + [sym_atom] = STATE(2963), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(2963), + [sym_charlist] = STATE(2963), + [sym_sigil] = STATE(2963), + [sym_unary_operator] = STATE(2963), + [sym_binary_operator] = STATE(2963), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(2963), + [sym_list] = STATE(2963), + [sym_tuple] = STATE(2963), + [sym_bitstring] = STATE(2963), + [sym_map] = STATE(2963), + [sym_boolean] = STATE(2963), + [sym_nil] = STATE(2963), + [sym_call] = STATE(2963), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(2963), + [sym_anonymous_function] = STATE(2963), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2434), + [sym_float] = ACTIONS(2434), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2434), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1062] = { + [sym__expression] = STATE(3923), + [sym_block] = STATE(3923), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3923), + [sym_atom] = STATE(3923), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3923), + [sym_charlist] = STATE(3923), + [sym_sigil] = STATE(3923), + [sym_unary_operator] = STATE(3923), + [sym_binary_operator] = STATE(3923), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3923), + [sym_list] = STATE(3923), + [sym_tuple] = STATE(3923), + [sym_bitstring] = STATE(3923), + [sym_map] = STATE(3923), + [sym_boolean] = STATE(3923), + [sym_nil] = STATE(3923), + [sym_call] = STATE(3923), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3923), + [sym_anonymous_function] = STATE(3923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3074), + [sym_float] = ACTIONS(3074), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3074), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1063] = { + [sym__expression] = STATE(3954), + [sym_block] = STATE(3954), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3954), + [sym_atom] = STATE(3954), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3954), + [sym_charlist] = STATE(3954), + [sym_sigil] = STATE(3954), + [sym_unary_operator] = STATE(3954), + [sym_binary_operator] = STATE(3954), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3954), + [sym_list] = STATE(3954), + [sym_tuple] = STATE(3954), + [sym_bitstring] = STATE(3954), + [sym_map] = STATE(3954), + [sym_boolean] = STATE(3954), + [sym_nil] = STATE(3954), + [sym_call] = STATE(3954), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3954), + [sym_anonymous_function] = STATE(3954), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3076), + [sym_float] = ACTIONS(3076), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3076), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1064] = { + [sym__expression] = STATE(3965), + [sym_block] = STATE(3965), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3965), + [sym_atom] = STATE(3965), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3965), + [sym_charlist] = STATE(3965), + [sym_sigil] = STATE(3965), + [sym_unary_operator] = STATE(3965), + [sym_binary_operator] = STATE(3965), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3965), + [sym_list] = STATE(3965), + [sym_tuple] = STATE(3965), + [sym_bitstring] = STATE(3965), + [sym_map] = STATE(3965), + [sym_boolean] = STATE(3965), + [sym_nil] = STATE(3965), + [sym_call] = STATE(3965), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3965), + [sym_anonymous_function] = STATE(3965), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3078), + [sym_float] = ACTIONS(3078), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3078), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1065] = { + [sym__expression] = STATE(1707), + [sym_block] = STATE(1707), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1707), + [sym_atom] = STATE(1707), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1707), + [sym_charlist] = STATE(1707), + [sym_sigil] = STATE(1707), + [sym_unary_operator] = STATE(1707), + [sym_binary_operator] = STATE(1707), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1707), + [sym_list] = STATE(1707), + [sym_tuple] = STATE(1707), + [sym_bitstring] = STATE(1707), + [sym_map] = STATE(1707), + [sym_boolean] = STATE(1707), + [sym_nil] = STATE(1707), + [sym_call] = STATE(1707), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1707), + [sym_anonymous_function] = STATE(1707), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2880), + [sym_float] = ACTIONS(2880), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2880), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1066] = { + [sym__expression] = STATE(3966), + [sym_block] = STATE(3966), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3966), + [sym_atom] = STATE(3966), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3966), + [sym_charlist] = STATE(3966), + [sym_sigil] = STATE(3966), + [sym_unary_operator] = STATE(3966), + [sym_binary_operator] = STATE(3966), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3966), + [sym_list] = STATE(3966), + [sym_tuple] = STATE(3966), + [sym_bitstring] = STATE(3966), + [sym_map] = STATE(3966), + [sym_boolean] = STATE(3966), + [sym_nil] = STATE(3966), + [sym_call] = STATE(3966), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3966), + [sym_anonymous_function] = STATE(3966), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3080), + [sym_float] = ACTIONS(3080), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3080), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1067] = { + [sym__expression] = STATE(3964), + [sym_block] = STATE(3964), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3964), + [sym_atom] = STATE(3964), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3964), + [sym_charlist] = STATE(3964), + [sym_sigil] = STATE(3964), + [sym_unary_operator] = STATE(3964), + [sym_binary_operator] = STATE(3964), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3964), + [sym_list] = STATE(3964), + [sym_tuple] = STATE(3964), + [sym_bitstring] = STATE(3964), + [sym_map] = STATE(3964), + [sym_boolean] = STATE(3964), + [sym_nil] = STATE(3964), + [sym_call] = STATE(3964), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3964), + [sym_anonymous_function] = STATE(3964), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3082), + [sym_float] = ACTIONS(3082), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3082), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1068] = { + [sym__expression] = STATE(3962), + [sym_block] = STATE(3962), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3962), + [sym_atom] = STATE(3962), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3962), + [sym_charlist] = STATE(3962), + [sym_sigil] = STATE(3962), + [sym_unary_operator] = STATE(3962), + [sym_binary_operator] = STATE(3962), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3962), + [sym_list] = STATE(3962), + [sym_tuple] = STATE(3962), + [sym_bitstring] = STATE(3962), + [sym_map] = STATE(3962), + [sym_boolean] = STATE(3962), + [sym_nil] = STATE(3962), + [sym_call] = STATE(3962), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3962), + [sym_anonymous_function] = STATE(3962), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3084), + [sym_float] = ACTIONS(3084), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3084), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1069] = { + [sym__expression] = STATE(3175), + [sym_block] = STATE(3175), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3175), + [sym_atom] = STATE(3175), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3175), + [sym_charlist] = STATE(3175), + [sym_sigil] = STATE(3175), + [sym_unary_operator] = STATE(3175), + [sym_binary_operator] = STATE(3175), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3175), + [sym_list] = STATE(3175), + [sym_tuple] = STATE(3175), + [sym_bitstring] = STATE(3175), + [sym_map] = STATE(3175), + [sym_boolean] = STATE(3175), + [sym_nil] = STATE(3175), + [sym_call] = STATE(3175), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3175), + [sym_anonymous_function] = STATE(3175), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3086), + [sym_float] = ACTIONS(3086), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3086), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1070] = { + [sym__expression] = STATE(3961), + [sym_block] = STATE(3961), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3961), + [sym_atom] = STATE(3961), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3961), + [sym_charlist] = STATE(3961), + [sym_sigil] = STATE(3961), + [sym_unary_operator] = STATE(3961), + [sym_binary_operator] = STATE(3961), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3961), + [sym_list] = STATE(3961), + [sym_tuple] = STATE(3961), + [sym_bitstring] = STATE(3961), + [sym_map] = STATE(3961), + [sym_boolean] = STATE(3961), + [sym_nil] = STATE(3961), + [sym_call] = STATE(3961), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3961), + [sym_anonymous_function] = STATE(3961), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3088), + [sym_float] = ACTIONS(3088), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3088), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1071] = { + [sym__expression] = STATE(3960), + [sym_block] = STATE(3960), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3960), + [sym_atom] = STATE(3960), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3960), + [sym_charlist] = STATE(3960), + [sym_sigil] = STATE(3960), + [sym_unary_operator] = STATE(3960), + [sym_binary_operator] = STATE(3960), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3960), + [sym_list] = STATE(3960), + [sym_tuple] = STATE(3960), + [sym_bitstring] = STATE(3960), + [sym_map] = STATE(3960), + [sym_boolean] = STATE(3960), + [sym_nil] = STATE(3960), + [sym_call] = STATE(3960), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3960), + [sym_anonymous_function] = STATE(3960), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3090), + [sym_float] = ACTIONS(3090), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3090), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1072] = { + [sym__expression] = STATE(3699), + [sym_block] = STATE(3699), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3699), + [sym_atom] = STATE(3699), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3699), + [sym_charlist] = STATE(3699), + [sym_sigil] = STATE(3699), + [sym_unary_operator] = STATE(3699), + [sym_binary_operator] = STATE(3699), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3699), + [sym_list] = STATE(3699), + [sym_tuple] = STATE(3699), + [sym_bitstring] = STATE(3699), + [sym_map] = STATE(3699), + [sym_boolean] = STATE(3699), + [sym_nil] = STATE(3699), + [sym_call] = STATE(3699), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3699), + [sym_anonymous_function] = STATE(3699), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3092), + [sym_float] = ACTIONS(3092), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3092), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [1073] = { + [sym__expression] = STATE(3174), + [sym_block] = STATE(3174), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3174), + [sym_atom] = STATE(3174), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3174), + [sym_charlist] = STATE(3174), + [sym_sigil] = STATE(3174), + [sym_unary_operator] = STATE(3174), + [sym_binary_operator] = STATE(3174), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3174), + [sym_list] = STATE(3174), + [sym_tuple] = STATE(3174), + [sym_bitstring] = STATE(3174), + [sym_map] = STATE(3174), + [sym_boolean] = STATE(3174), + [sym_nil] = STATE(3174), + [sym_call] = STATE(3174), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3174), + [sym_anonymous_function] = STATE(3174), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3094), + [sym_float] = ACTIONS(3094), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3094), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1074] = { + [sym__expression] = STATE(3958), + [sym_block] = STATE(3958), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3958), + [sym_atom] = STATE(3958), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3958), + [sym_charlist] = STATE(3958), + [sym_sigil] = STATE(3958), + [sym_unary_operator] = STATE(3958), + [sym_binary_operator] = STATE(3958), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3958), + [sym_list] = STATE(3958), + [sym_tuple] = STATE(3958), + [sym_bitstring] = STATE(3958), + [sym_map] = STATE(3958), + [sym_boolean] = STATE(3958), + [sym_nil] = STATE(3958), + [sym_call] = STATE(3958), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3958), + [sym_anonymous_function] = STATE(3958), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3096), + [sym_float] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1894), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_CARET] = ACTIONS(1896), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1896), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1896), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3096), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1477), + [sym__not_in] = ACTIONS(61), + }, + [1075] = { + [sym__expression] = STATE(3046), + [sym_block] = STATE(3046), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3046), + [sym_atom] = STATE(3046), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3046), + [sym_charlist] = STATE(3046), + [sym_sigil] = STATE(3046), + [sym_unary_operator] = STATE(3046), + [sym_binary_operator] = STATE(3046), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3046), + [sym_list] = STATE(3046), + [sym_tuple] = STATE(3046), + [sym_bitstring] = STATE(3046), + [sym_map] = STATE(3046), + [sym_boolean] = STATE(3046), + [sym_nil] = STATE(3046), + [sym_call] = STATE(3046), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3046), + [sym_anonymous_function] = STATE(3046), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3098), + [sym_float] = ACTIONS(3098), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3098), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1076] = { + [sym__expression] = STATE(3043), + [sym_block] = STATE(3043), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3043), + [sym_atom] = STATE(3043), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3043), + [sym_charlist] = STATE(3043), + [sym_sigil] = STATE(3043), + [sym_unary_operator] = STATE(3043), + [sym_binary_operator] = STATE(3043), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3043), + [sym_list] = STATE(3043), + [sym_tuple] = STATE(3043), + [sym_bitstring] = STATE(3043), + [sym_map] = STATE(3043), + [sym_boolean] = STATE(3043), + [sym_nil] = STATE(3043), + [sym_call] = STATE(3043), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3043), + [sym_anonymous_function] = STATE(3043), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3100), + [sym_float] = ACTIONS(3100), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3100), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1077] = { + [sym__expression] = STATE(3042), + [sym_block] = STATE(3042), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3042), + [sym_atom] = STATE(3042), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3042), + [sym_charlist] = STATE(3042), + [sym_sigil] = STATE(3042), + [sym_unary_operator] = STATE(3042), + [sym_binary_operator] = STATE(3042), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3042), + [sym_list] = STATE(3042), + [sym_tuple] = STATE(3042), + [sym_bitstring] = STATE(3042), + [sym_map] = STATE(3042), + [sym_boolean] = STATE(3042), + [sym_nil] = STATE(3042), + [sym_call] = STATE(3042), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3042), + [sym_anonymous_function] = STATE(3042), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3102), + [sym_float] = ACTIONS(3102), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3102), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1078] = { + [sym__expression] = STATE(3041), + [sym_block] = STATE(3041), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3041), + [sym_atom] = STATE(3041), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3041), + [sym_charlist] = STATE(3041), + [sym_sigil] = STATE(3041), + [sym_unary_operator] = STATE(3041), + [sym_binary_operator] = STATE(3041), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3041), + [sym_list] = STATE(3041), + [sym_tuple] = STATE(3041), + [sym_bitstring] = STATE(3041), + [sym_map] = STATE(3041), + [sym_boolean] = STATE(3041), + [sym_nil] = STATE(3041), + [sym_call] = STATE(3041), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3041), + [sym_anonymous_function] = STATE(3041), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3104), + [sym_float] = ACTIONS(3104), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3104), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1079] = { + [sym__expression] = STATE(3155), + [sym_block] = STATE(3155), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3155), + [sym_atom] = STATE(3155), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3155), + [sym_charlist] = STATE(3155), + [sym_sigil] = STATE(3155), + [sym_unary_operator] = STATE(3155), + [sym_binary_operator] = STATE(3155), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3155), + [sym_list] = STATE(3155), + [sym_tuple] = STATE(3155), + [sym_bitstring] = STATE(3155), + [sym_map] = STATE(3155), + [sym_boolean] = STATE(3155), + [sym_nil] = STATE(3155), + [sym_call] = STATE(3155), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3155), + [sym_anonymous_function] = STATE(3155), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3106), + [sym_float] = ACTIONS(3106), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3106), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1080] = { + [sym__expression] = STATE(3039), + [sym_block] = STATE(3039), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3039), + [sym_atom] = STATE(3039), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3039), + [sym_charlist] = STATE(3039), + [sym_sigil] = STATE(3039), + [sym_unary_operator] = STATE(3039), + [sym_binary_operator] = STATE(3039), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3039), + [sym_list] = STATE(3039), + [sym_tuple] = STATE(3039), + [sym_bitstring] = STATE(3039), + [sym_map] = STATE(3039), + [sym_boolean] = STATE(3039), + [sym_nil] = STATE(3039), + [sym_call] = STATE(3039), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3039), + [sym_anonymous_function] = STATE(3039), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3108), + [sym_float] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3108), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1081] = { + [sym__expression] = STATE(1780), + [sym_block] = STATE(1780), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1780), + [sym_atom] = STATE(1780), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1780), + [sym_charlist] = STATE(1780), + [sym_sigil] = STATE(1780), + [sym_unary_operator] = STATE(1780), + [sym_binary_operator] = STATE(1780), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1780), + [sym_list] = STATE(1780), + [sym_tuple] = STATE(1780), + [sym_bitstring] = STATE(1780), + [sym_map] = STATE(1780), + [sym_boolean] = STATE(1780), + [sym_nil] = STATE(1780), + [sym_call] = STATE(1780), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1780), + [sym_anonymous_function] = STATE(1780), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3110), + [sym_float] = ACTIONS(3110), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3110), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1082] = { + [sym__expression] = STATE(2906), + [sym_block] = STATE(2906), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2906), + [sym_atom] = STATE(2906), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2906), + [sym_charlist] = STATE(2906), + [sym_sigil] = STATE(2906), + [sym_unary_operator] = STATE(2906), + [sym_binary_operator] = STATE(2906), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2906), + [sym_list] = STATE(2906), + [sym_tuple] = STATE(2906), + [sym_bitstring] = STATE(2906), + [sym_map] = STATE(2906), + [sym_boolean] = STATE(2906), + [sym_nil] = STATE(2906), + [sym_call] = STATE(2906), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2906), + [sym_anonymous_function] = STATE(2906), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3112), + [sym_float] = ACTIONS(3112), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3112), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1083] = { + [sym__expression] = STATE(1763), + [sym_block] = STATE(1763), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1763), + [sym_atom] = STATE(1763), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1763), + [sym_charlist] = STATE(1763), + [sym_sigil] = STATE(1763), + [sym_unary_operator] = STATE(1763), + [sym_binary_operator] = STATE(1763), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1763), + [sym_list] = STATE(1763), + [sym_tuple] = STATE(1763), + [sym_bitstring] = STATE(1763), + [sym_map] = STATE(1763), + [sym_boolean] = STATE(1763), + [sym_nil] = STATE(1763), + [sym_call] = STATE(1763), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1763), + [sym_anonymous_function] = STATE(1763), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3114), + [sym_float] = ACTIONS(3114), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3114), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1084] = { + [sym__expression] = STATE(1764), + [sym_block] = STATE(1764), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1764), + [sym_atom] = STATE(1764), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1764), + [sym_charlist] = STATE(1764), + [sym_sigil] = STATE(1764), + [sym_unary_operator] = STATE(1764), + [sym_binary_operator] = STATE(1764), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1764), + [sym_list] = STATE(1764), + [sym_tuple] = STATE(1764), + [sym_bitstring] = STATE(1764), + [sym_map] = STATE(1764), + [sym_boolean] = STATE(1764), + [sym_nil] = STATE(1764), + [sym_call] = STATE(1764), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1764), + [sym_anonymous_function] = STATE(1764), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3116), + [sym_float] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3116), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1085] = { + [sym__expression] = STATE(1767), + [sym_block] = STATE(1767), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1767), + [sym_atom] = STATE(1767), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1767), + [sym_charlist] = STATE(1767), + [sym_sigil] = STATE(1767), + [sym_unary_operator] = STATE(1767), + [sym_binary_operator] = STATE(1767), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1767), + [sym_list] = STATE(1767), + [sym_tuple] = STATE(1767), + [sym_bitstring] = STATE(1767), + [sym_map] = STATE(1767), + [sym_boolean] = STATE(1767), + [sym_nil] = STATE(1767), + [sym_call] = STATE(1767), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1767), + [sym_anonymous_function] = STATE(1767), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3118), + [sym_float] = ACTIONS(3118), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3118), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1086] = { + [sym__expression] = STATE(1768), + [sym_block] = STATE(1768), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1768), + [sym_atom] = STATE(1768), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1768), + [sym_charlist] = STATE(1768), + [sym_sigil] = STATE(1768), + [sym_unary_operator] = STATE(1768), + [sym_binary_operator] = STATE(1768), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1768), + [sym_list] = STATE(1768), + [sym_tuple] = STATE(1768), + [sym_bitstring] = STATE(1768), + [sym_map] = STATE(1768), + [sym_boolean] = STATE(1768), + [sym_nil] = STATE(1768), + [sym_call] = STATE(1768), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1768), + [sym_anonymous_function] = STATE(1768), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3120), + [sym_float] = ACTIONS(3120), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3120), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1087] = { + [sym__expression] = STATE(1771), + [sym_block] = STATE(1771), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1771), + [sym_atom] = STATE(1771), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1771), + [sym_charlist] = STATE(1771), + [sym_sigil] = STATE(1771), + [sym_unary_operator] = STATE(1771), + [sym_binary_operator] = STATE(1771), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1771), + [sym_list] = STATE(1771), + [sym_tuple] = STATE(1771), + [sym_bitstring] = STATE(1771), + [sym_map] = STATE(1771), + [sym_boolean] = STATE(1771), + [sym_nil] = STATE(1771), + [sym_call] = STATE(1771), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1771), + [sym_anonymous_function] = STATE(1771), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3122), + [sym_float] = ACTIONS(3122), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3122), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1088] = { + [sym__expression] = STATE(1773), + [sym_block] = STATE(1773), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1773), + [sym_atom] = STATE(1773), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1773), + [sym_charlist] = STATE(1773), + [sym_sigil] = STATE(1773), + [sym_unary_operator] = STATE(1773), + [sym_binary_operator] = STATE(1773), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1773), + [sym_list] = STATE(1773), + [sym_tuple] = STATE(1773), + [sym_bitstring] = STATE(1773), + [sym_map] = STATE(1773), + [sym_boolean] = STATE(1773), + [sym_nil] = STATE(1773), + [sym_call] = STATE(1773), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1773), + [sym_anonymous_function] = STATE(1773), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3124), + [sym_float] = ACTIONS(3124), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3124), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1089] = { + [sym__expression] = STATE(1783), + [sym_block] = STATE(1783), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1783), + [sym_atom] = STATE(1783), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1783), + [sym_charlist] = STATE(1783), + [sym_sigil] = STATE(1783), + [sym_unary_operator] = STATE(1783), + [sym_binary_operator] = STATE(1783), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1783), + [sym_list] = STATE(1783), + [sym_tuple] = STATE(1783), + [sym_bitstring] = STATE(1783), + [sym_map] = STATE(1783), + [sym_boolean] = STATE(1783), + [sym_nil] = STATE(1783), + [sym_call] = STATE(1783), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1783), + [sym_anonymous_function] = STATE(1783), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3126), + [sym_float] = ACTIONS(3126), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3126), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1090] = { + [sym__expression] = STATE(1785), + [sym_block] = STATE(1785), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1785), + [sym_atom] = STATE(1785), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1785), + [sym_charlist] = STATE(1785), + [sym_sigil] = STATE(1785), + [sym_unary_operator] = STATE(1785), + [sym_binary_operator] = STATE(1785), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1785), + [sym_list] = STATE(1785), + [sym_tuple] = STATE(1785), + [sym_bitstring] = STATE(1785), + [sym_map] = STATE(1785), + [sym_boolean] = STATE(1785), + [sym_nil] = STATE(1785), + [sym_call] = STATE(1785), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1785), + [sym_anonymous_function] = STATE(1785), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3128), + [sym_float] = ACTIONS(3128), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3128), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1091] = { + [sym__expression] = STATE(1791), + [sym_block] = STATE(1791), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1791), + [sym_atom] = STATE(1791), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1791), + [sym_charlist] = STATE(1791), + [sym_sigil] = STATE(1791), + [sym_unary_operator] = STATE(1791), + [sym_binary_operator] = STATE(1791), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1791), + [sym_list] = STATE(1791), + [sym_tuple] = STATE(1791), + [sym_bitstring] = STATE(1791), + [sym_map] = STATE(1791), + [sym_boolean] = STATE(1791), + [sym_nil] = STATE(1791), + [sym_call] = STATE(1791), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1791), + [sym_anonymous_function] = STATE(1791), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3130), + [sym_float] = ACTIONS(3130), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3130), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1092] = { + [sym__expression] = STATE(1707), + [sym_block] = STATE(1707), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1707), + [sym_atom] = STATE(1707), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1707), + [sym_charlist] = STATE(1707), + [sym_sigil] = STATE(1707), + [sym_unary_operator] = STATE(1707), + [sym_binary_operator] = STATE(1707), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1707), + [sym_list] = STATE(1707), + [sym_tuple] = STATE(1707), + [sym_bitstring] = STATE(1707), + [sym_map] = STATE(1707), + [sym_boolean] = STATE(1707), + [sym_nil] = STATE(1707), + [sym_call] = STATE(1707), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1707), + [sym_anonymous_function] = STATE(1707), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2880), + [sym_float] = ACTIONS(2880), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2880), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1093] = { + [sym__expression] = STATE(1798), + [sym_block] = STATE(1798), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1798), + [sym_atom] = STATE(1798), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1798), + [sym_charlist] = STATE(1798), + [sym_sigil] = STATE(1798), + [sym_unary_operator] = STATE(1798), + [sym_binary_operator] = STATE(1798), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1798), + [sym_list] = STATE(1798), + [sym_tuple] = STATE(1798), + [sym_bitstring] = STATE(1798), + [sym_map] = STATE(1798), + [sym_boolean] = STATE(1798), + [sym_nil] = STATE(1798), + [sym_call] = STATE(1798), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1798), + [sym_anonymous_function] = STATE(1798), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3132), + [sym_float] = ACTIONS(3132), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3132), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1094] = { + [sym__expression] = STATE(1815), + [sym_block] = STATE(1815), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1815), + [sym_atom] = STATE(1815), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1815), + [sym_charlist] = STATE(1815), + [sym_sigil] = STATE(1815), + [sym_unary_operator] = STATE(1815), + [sym_binary_operator] = STATE(1815), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1815), + [sym_list] = STATE(1815), + [sym_tuple] = STATE(1815), + [sym_bitstring] = STATE(1815), + [sym_map] = STATE(1815), + [sym_boolean] = STATE(1815), + [sym_nil] = STATE(1815), + [sym_call] = STATE(1815), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1815), + [sym_anonymous_function] = STATE(1815), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3134), + [sym_float] = ACTIONS(3134), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3134), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1095] = { + [sym__expression] = STATE(1816), + [sym_block] = STATE(1816), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1816), + [sym_atom] = STATE(1816), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1816), + [sym_charlist] = STATE(1816), + [sym_sigil] = STATE(1816), + [sym_unary_operator] = STATE(1816), + [sym_binary_operator] = STATE(1816), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1816), + [sym_list] = STATE(1816), + [sym_tuple] = STATE(1816), + [sym_bitstring] = STATE(1816), + [sym_map] = STATE(1816), + [sym_boolean] = STATE(1816), + [sym_nil] = STATE(1816), + [sym_call] = STATE(1816), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1816), + [sym_anonymous_function] = STATE(1816), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3136), + [sym_float] = ACTIONS(3136), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3136), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1096] = { + [sym__expression] = STATE(2905), + [sym_block] = STATE(2905), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2905), + [sym_atom] = STATE(2905), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2905), + [sym_charlist] = STATE(2905), + [sym_sigil] = STATE(2905), + [sym_unary_operator] = STATE(2905), + [sym_binary_operator] = STATE(2905), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2905), + [sym_list] = STATE(2905), + [sym_tuple] = STATE(2905), + [sym_bitstring] = STATE(2905), + [sym_map] = STATE(2905), + [sym_boolean] = STATE(2905), + [sym_nil] = STATE(2905), + [sym_call] = STATE(2905), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2905), + [sym_anonymous_function] = STATE(2905), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3138), + [sym_float] = ACTIONS(3138), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3138), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1097] = { + [sym__expression] = STATE(1820), + [sym_block] = STATE(1820), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1820), + [sym_atom] = STATE(1820), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1820), + [sym_charlist] = STATE(1820), + [sym_sigil] = STATE(1820), + [sym_unary_operator] = STATE(1820), + [sym_binary_operator] = STATE(1820), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1820), + [sym_list] = STATE(1820), + [sym_tuple] = STATE(1820), + [sym_bitstring] = STATE(1820), + [sym_map] = STATE(1820), + [sym_boolean] = STATE(1820), + [sym_nil] = STATE(1820), + [sym_call] = STATE(1820), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1820), + [sym_anonymous_function] = STATE(1820), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3140), + [sym_float] = ACTIONS(3140), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3140), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1098] = { + [sym__expression] = STATE(1821), + [sym_block] = STATE(1821), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1821), + [sym_atom] = STATE(1821), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1821), + [sym_charlist] = STATE(1821), + [sym_sigil] = STATE(1821), + [sym_unary_operator] = STATE(1821), + [sym_binary_operator] = STATE(1821), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1821), + [sym_list] = STATE(1821), + [sym_tuple] = STATE(1821), + [sym_bitstring] = STATE(1821), + [sym_map] = STATE(1821), + [sym_boolean] = STATE(1821), + [sym_nil] = STATE(1821), + [sym_call] = STATE(1821), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1821), + [sym_anonymous_function] = STATE(1821), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3142), + [sym_float] = ACTIONS(3142), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3142), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1099] = { + [sym__expression] = STATE(1719), + [sym_block] = STATE(1719), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1719), + [sym_atom] = STATE(1719), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1719), + [sym_charlist] = STATE(1719), + [sym_sigil] = STATE(1719), + [sym_unary_operator] = STATE(1719), + [sym_binary_operator] = STATE(1719), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1719), + [sym_list] = STATE(1719), + [sym_tuple] = STATE(1719), + [sym_bitstring] = STATE(1719), + [sym_map] = STATE(1719), + [sym_boolean] = STATE(1719), + [sym_nil] = STATE(1719), + [sym_call] = STATE(1719), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1719), + [sym_anonymous_function] = STATE(1719), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2704), + [sym_float] = ACTIONS(2704), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2704), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1100] = { + [sym__expression] = STATE(1663), + [sym_block] = STATE(1663), + [sym__identifier] = STATE(109), + [sym_identifier] = STATE(109), + [sym_special_identifier] = STATE(109), + [sym_alias] = STATE(1663), + [sym_atom] = STATE(1663), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1663), + [sym_charlist] = STATE(1663), + [sym_sigil] = STATE(1663), + [sym_unary_operator] = STATE(1663), + [sym_binary_operator] = STATE(1663), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1663), + [sym_list] = STATE(1663), + [sym_tuple] = STATE(1663), + [sym_bitstring] = STATE(1663), + [sym_map] = STATE(1663), + [sym_boolean] = STATE(1663), + [sym_nil] = STATE(1663), + [sym_call] = STATE(1663), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(120), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1663), + [sym_anonymous_function] = STATE(1663), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(1906), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2662), + [sym_float] = ACTIONS(2662), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1916), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_CARET] = ACTIONS(1918), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1918), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_not] = ACTIONS(1918), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2662), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(757), + [sym__not_in] = ACTIONS(61), + }, + [1101] = { + [sym__expression] = STATE(2904), + [sym_block] = STATE(2904), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2904), + [sym_atom] = STATE(2904), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2904), + [sym_charlist] = STATE(2904), + [sym_sigil] = STATE(2904), + [sym_unary_operator] = STATE(2904), + [sym_binary_operator] = STATE(2904), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2904), + [sym_list] = STATE(2904), + [sym_tuple] = STATE(2904), + [sym_bitstring] = STATE(2904), + [sym_map] = STATE(2904), + [sym_boolean] = STATE(2904), + [sym_nil] = STATE(2904), + [sym_call] = STATE(2904), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2904), + [sym_anonymous_function] = STATE(2904), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3144), + [sym_float] = ACTIONS(3144), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3144), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1102] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2150), + [sym_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2150), + [sym_charlist] = STATE(2150), + [sym_sigil] = STATE(2150), + [sym_unary_operator] = STATE(2150), + [sym_binary_operator] = STATE(2150), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2150), + [sym_list] = STATE(2150), + [sym_tuple] = STATE(2150), + [sym_bitstring] = STATE(2150), + [sym_map] = STATE(2150), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2344), + [sym_float] = ACTIONS(2344), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2344), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [1103] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym__identifier] = STATE(135), + [sym_identifier] = STATE(135), + [sym_special_identifier] = STATE(135), + [sym_alias] = STATE(2151), + [sym_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(2164), + [sym__quoted_i_single] = STATE(2163), + [sym__quoted_i_heredoc_single] = STATE(2163), + [sym__quoted_i_heredoc_double] = STATE(2164), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(5374), + [sym_dot] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_on_call] = STATE(2162), + [sym__local_call_with_arguments] = STATE(2162), + [sym__parenthesised_local_call_with_arguments] = STATE(1863), + [sym__local_call_without_arguments] = STATE(2162), + [sym__remote_call] = STATE(2162), + [sym__parenthesised_remote_call] = STATE(1863), + [sym__remote_dot] = STATE(143), + [sym__anonymous_call] = STATE(1863), + [sym__anonymous_dot] = STATE(5266), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(385), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(1942), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [sym_integer] = ACTIONS(2346), + [sym_float] = ACTIONS(2346), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1952), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_CARET] = ACTIONS(1954), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(413), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_LBRACK] = ACTIONS(419), + [anon_sym_TILDE] = ACTIONS(421), + [anon_sym_not] = ACTIONS(1954), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_nil] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(433), + [sym_char] = ACTIONS(2346), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(439), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(933), + [sym__not_in] = ACTIONS(61), + }, + [1104] = { + [sym__expression] = STATE(3908), + [sym_block] = STATE(3908), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3908), + [sym_atom] = STATE(3908), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3908), + [sym_charlist] = STATE(3908), + [sym_sigil] = STATE(3908), + [sym_unary_operator] = STATE(3908), + [sym_binary_operator] = STATE(3908), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3908), + [sym_list] = STATE(3908), + [sym_tuple] = STATE(3908), + [sym_bitstring] = STATE(3908), + [sym_map] = STATE(3908), + [sym_boolean] = STATE(3908), + [sym_nil] = STATE(3908), + [sym_call] = STATE(3908), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3908), + [sym_anonymous_function] = STATE(3908), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3146), + [sym_float] = ACTIONS(3146), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3146), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1105] = { + [sym__expression] = STATE(2471), + [sym_block] = STATE(2471), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2471), + [sym_atom] = STATE(2471), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2471), + [sym_charlist] = STATE(2471), + [sym_sigil] = STATE(2471), + [sym_unary_operator] = STATE(2471), + [sym_binary_operator] = STATE(2471), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2471), + [sym_list] = STATE(2471), + [sym_tuple] = STATE(2471), + [sym_bitstring] = STATE(2471), + [sym_map] = STATE(2471), + [sym_boolean] = STATE(2471), + [sym_nil] = STATE(2471), + [sym_call] = STATE(2471), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2471), + [sym_anonymous_function] = STATE(2471), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3148), + [sym_float] = ACTIONS(3148), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3148), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1106] = { + [sym__expression] = STATE(3938), + [sym_block] = STATE(3938), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3938), + [sym_atom] = STATE(3938), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3938), + [sym_charlist] = STATE(3938), + [sym_sigil] = STATE(3938), + [sym_unary_operator] = STATE(3938), + [sym_binary_operator] = STATE(3938), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3938), + [sym_list] = STATE(3938), + [sym_tuple] = STATE(3938), + [sym_bitstring] = STATE(3938), + [sym_map] = STATE(3938), + [sym_boolean] = STATE(3938), + [sym_nil] = STATE(3938), + [sym_call] = STATE(3938), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3938), + [sym_anonymous_function] = STATE(3938), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3150), + [sym_float] = ACTIONS(3150), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3150), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1107] = { + [sym__expression] = STATE(2463), + [sym_block] = STATE(2463), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2463), + [sym_atom] = STATE(2463), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2463), + [sym_charlist] = STATE(2463), + [sym_sigil] = STATE(2463), + [sym_unary_operator] = STATE(2463), + [sym_binary_operator] = STATE(2463), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2463), + [sym_list] = STATE(2463), + [sym_tuple] = STATE(2463), + [sym_bitstring] = STATE(2463), + [sym_map] = STATE(2463), + [sym_boolean] = STATE(2463), + [sym_nil] = STATE(2463), + [sym_call] = STATE(2463), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2463), + [sym_anonymous_function] = STATE(2463), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3152), + [sym_float] = ACTIONS(3152), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3152), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1108] = { + [sym__expression] = STATE(2462), + [sym_block] = STATE(2462), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2462), + [sym_atom] = STATE(2462), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2462), + [sym_charlist] = STATE(2462), + [sym_sigil] = STATE(2462), + [sym_unary_operator] = STATE(2462), + [sym_binary_operator] = STATE(2462), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2462), + [sym_list] = STATE(2462), + [sym_tuple] = STATE(2462), + [sym_bitstring] = STATE(2462), + [sym_map] = STATE(2462), + [sym_boolean] = STATE(2462), + [sym_nil] = STATE(2462), + [sym_call] = STATE(2462), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2462), + [sym_anonymous_function] = STATE(2462), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3154), + [sym_float] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3154), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1109] = { + [sym__expression] = STATE(2461), + [sym_block] = STATE(2461), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2461), + [sym_atom] = STATE(2461), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2461), + [sym_charlist] = STATE(2461), + [sym_sigil] = STATE(2461), + [sym_unary_operator] = STATE(2461), + [sym_binary_operator] = STATE(2461), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2461), + [sym_list] = STATE(2461), + [sym_tuple] = STATE(2461), + [sym_bitstring] = STATE(2461), + [sym_map] = STATE(2461), + [sym_boolean] = STATE(2461), + [sym_nil] = STATE(2461), + [sym_call] = STATE(2461), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2461), + [sym_anonymous_function] = STATE(2461), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3156), + [sym_float] = ACTIONS(3156), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3156), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1110] = { + [sym__expression] = STATE(2459), + [sym_block] = STATE(2459), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2459), + [sym_atom] = STATE(2459), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2459), + [sym_charlist] = STATE(2459), + [sym_sigil] = STATE(2459), + [sym_unary_operator] = STATE(2459), + [sym_binary_operator] = STATE(2459), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2459), + [sym_list] = STATE(2459), + [sym_tuple] = STATE(2459), + [sym_bitstring] = STATE(2459), + [sym_map] = STATE(2459), + [sym_boolean] = STATE(2459), + [sym_nil] = STATE(2459), + [sym_call] = STATE(2459), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2459), + [sym_anonymous_function] = STATE(2459), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3158), + [sym_float] = ACTIONS(3158), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3158), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1111] = { + [sym__expression] = STATE(2903), + [sym_block] = STATE(2903), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2903), + [sym_atom] = STATE(2903), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2903), + [sym_charlist] = STATE(2903), + [sym_sigil] = STATE(2903), + [sym_unary_operator] = STATE(2903), + [sym_binary_operator] = STATE(2903), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2903), + [sym_list] = STATE(2903), + [sym_tuple] = STATE(2903), + [sym_bitstring] = STATE(2903), + [sym_map] = STATE(2903), + [sym_boolean] = STATE(2903), + [sym_nil] = STATE(2903), + [sym_call] = STATE(2903), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2903), + [sym_anonymous_function] = STATE(2903), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3160), + [sym_float] = ACTIONS(3160), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3160), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1112] = { + [sym__expression] = STATE(2902), + [sym_block] = STATE(2902), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2902), + [sym_atom] = STATE(2902), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2902), + [sym_charlist] = STATE(2902), + [sym_sigil] = STATE(2902), + [sym_unary_operator] = STATE(2902), + [sym_binary_operator] = STATE(2902), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2902), + [sym_list] = STATE(2902), + [sym_tuple] = STATE(2902), + [sym_bitstring] = STATE(2902), + [sym_map] = STATE(2902), + [sym_boolean] = STATE(2902), + [sym_nil] = STATE(2902), + [sym_call] = STATE(2902), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2902), + [sym_anonymous_function] = STATE(2902), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3162), + [sym_float] = ACTIONS(3162), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3162), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1113] = { + [sym__expression] = STATE(2900), + [sym_block] = STATE(2900), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2900), + [sym_atom] = STATE(2900), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2900), + [sym_charlist] = STATE(2900), + [sym_sigil] = STATE(2900), + [sym_unary_operator] = STATE(2900), + [sym_binary_operator] = STATE(2900), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2900), + [sym_list] = STATE(2900), + [sym_tuple] = STATE(2900), + [sym_bitstring] = STATE(2900), + [sym_map] = STATE(2900), + [sym_boolean] = STATE(2900), + [sym_nil] = STATE(2900), + [sym_call] = STATE(2900), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2900), + [sym_anonymous_function] = STATE(2900), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3164), + [sym_float] = ACTIONS(3164), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3164), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1114] = { + [sym__expression] = STATE(2457), + [sym_block] = STATE(2457), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2457), + [sym_atom] = STATE(2457), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2457), + [sym_charlist] = STATE(2457), + [sym_sigil] = STATE(2457), + [sym_unary_operator] = STATE(2457), + [sym_binary_operator] = STATE(2457), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2457), + [sym_list] = STATE(2457), + [sym_tuple] = STATE(2457), + [sym_bitstring] = STATE(2457), + [sym_map] = STATE(2457), + [sym_boolean] = STATE(2457), + [sym_nil] = STATE(2457), + [sym_call] = STATE(2457), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2457), + [sym_anonymous_function] = STATE(2457), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3166), + [sym_float] = ACTIONS(3166), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3166), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1115] = { + [sym__expression] = STATE(3686), + [sym_block] = STATE(3686), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3686), + [sym_atom] = STATE(3686), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3686), + [sym_charlist] = STATE(3686), + [sym_sigil] = STATE(3686), + [sym_unary_operator] = STATE(3686), + [sym_binary_operator] = STATE(3686), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3686), + [sym_list] = STATE(3686), + [sym_tuple] = STATE(3686), + [sym_bitstring] = STATE(3686), + [sym_map] = STATE(3686), + [sym_boolean] = STATE(3686), + [sym_nil] = STATE(3686), + [sym_call] = STATE(3686), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3686), + [sym_anonymous_function] = STATE(3686), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(2918), + [sym_float] = ACTIONS(2918), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(2918), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1116] = { + [sym__expression] = STATE(3808), + [sym_block] = STATE(3808), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3808), + [sym_atom] = STATE(3808), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3808), + [sym_charlist] = STATE(3808), + [sym_sigil] = STATE(3808), + [sym_unary_operator] = STATE(3808), + [sym_binary_operator] = STATE(3808), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3808), + [sym_list] = STATE(3808), + [sym_tuple] = STATE(3808), + [sym_bitstring] = STATE(3808), + [sym_map] = STATE(3808), + [sym_boolean] = STATE(3808), + [sym_nil] = STATE(3808), + [sym_call] = STATE(3808), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3808), + [sym_anonymous_function] = STATE(3808), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(2338), + [sym_float] = ACTIONS(2338), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(2338), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1117] = { + [sym__expression] = STATE(3809), + [sym_block] = STATE(3809), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3809), + [sym_atom] = STATE(3809), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3809), + [sym_charlist] = STATE(3809), + [sym_sigil] = STATE(3809), + [sym_unary_operator] = STATE(3809), + [sym_binary_operator] = STATE(3809), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3809), + [sym_list] = STATE(3809), + [sym_tuple] = STATE(3809), + [sym_bitstring] = STATE(3809), + [sym_map] = STATE(3809), + [sym_boolean] = STATE(3809), + [sym_nil] = STATE(3809), + [sym_call] = STATE(3809), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3809), + [sym_anonymous_function] = STATE(3809), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(2336), + [sym_float] = ACTIONS(2336), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(2336), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1118] = { + [sym__expression] = STATE(2453), + [sym_block] = STATE(2453), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2453), + [sym_atom] = STATE(2453), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2453), + [sym_charlist] = STATE(2453), + [sym_sigil] = STATE(2453), + [sym_unary_operator] = STATE(2453), + [sym_binary_operator] = STATE(2453), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2453), + [sym_list] = STATE(2453), + [sym_tuple] = STATE(2453), + [sym_bitstring] = STATE(2453), + [sym_map] = STATE(2453), + [sym_boolean] = STATE(2453), + [sym_nil] = STATE(2453), + [sym_call] = STATE(2453), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2453), + [sym_anonymous_function] = STATE(2453), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3168), + [sym_float] = ACTIONS(3168), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3168), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1119] = { + [sym__expression] = STATE(2452), + [sym_block] = STATE(2452), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2452), + [sym_atom] = STATE(2452), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2452), + [sym_charlist] = STATE(2452), + [sym_sigil] = STATE(2452), + [sym_unary_operator] = STATE(2452), + [sym_binary_operator] = STATE(2452), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2452), + [sym_list] = STATE(2452), + [sym_tuple] = STATE(2452), + [sym_bitstring] = STATE(2452), + [sym_map] = STATE(2452), + [sym_boolean] = STATE(2452), + [sym_nil] = STATE(2452), + [sym_call] = STATE(2452), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2452), + [sym_anonymous_function] = STATE(2452), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3170), + [sym_float] = ACTIONS(3170), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3170), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1120] = { + [sym__expression] = STATE(3939), + [sym_block] = STATE(3939), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3939), + [sym_atom] = STATE(3939), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3939), + [sym_charlist] = STATE(3939), + [sym_sigil] = STATE(3939), + [sym_unary_operator] = STATE(3939), + [sym_binary_operator] = STATE(3939), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3939), + [sym_list] = STATE(3939), + [sym_tuple] = STATE(3939), + [sym_bitstring] = STATE(3939), + [sym_map] = STATE(3939), + [sym_boolean] = STATE(3939), + [sym_nil] = STATE(3939), + [sym_call] = STATE(3939), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3939), + [sym_anonymous_function] = STATE(3939), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3172), + [sym_float] = ACTIONS(3172), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3172), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1121] = { + [sym__expression] = STATE(2449), + [sym_block] = STATE(2449), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2449), + [sym_atom] = STATE(2449), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2449), + [sym_charlist] = STATE(2449), + [sym_sigil] = STATE(2449), + [sym_unary_operator] = STATE(2449), + [sym_binary_operator] = STATE(2449), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2449), + [sym_list] = STATE(2449), + [sym_tuple] = STATE(2449), + [sym_bitstring] = STATE(2449), + [sym_map] = STATE(2449), + [sym_boolean] = STATE(2449), + [sym_nil] = STATE(2449), + [sym_call] = STATE(2449), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2449), + [sym_anonymous_function] = STATE(2449), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3174), + [sym_float] = ACTIONS(3174), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3174), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1122] = { + [sym__expression] = STATE(2448), + [sym_block] = STATE(2448), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2448), + [sym_atom] = STATE(2448), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2448), + [sym_charlist] = STATE(2448), + [sym_sigil] = STATE(2448), + [sym_unary_operator] = STATE(2448), + [sym_binary_operator] = STATE(2448), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2448), + [sym_list] = STATE(2448), + [sym_tuple] = STATE(2448), + [sym_bitstring] = STATE(2448), + [sym_map] = STATE(2448), + [sym_boolean] = STATE(2448), + [sym_nil] = STATE(2448), + [sym_call] = STATE(2448), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2448), + [sym_anonymous_function] = STATE(2448), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3176), + [sym_float] = ACTIONS(3176), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3176), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1123] = { + [sym__expression] = STATE(1923), + [sym_block] = STATE(1923), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(1923), + [sym_atom] = STATE(1923), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1923), + [sym_charlist] = STATE(1923), + [sym_sigil] = STATE(1923), + [sym_unary_operator] = STATE(1923), + [sym_binary_operator] = STATE(1923), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1923), + [sym_list] = STATE(1923), + [sym_tuple] = STATE(1923), + [sym_bitstring] = STATE(1923), + [sym_map] = STATE(1923), + [sym_boolean] = STATE(1923), + [sym_nil] = STATE(1923), + [sym_call] = STATE(1923), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1923), + [sym_anonymous_function] = STATE(1923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2358), + [sym_float] = ACTIONS(2358), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2358), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1124] = { + [sym__expression] = STATE(2447), + [sym_block] = STATE(2447), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2447), + [sym_atom] = STATE(2447), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2447), + [sym_charlist] = STATE(2447), + [sym_sigil] = STATE(2447), + [sym_unary_operator] = STATE(2447), + [sym_binary_operator] = STATE(2447), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2447), + [sym_list] = STATE(2447), + [sym_tuple] = STATE(2447), + [sym_bitstring] = STATE(2447), + [sym_map] = STATE(2447), + [sym_boolean] = STATE(2447), + [sym_nil] = STATE(2447), + [sym_call] = STATE(2447), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2447), + [sym_anonymous_function] = STATE(2447), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3178), + [sym_float] = ACTIONS(3178), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3178), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1125] = { + [sym__expression] = STATE(3907), + [sym_block] = STATE(3907), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3907), + [sym_atom] = STATE(3907), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3907), + [sym_charlist] = STATE(3907), + [sym_sigil] = STATE(3907), + [sym_unary_operator] = STATE(3907), + [sym_binary_operator] = STATE(3907), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3907), + [sym_list] = STATE(3907), + [sym_tuple] = STATE(3907), + [sym_bitstring] = STATE(3907), + [sym_map] = STATE(3907), + [sym_boolean] = STATE(3907), + [sym_nil] = STATE(3907), + [sym_call] = STATE(3907), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3907), + [sym_anonymous_function] = STATE(3907), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3180), + [sym_float] = ACTIONS(3180), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3180), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1126] = { + [sym__expression] = STATE(2446), + [sym_block] = STATE(2446), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2446), + [sym_atom] = STATE(2446), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2446), + [sym_charlist] = STATE(2446), + [sym_sigil] = STATE(2446), + [sym_unary_operator] = STATE(2446), + [sym_binary_operator] = STATE(2446), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2446), + [sym_list] = STATE(2446), + [sym_tuple] = STATE(2446), + [sym_bitstring] = STATE(2446), + [sym_map] = STATE(2446), + [sym_boolean] = STATE(2446), + [sym_nil] = STATE(2446), + [sym_call] = STATE(2446), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2446), + [sym_anonymous_function] = STATE(2446), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3182), + [sym_float] = ACTIONS(3182), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3182), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1127] = { + [sym__expression] = STATE(2442), + [sym_block] = STATE(2442), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2442), + [sym_atom] = STATE(2442), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2442), + [sym_charlist] = STATE(2442), + [sym_sigil] = STATE(2442), + [sym_unary_operator] = STATE(2442), + [sym_binary_operator] = STATE(2442), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2442), + [sym_list] = STATE(2442), + [sym_tuple] = STATE(2442), + [sym_bitstring] = STATE(2442), + [sym_map] = STATE(2442), + [sym_boolean] = STATE(2442), + [sym_nil] = STATE(2442), + [sym_call] = STATE(2442), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2442), + [sym_anonymous_function] = STATE(2442), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3184), + [sym_float] = ACTIONS(3184), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3184), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1128] = { + [sym__expression] = STATE(3910), + [sym_block] = STATE(3910), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3910), + [sym_atom] = STATE(3910), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3910), + [sym_charlist] = STATE(3910), + [sym_sigil] = STATE(3910), + [sym_unary_operator] = STATE(3910), + [sym_binary_operator] = STATE(3910), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3910), + [sym_list] = STATE(3910), + [sym_tuple] = STATE(3910), + [sym_bitstring] = STATE(3910), + [sym_map] = STATE(3910), + [sym_boolean] = STATE(3910), + [sym_nil] = STATE(3910), + [sym_call] = STATE(3910), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3910), + [sym_anonymous_function] = STATE(3910), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3186), + [sym_float] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3186), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1129] = { + [sym__expression] = STATE(2438), + [sym_block] = STATE(2438), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2438), + [sym_atom] = STATE(2438), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2438), + [sym_charlist] = STATE(2438), + [sym_sigil] = STATE(2438), + [sym_unary_operator] = STATE(2438), + [sym_binary_operator] = STATE(2438), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2438), + [sym_list] = STATE(2438), + [sym_tuple] = STATE(2438), + [sym_bitstring] = STATE(2438), + [sym_map] = STATE(2438), + [sym_boolean] = STATE(2438), + [sym_nil] = STATE(2438), + [sym_call] = STATE(2438), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2438), + [sym_anonymous_function] = STATE(2438), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3188), + [sym_float] = ACTIONS(3188), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3188), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1130] = { + [sym__expression] = STATE(3911), + [sym_block] = STATE(3911), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3911), + [sym_atom] = STATE(3911), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3911), + [sym_charlist] = STATE(3911), + [sym_sigil] = STATE(3911), + [sym_unary_operator] = STATE(3911), + [sym_binary_operator] = STATE(3911), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3911), + [sym_list] = STATE(3911), + [sym_tuple] = STATE(3911), + [sym_bitstring] = STATE(3911), + [sym_map] = STATE(3911), + [sym_boolean] = STATE(3911), + [sym_nil] = STATE(3911), + [sym_call] = STATE(3911), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3911), + [sym_anonymous_function] = STATE(3911), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3190), + [sym_float] = ACTIONS(3190), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3190), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1131] = { + [sym__expression] = STATE(3885), + [sym_block] = STATE(3885), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3885), + [sym_atom] = STATE(3885), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3885), + [sym_charlist] = STATE(3885), + [sym_sigil] = STATE(3885), + [sym_unary_operator] = STATE(3885), + [sym_binary_operator] = STATE(3885), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3885), + [sym_list] = STATE(3885), + [sym_tuple] = STATE(3885), + [sym_bitstring] = STATE(3885), + [sym_map] = STATE(3885), + [sym_boolean] = STATE(3885), + [sym_nil] = STATE(3885), + [sym_call] = STATE(3885), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3885), + [sym_anonymous_function] = STATE(3885), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3192), + [sym_float] = ACTIONS(3192), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3192), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1132] = { + [sym__expression] = STATE(3884), + [sym_block] = STATE(3884), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3884), + [sym_atom] = STATE(3884), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3884), + [sym_charlist] = STATE(3884), + [sym_sigil] = STATE(3884), + [sym_unary_operator] = STATE(3884), + [sym_binary_operator] = STATE(3884), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3884), + [sym_list] = STATE(3884), + [sym_tuple] = STATE(3884), + [sym_bitstring] = STATE(3884), + [sym_map] = STATE(3884), + [sym_boolean] = STATE(3884), + [sym_nil] = STATE(3884), + [sym_call] = STATE(3884), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3884), + [sym_anonymous_function] = STATE(3884), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3194), + [sym_float] = ACTIONS(3194), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3194), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1133] = { + [sym__expression] = STATE(3036), + [sym_block] = STATE(3036), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3036), + [sym_atom] = STATE(3036), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3036), + [sym_charlist] = STATE(3036), + [sym_sigil] = STATE(3036), + [sym_unary_operator] = STATE(3036), + [sym_binary_operator] = STATE(3036), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3036), + [sym_list] = STATE(3036), + [sym_tuple] = STATE(3036), + [sym_bitstring] = STATE(3036), + [sym_map] = STATE(3036), + [sym_boolean] = STATE(3036), + [sym_nil] = STATE(3036), + [sym_call] = STATE(3036), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3036), + [sym_anonymous_function] = STATE(3036), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3196), + [sym_float] = ACTIONS(3196), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3196), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1134] = { + [sym__expression] = STATE(2899), + [sym_block] = STATE(2899), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2899), + [sym_atom] = STATE(2899), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2899), + [sym_charlist] = STATE(2899), + [sym_sigil] = STATE(2899), + [sym_unary_operator] = STATE(2899), + [sym_binary_operator] = STATE(2899), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2899), + [sym_list] = STATE(2899), + [sym_tuple] = STATE(2899), + [sym_bitstring] = STATE(2899), + [sym_map] = STATE(2899), + [sym_boolean] = STATE(2899), + [sym_nil] = STATE(2899), + [sym_call] = STATE(2899), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2899), + [sym_anonymous_function] = STATE(2899), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3198), + [sym_float] = ACTIONS(3198), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3198), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1135] = { + [sym__expression] = STATE(2437), + [sym_block] = STATE(2437), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2437), + [sym_atom] = STATE(2437), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2437), + [sym_charlist] = STATE(2437), + [sym_sigil] = STATE(2437), + [sym_unary_operator] = STATE(2437), + [sym_binary_operator] = STATE(2437), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2437), + [sym_list] = STATE(2437), + [sym_tuple] = STATE(2437), + [sym_bitstring] = STATE(2437), + [sym_map] = STATE(2437), + [sym_boolean] = STATE(2437), + [sym_nil] = STATE(2437), + [sym_call] = STATE(2437), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2437), + [sym_anonymous_function] = STATE(2437), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3200), + [sym_float] = ACTIONS(3200), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3200), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1136] = { + [sym__expression] = STATE(2028), + [sym_block] = STATE(2028), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2028), + [sym_atom] = STATE(2028), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2028), + [sym_charlist] = STATE(2028), + [sym_sigil] = STATE(2028), + [sym_unary_operator] = STATE(2028), + [sym_binary_operator] = STATE(2028), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2028), + [sym_list] = STATE(2028), + [sym_tuple] = STATE(2028), + [sym_bitstring] = STATE(2028), + [sym_map] = STATE(2028), + [sym_boolean] = STATE(2028), + [sym_nil] = STATE(2028), + [sym_call] = STATE(2028), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2028), + [sym_anonymous_function] = STATE(2028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2436), + [sym_float] = ACTIONS(2436), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2436), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1137] = { + [sym__expression] = STATE(2029), + [sym_block] = STATE(2029), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2029), + [sym_atom] = STATE(2029), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2029), + [sym_charlist] = STATE(2029), + [sym_sigil] = STATE(2029), + [sym_unary_operator] = STATE(2029), + [sym_binary_operator] = STATE(2029), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2029), + [sym_list] = STATE(2029), + [sym_tuple] = STATE(2029), + [sym_bitstring] = STATE(2029), + [sym_map] = STATE(2029), + [sym_boolean] = STATE(2029), + [sym_nil] = STATE(2029), + [sym_call] = STATE(2029), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2029), + [sym_anonymous_function] = STATE(2029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2440), + [sym_float] = ACTIONS(2440), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1138] = { + [sym__expression] = STATE(3953), + [sym_block] = STATE(3953), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3953), + [sym_atom] = STATE(3953), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3953), + [sym_charlist] = STATE(3953), + [sym_sigil] = STATE(3953), + [sym_unary_operator] = STATE(3953), + [sym_binary_operator] = STATE(3953), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3953), + [sym_list] = STATE(3953), + [sym_tuple] = STATE(3953), + [sym_bitstring] = STATE(3953), + [sym_map] = STATE(3953), + [sym_boolean] = STATE(3953), + [sym_nil] = STATE(3953), + [sym_call] = STATE(3953), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3953), + [sym_anonymous_function] = STATE(3953), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3202), + [sym_float] = ACTIONS(3202), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3202), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1139] = { + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1724), + [sym_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1724), + [sym_list] = STATE(1724), + [sym_tuple] = STATE(1724), + [sym_bitstring] = STATE(1724), + [sym_map] = STATE(1724), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1724), + [sym_anonymous_function] = STATE(1724), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2284), + [sym_float] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1140] = { + [sym__expression] = STATE(3158), + [sym_block] = STATE(3158), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3158), + [sym_atom] = STATE(3158), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3158), + [sym_charlist] = STATE(3158), + [sym_sigil] = STATE(3158), + [sym_unary_operator] = STATE(3158), + [sym_binary_operator] = STATE(3158), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3158), + [sym_list] = STATE(3158), + [sym_tuple] = STATE(3158), + [sym_bitstring] = STATE(3158), + [sym_map] = STATE(3158), + [sym_boolean] = STATE(3158), + [sym_nil] = STATE(3158), + [sym_call] = STATE(3158), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3158), + [sym_anonymous_function] = STATE(3158), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3204), + [sym_float] = ACTIONS(3204), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3204), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1141] = { + [sym__expression] = STATE(1624), + [sym_block] = STATE(1624), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(1624), + [sym_atom] = STATE(1624), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(1624), + [sym_charlist] = STATE(1624), + [sym_sigil] = STATE(1624), + [sym_unary_operator] = STATE(1624), + [sym_binary_operator] = STATE(1624), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(1624), + [sym_list] = STATE(1624), + [sym_tuple] = STATE(1624), + [sym_bitstring] = STATE(1624), + [sym_map] = STATE(1624), + [sym_boolean] = STATE(1624), + [sym_nil] = STATE(1624), + [sym_call] = STATE(1624), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(1624), + [sym_anonymous_function] = STATE(1624), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(2288), + [sym_float] = ACTIONS(2288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(2288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1142] = { + [sym__expression] = STATE(3733), + [sym_block] = STATE(3733), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3733), + [sym_atom] = STATE(3733), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3733), + [sym_charlist] = STATE(3733), + [sym_sigil] = STATE(3733), + [sym_unary_operator] = STATE(3733), + [sym_binary_operator] = STATE(3733), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3733), + [sym_list] = STATE(3733), + [sym_tuple] = STATE(3733), + [sym_bitstring] = STATE(3733), + [sym_map] = STATE(3733), + [sym_boolean] = STATE(3733), + [sym_nil] = STATE(3733), + [sym_call] = STATE(3733), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3733), + [sym_anonymous_function] = STATE(3733), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3206), + [sym_float] = ACTIONS(3206), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3206), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1143] = { + [sym__expression] = STATE(3914), + [sym_block] = STATE(3914), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3914), + [sym_atom] = STATE(3914), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3914), + [sym_charlist] = STATE(3914), + [sym_sigil] = STATE(3914), + [sym_unary_operator] = STATE(3914), + [sym_binary_operator] = STATE(3914), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3914), + [sym_list] = STATE(3914), + [sym_tuple] = STATE(3914), + [sym_bitstring] = STATE(3914), + [sym_map] = STATE(3914), + [sym_boolean] = STATE(3914), + [sym_nil] = STATE(3914), + [sym_call] = STATE(3914), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3914), + [sym_anonymous_function] = STATE(3914), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3208), + [sym_float] = ACTIONS(3208), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3208), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1144] = { + [sym__expression] = STATE(3916), + [sym_block] = STATE(3916), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3916), + [sym_atom] = STATE(3916), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3916), + [sym_charlist] = STATE(3916), + [sym_sigil] = STATE(3916), + [sym_unary_operator] = STATE(3916), + [sym_binary_operator] = STATE(3916), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3916), + [sym_list] = STATE(3916), + [sym_tuple] = STATE(3916), + [sym_bitstring] = STATE(3916), + [sym_map] = STATE(3916), + [sym_boolean] = STATE(3916), + [sym_nil] = STATE(3916), + [sym_call] = STATE(3916), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3916), + [sym_anonymous_function] = STATE(3916), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3210), + [sym_float] = ACTIONS(3210), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3210), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1145] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1146] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1147] = { + [sym__expression] = STATE(3921), + [sym_block] = STATE(3921), + [sym__identifier] = STATE(153), + [sym_identifier] = STATE(153), + [sym_special_identifier] = STATE(153), + [sym_alias] = STATE(3921), + [sym_atom] = STATE(3921), + [sym__quoted_i_double] = STATE(3482), + [sym__quoted_i_single] = STATE(3478), + [sym__quoted_i_heredoc_single] = STATE(3478), + [sym__quoted_i_heredoc_double] = STATE(3482), + [sym_string] = STATE(3921), + [sym_charlist] = STATE(3921), + [sym_sigil] = STATE(3921), + [sym_unary_operator] = STATE(3921), + [sym_binary_operator] = STATE(3921), + [sym_operator_identifier] = STATE(5391), + [sym_dot] = STATE(3921), + [sym_list] = STATE(3921), + [sym_tuple] = STATE(3921), + [sym_bitstring] = STATE(3921), + [sym_map] = STATE(3921), + [sym_boolean] = STATE(3921), + [sym_nil] = STATE(3921), + [sym_call] = STATE(3921), + [sym__call_on_call] = STATE(3475), + [sym__local_call_with_arguments] = STATE(3475), + [sym__parenthesised_local_call_with_arguments] = STATE(2705), + [sym__local_call_without_arguments] = STATE(3475), + [sym__remote_call] = STATE(3475), + [sym__parenthesised_remote_call] = STATE(2705), + [sym__remote_dot] = STATE(121), + [sym__anonymous_call] = STATE(2705), + [sym__anonymous_dot] = STATE(5252), + [sym_access_call] = STATE(3921), + [sym_anonymous_function] = STATE(3921), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2040), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [sym_integer] = ACTIONS(3212), + [sym_float] = ACTIONS(3212), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2198), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2200), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_CARET] = ACTIONS(2202), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2202), + [anon_sym_PERCENT] = ACTIONS(355), + [anon_sym_DQUOTE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(361), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(367), + [anon_sym_TILDE] = ACTIONS(369), + [anon_sym_not] = ACTIONS(2202), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_nil] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_LT_LT] = ACTIONS(379), + [sym_char] = ACTIONS(3212), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(381), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1503), + [sym__not_in] = ACTIONS(61), + }, + [1148] = { + [sym__expression] = STATE(2482), + [sym_block] = STATE(2482), + [sym__identifier] = STATE(141), + [sym_identifier] = STATE(141), + [sym_special_identifier] = STATE(141), + [sym_alias] = STATE(2482), + [sym_atom] = STATE(2482), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2482), + [sym_charlist] = STATE(2482), + [sym_sigil] = STATE(2482), + [sym_unary_operator] = STATE(2482), + [sym_binary_operator] = STATE(2482), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2482), + [sym_list] = STATE(2482), + [sym_tuple] = STATE(2482), + [sym_bitstring] = STATE(2482), + [sym_map] = STATE(2482), + [sym_boolean] = STATE(2482), + [sym_nil] = STATE(2482), + [sym_call] = STATE(2482), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(115), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2482), + [sym_anonymous_function] = STATE(2482), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1639), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(1770), + [sym_float] = ACTIONS(1770), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1647), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1649), + [anon_sym_DASH] = ACTIONS(1649), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1649), + [anon_sym_CARET] = ACTIONS(1649), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1649), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_not] = ACTIONS(1649), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(1770), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1615), + [sym__not_in] = ACTIONS(61), + }, + [1149] = { + [sym__expression] = STATE(2029), + [sym_block] = STATE(2029), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2029), + [sym_atom] = STATE(2029), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2029), + [sym_charlist] = STATE(2029), + [sym_sigil] = STATE(2029), + [sym_unary_operator] = STATE(2029), + [sym_binary_operator] = STATE(2029), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2029), + [sym_list] = STATE(2029), + [sym_tuple] = STATE(2029), + [sym_bitstring] = STATE(2029), + [sym_map] = STATE(2029), + [sym_boolean] = STATE(2029), + [sym_nil] = STATE(2029), + [sym_call] = STATE(2029), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2029), + [sym_anonymous_function] = STATE(2029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2440), + [sym_float] = ACTIONS(2440), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2440), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1150] = { + [sym__expression] = STATE(3068), + [sym_block] = STATE(3068), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3068), + [sym_atom] = STATE(3068), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3068), + [sym_charlist] = STATE(3068), + [sym_sigil] = STATE(3068), + [sym_unary_operator] = STATE(3068), + [sym_binary_operator] = STATE(3068), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3068), + [sym_list] = STATE(3068), + [sym_tuple] = STATE(3068), + [sym_bitstring] = STATE(3068), + [sym_map] = STATE(3068), + [sym_boolean] = STATE(3068), + [sym_nil] = STATE(3068), + [sym_call] = STATE(3068), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3068), + [sym_anonymous_function] = STATE(3068), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2274), + [sym_float] = ACTIONS(2274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [1151] = { + [sym__expression] = STATE(3067), + [sym_block] = STATE(3067), + [sym__identifier] = STATE(97), + [sym_identifier] = STATE(97), + [sym_special_identifier] = STATE(97), + [sym_alias] = STATE(3067), + [sym_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3067), + [sym_charlist] = STATE(3067), + [sym_sigil] = STATE(3067), + [sym_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3067), + [sym_list] = STATE(3067), + [sym_tuple] = STATE(3067), + [sym_bitstring] = STATE(3067), + [sym_map] = STATE(3067), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym_call] = STATE(3067), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3067), + [sym_anonymous_function] = STATE(3067), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(1864), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2268), + [sym_float] = ACTIONS(2268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1934), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_CARET] = ACTIONS(1936), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1936), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(1936), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1489), + [sym__not_in] = ACTIONS(61), + }, + [1152] = { + [sym__expression] = STATE(2028), + [sym_block] = STATE(2028), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(2028), + [sym_atom] = STATE(2028), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2028), + [sym_charlist] = STATE(2028), + [sym_sigil] = STATE(2028), + [sym_unary_operator] = STATE(2028), + [sym_binary_operator] = STATE(2028), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2028), + [sym_list] = STATE(2028), + [sym_tuple] = STATE(2028), + [sym_bitstring] = STATE(2028), + [sym_map] = STATE(2028), + [sym_boolean] = STATE(2028), + [sym_nil] = STATE(2028), + [sym_call] = STATE(2028), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2028), + [sym_anonymous_function] = STATE(2028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2436), + [sym_float] = ACTIONS(2436), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2436), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1153] = { + [sym__expression] = STATE(3839), + [sym_block] = STATE(3839), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3839), + [sym_atom] = STATE(3839), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3839), + [sym_charlist] = STATE(3839), + [sym_sigil] = STATE(3839), + [sym_unary_operator] = STATE(3839), + [sym_binary_operator] = STATE(3839), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3839), + [sym_list] = STATE(3839), + [sym_tuple] = STATE(3839), + [sym_bitstring] = STATE(3839), + [sym_map] = STATE(3839), + [sym_boolean] = STATE(3839), + [sym_nil] = STATE(3839), + [sym_call] = STATE(3839), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3839), + [sym_anonymous_function] = STATE(3839), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3214), + [sym_float] = ACTIONS(3214), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3214), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1154] = { + [sym__expression] = STATE(3829), + [sym_block] = STATE(3829), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3829), + [sym_atom] = STATE(3829), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3829), + [sym_charlist] = STATE(3829), + [sym_sigil] = STATE(3829), + [sym_unary_operator] = STATE(3829), + [sym_binary_operator] = STATE(3829), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3829), + [sym_list] = STATE(3829), + [sym_tuple] = STATE(3829), + [sym_bitstring] = STATE(3829), + [sym_map] = STATE(3829), + [sym_boolean] = STATE(3829), + [sym_nil] = STATE(3829), + [sym_call] = STATE(3829), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3829), + [sym_anonymous_function] = STATE(3829), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3216), + [sym_float] = ACTIONS(3216), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3216), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1155] = { + [sym__expression] = STATE(3507), + [sym_block] = STATE(3507), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3507), + [sym_atom] = STATE(3507), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3507), + [sym_charlist] = STATE(3507), + [sym_sigil] = STATE(3507), + [sym_unary_operator] = STATE(3507), + [sym_binary_operator] = STATE(3507), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3507), + [sym_list] = STATE(3507), + [sym_tuple] = STATE(3507), + [sym_bitstring] = STATE(3507), + [sym_map] = STATE(3507), + [sym_boolean] = STATE(3507), + [sym_nil] = STATE(3507), + [sym_call] = STATE(3507), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3507), + [sym_anonymous_function] = STATE(3507), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3218), + [sym_float] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3218), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1156] = { + [sym__expression] = STATE(3807), + [sym_block] = STATE(3807), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3807), + [sym_atom] = STATE(3807), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3807), + [sym_charlist] = STATE(3807), + [sym_sigil] = STATE(3807), + [sym_unary_operator] = STATE(3807), + [sym_binary_operator] = STATE(3807), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3807), + [sym_list] = STATE(3807), + [sym_tuple] = STATE(3807), + [sym_bitstring] = STATE(3807), + [sym_map] = STATE(3807), + [sym_boolean] = STATE(3807), + [sym_nil] = STATE(3807), + [sym_call] = STATE(3807), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3807), + [sym_anonymous_function] = STATE(3807), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3220), + [sym_float] = ACTIONS(3220), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3220), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1157] = { + [sym__expression] = STATE(3785), + [sym_block] = STATE(3785), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3785), + [sym_atom] = STATE(3785), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3785), + [sym_charlist] = STATE(3785), + [sym_sigil] = STATE(3785), + [sym_unary_operator] = STATE(3785), + [sym_binary_operator] = STATE(3785), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3785), + [sym_list] = STATE(3785), + [sym_tuple] = STATE(3785), + [sym_bitstring] = STATE(3785), + [sym_map] = STATE(3785), + [sym_boolean] = STATE(3785), + [sym_nil] = STATE(3785), + [sym_call] = STATE(3785), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3785), + [sym_anonymous_function] = STATE(3785), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3222), + [sym_float] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3222), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1158] = { + [sym__expression] = STATE(3780), + [sym_block] = STATE(3780), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3780), + [sym_atom] = STATE(3780), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3780), + [sym_charlist] = STATE(3780), + [sym_sigil] = STATE(3780), + [sym_unary_operator] = STATE(3780), + [sym_binary_operator] = STATE(3780), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3780), + [sym_list] = STATE(3780), + [sym_tuple] = STATE(3780), + [sym_bitstring] = STATE(3780), + [sym_map] = STATE(3780), + [sym_boolean] = STATE(3780), + [sym_nil] = STATE(3780), + [sym_call] = STATE(3780), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3780), + [sym_anonymous_function] = STATE(3780), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3224), + [sym_float] = ACTIONS(3224), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3224), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1159] = { + [sym__expression] = STATE(3756), + [sym_block] = STATE(3756), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3756), + [sym_atom] = STATE(3756), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3756), + [sym_charlist] = STATE(3756), + [sym_sigil] = STATE(3756), + [sym_unary_operator] = STATE(3756), + [sym_binary_operator] = STATE(3756), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3756), + [sym_list] = STATE(3756), + [sym_tuple] = STATE(3756), + [sym_bitstring] = STATE(3756), + [sym_map] = STATE(3756), + [sym_boolean] = STATE(3756), + [sym_nil] = STATE(3756), + [sym_call] = STATE(3756), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3756), + [sym_anonymous_function] = STATE(3756), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3226), + [sym_float] = ACTIONS(3226), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3226), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1160] = { + [sym__expression] = STATE(2898), + [sym_block] = STATE(2898), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2898), + [sym_atom] = STATE(2898), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2898), + [sym_charlist] = STATE(2898), + [sym_sigil] = STATE(2898), + [sym_unary_operator] = STATE(2898), + [sym_binary_operator] = STATE(2898), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2898), + [sym_list] = STATE(2898), + [sym_tuple] = STATE(2898), + [sym_bitstring] = STATE(2898), + [sym_map] = STATE(2898), + [sym_boolean] = STATE(2898), + [sym_nil] = STATE(2898), + [sym_call] = STATE(2898), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2898), + [sym_anonymous_function] = STATE(2898), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3228), + [sym_float] = ACTIONS(3228), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3228), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1161] = { + [sym__expression] = STATE(3750), + [sym_block] = STATE(3750), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3750), + [sym_atom] = STATE(3750), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3750), + [sym_charlist] = STATE(3750), + [sym_sigil] = STATE(3750), + [sym_unary_operator] = STATE(3750), + [sym_binary_operator] = STATE(3750), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3750), + [sym_list] = STATE(3750), + [sym_tuple] = STATE(3750), + [sym_bitstring] = STATE(3750), + [sym_map] = STATE(3750), + [sym_boolean] = STATE(3750), + [sym_nil] = STATE(3750), + [sym_call] = STATE(3750), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3750), + [sym_anonymous_function] = STATE(3750), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3230), + [sym_float] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3230), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1162] = { + [sym__expression] = STATE(3748), + [sym_block] = STATE(3748), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3748), + [sym_atom] = STATE(3748), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3748), + [sym_charlist] = STATE(3748), + [sym_sigil] = STATE(3748), + [sym_unary_operator] = STATE(3748), + [sym_binary_operator] = STATE(3748), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3748), + [sym_list] = STATE(3748), + [sym_tuple] = STATE(3748), + [sym_bitstring] = STATE(3748), + [sym_map] = STATE(3748), + [sym_boolean] = STATE(3748), + [sym_nil] = STATE(3748), + [sym_call] = STATE(3748), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3748), + [sym_anonymous_function] = STATE(3748), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3232), + [sym_float] = ACTIONS(3232), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3232), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1163] = { + [sym__expression] = STATE(3747), + [sym_block] = STATE(3747), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3747), + [sym_atom] = STATE(3747), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3747), + [sym_charlist] = STATE(3747), + [sym_sigil] = STATE(3747), + [sym_unary_operator] = STATE(3747), + [sym_binary_operator] = STATE(3747), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3747), + [sym_list] = STATE(3747), + [sym_tuple] = STATE(3747), + [sym_bitstring] = STATE(3747), + [sym_map] = STATE(3747), + [sym_boolean] = STATE(3747), + [sym_nil] = STATE(3747), + [sym_call] = STATE(3747), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3747), + [sym_anonymous_function] = STATE(3747), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3234), + [sym_float] = ACTIONS(3234), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3234), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1164] = { + [sym__expression] = STATE(3746), + [sym_block] = STATE(3746), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3746), + [sym_atom] = STATE(3746), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3746), + [sym_charlist] = STATE(3746), + [sym_sigil] = STATE(3746), + [sym_unary_operator] = STATE(3746), + [sym_binary_operator] = STATE(3746), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3746), + [sym_list] = STATE(3746), + [sym_tuple] = STATE(3746), + [sym_bitstring] = STATE(3746), + [sym_map] = STATE(3746), + [sym_boolean] = STATE(3746), + [sym_nil] = STATE(3746), + [sym_call] = STATE(3746), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3746), + [sym_anonymous_function] = STATE(3746), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3236), + [sym_float] = ACTIONS(3236), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3236), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1165] = { + [sym__expression] = STATE(3744), + [sym_block] = STATE(3744), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3744), + [sym_atom] = STATE(3744), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3744), + [sym_charlist] = STATE(3744), + [sym_sigil] = STATE(3744), + [sym_unary_operator] = STATE(3744), + [sym_binary_operator] = STATE(3744), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3744), + [sym_list] = STATE(3744), + [sym_tuple] = STATE(3744), + [sym_bitstring] = STATE(3744), + [sym_map] = STATE(3744), + [sym_boolean] = STATE(3744), + [sym_nil] = STATE(3744), + [sym_call] = STATE(3744), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3744), + [sym_anonymous_function] = STATE(3744), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3238), + [sym_float] = ACTIONS(3238), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3238), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1166] = { + [sym__expression] = STATE(3743), + [sym_block] = STATE(3743), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3743), + [sym_atom] = STATE(3743), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3743), + [sym_charlist] = STATE(3743), + [sym_sigil] = STATE(3743), + [sym_unary_operator] = STATE(3743), + [sym_binary_operator] = STATE(3743), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3743), + [sym_list] = STATE(3743), + [sym_tuple] = STATE(3743), + [sym_bitstring] = STATE(3743), + [sym_map] = STATE(3743), + [sym_boolean] = STATE(3743), + [sym_nil] = STATE(3743), + [sym_call] = STATE(3743), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3743), + [sym_anonymous_function] = STATE(3743), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3240), + [sym_float] = ACTIONS(3240), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3240), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1167] = { + [sym__expression] = STATE(3742), + [sym_block] = STATE(3742), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3742), + [sym_atom] = STATE(3742), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3742), + [sym_charlist] = STATE(3742), + [sym_sigil] = STATE(3742), + [sym_unary_operator] = STATE(3742), + [sym_binary_operator] = STATE(3742), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3742), + [sym_list] = STATE(3742), + [sym_tuple] = STATE(3742), + [sym_bitstring] = STATE(3742), + [sym_map] = STATE(3742), + [sym_boolean] = STATE(3742), + [sym_nil] = STATE(3742), + [sym_call] = STATE(3742), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3742), + [sym_anonymous_function] = STATE(3742), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3242), + [sym_float] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3242), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1168] = { + [sym__expression] = STATE(3741), + [sym_block] = STATE(3741), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3741), + [sym_atom] = STATE(3741), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3741), + [sym_charlist] = STATE(3741), + [sym_sigil] = STATE(3741), + [sym_unary_operator] = STATE(3741), + [sym_binary_operator] = STATE(3741), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3741), + [sym_list] = STATE(3741), + [sym_tuple] = STATE(3741), + [sym_bitstring] = STATE(3741), + [sym_map] = STATE(3741), + [sym_boolean] = STATE(3741), + [sym_nil] = STATE(3741), + [sym_call] = STATE(3741), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3741), + [sym_anonymous_function] = STATE(3741), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3244), + [sym_float] = ACTIONS(3244), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3244), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1169] = { + [sym__expression] = STATE(3740), + [sym_block] = STATE(3740), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3740), + [sym_atom] = STATE(3740), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3740), + [sym_charlist] = STATE(3740), + [sym_sigil] = STATE(3740), + [sym_unary_operator] = STATE(3740), + [sym_binary_operator] = STATE(3740), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3740), + [sym_list] = STATE(3740), + [sym_tuple] = STATE(3740), + [sym_bitstring] = STATE(3740), + [sym_map] = STATE(3740), + [sym_boolean] = STATE(3740), + [sym_nil] = STATE(3740), + [sym_call] = STATE(3740), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3740), + [sym_anonymous_function] = STATE(3740), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3246), + [sym_float] = ACTIONS(3246), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3246), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1170] = { + [sym__expression] = STATE(3508), + [sym_block] = STATE(3508), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3508), + [sym_atom] = STATE(3508), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3508), + [sym_charlist] = STATE(3508), + [sym_sigil] = STATE(3508), + [sym_unary_operator] = STATE(3508), + [sym_binary_operator] = STATE(3508), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3508), + [sym_list] = STATE(3508), + [sym_tuple] = STATE(3508), + [sym_bitstring] = STATE(3508), + [sym_map] = STATE(3508), + [sym_boolean] = STATE(3508), + [sym_nil] = STATE(3508), + [sym_call] = STATE(3508), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3508), + [sym_anonymous_function] = STATE(3508), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3248), + [sym_float] = ACTIONS(3248), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3248), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1171] = { + [sym__expression] = STATE(3737), + [sym_block] = STATE(3737), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3737), + [sym_atom] = STATE(3737), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3737), + [sym_charlist] = STATE(3737), + [sym_sigil] = STATE(3737), + [sym_unary_operator] = STATE(3737), + [sym_binary_operator] = STATE(3737), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3737), + [sym_list] = STATE(3737), + [sym_tuple] = STATE(3737), + [sym_bitstring] = STATE(3737), + [sym_map] = STATE(3737), + [sym_boolean] = STATE(3737), + [sym_nil] = STATE(3737), + [sym_call] = STATE(3737), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3737), + [sym_anonymous_function] = STATE(3737), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3250), + [sym_float] = ACTIONS(3250), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3250), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1172] = { + [sym__expression] = STATE(3509), + [sym_block] = STATE(3509), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3509), + [sym_atom] = STATE(3509), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3509), + [sym_charlist] = STATE(3509), + [sym_sigil] = STATE(3509), + [sym_unary_operator] = STATE(3509), + [sym_binary_operator] = STATE(3509), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3509), + [sym_list] = STATE(3509), + [sym_tuple] = STATE(3509), + [sym_bitstring] = STATE(3509), + [sym_map] = STATE(3509), + [sym_boolean] = STATE(3509), + [sym_nil] = STATE(3509), + [sym_call] = STATE(3509), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3509), + [sym_anonymous_function] = STATE(3509), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3252), + [sym_float] = ACTIONS(3252), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3252), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1173] = { + [sym__expression] = STATE(3510), + [sym_block] = STATE(3510), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3510), + [sym_atom] = STATE(3510), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3510), + [sym_charlist] = STATE(3510), + [sym_sigil] = STATE(3510), + [sym_unary_operator] = STATE(3510), + [sym_binary_operator] = STATE(3510), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3510), + [sym_list] = STATE(3510), + [sym_tuple] = STATE(3510), + [sym_bitstring] = STATE(3510), + [sym_map] = STATE(3510), + [sym_boolean] = STATE(3510), + [sym_nil] = STATE(3510), + [sym_call] = STATE(3510), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3510), + [sym_anonymous_function] = STATE(3510), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3254), + [sym_float] = ACTIONS(3254), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3254), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1174] = { + [sym__expression] = STATE(2841), + [sym_block] = STATE(2841), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(2841), + [sym_atom] = STATE(2841), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(2841), + [sym_charlist] = STATE(2841), + [sym_sigil] = STATE(2841), + [sym_unary_operator] = STATE(2841), + [sym_binary_operator] = STATE(2841), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(2841), + [sym_list] = STATE(2841), + [sym_tuple] = STATE(2841), + [sym_bitstring] = STATE(2841), + [sym_map] = STATE(2841), + [sym_boolean] = STATE(2841), + [sym_nil] = STATE(2841), + [sym_call] = STATE(2841), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(2841), + [sym_anonymous_function] = STATE(2841), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(1617), + [sym_float] = ACTIONS(1617), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(1617), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1175] = { + [sym__expression] = STATE(1923), + [sym_block] = STATE(1923), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(1923), + [sym_atom] = STATE(1923), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(1923), + [sym_charlist] = STATE(1923), + [sym_sigil] = STATE(1923), + [sym_unary_operator] = STATE(1923), + [sym_binary_operator] = STATE(1923), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(1923), + [sym_list] = STATE(1923), + [sym_tuple] = STATE(1923), + [sym_bitstring] = STATE(1923), + [sym_map] = STATE(1923), + [sym_boolean] = STATE(1923), + [sym_nil] = STATE(1923), + [sym_call] = STATE(1923), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(1923), + [sym_anonymous_function] = STATE(1923), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2358), + [sym_float] = ACTIONS(2358), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2358), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1176] = { + [sym__expression] = STATE(3511), + [sym_block] = STATE(3511), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3511), + [sym_atom] = STATE(3511), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3511), + [sym_charlist] = STATE(3511), + [sym_sigil] = STATE(3511), + [sym_unary_operator] = STATE(3511), + [sym_binary_operator] = STATE(3511), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3511), + [sym_list] = STATE(3511), + [sym_tuple] = STATE(3511), + [sym_bitstring] = STATE(3511), + [sym_map] = STATE(3511), + [sym_boolean] = STATE(3511), + [sym_nil] = STATE(3511), + [sym_call] = STATE(3511), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3511), + [sym_anonymous_function] = STATE(3511), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3256), + [sym_float] = ACTIONS(3256), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3256), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1177] = { + [sym__expression] = STATE(3513), + [sym_block] = STATE(3513), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3513), + [sym_atom] = STATE(3513), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3513), + [sym_charlist] = STATE(3513), + [sym_sigil] = STATE(3513), + [sym_unary_operator] = STATE(3513), + [sym_binary_operator] = STATE(3513), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3513), + [sym_list] = STATE(3513), + [sym_tuple] = STATE(3513), + [sym_bitstring] = STATE(3513), + [sym_map] = STATE(3513), + [sym_boolean] = STATE(3513), + [sym_nil] = STATE(3513), + [sym_call] = STATE(3513), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3513), + [sym_anonymous_function] = STATE(3513), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3258), + [sym_float] = ACTIONS(3258), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3258), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1178] = { + [sym__expression] = STATE(3032), + [sym_block] = STATE(3032), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3032), + [sym_atom] = STATE(3032), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3032), + [sym_charlist] = STATE(3032), + [sym_sigil] = STATE(3032), + [sym_unary_operator] = STATE(3032), + [sym_binary_operator] = STATE(3032), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3032), + [sym_list] = STATE(3032), + [sym_tuple] = STATE(3032), + [sym_bitstring] = STATE(3032), + [sym_map] = STATE(3032), + [sym_boolean] = STATE(3032), + [sym_nil] = STATE(3032), + [sym_call] = STATE(3032), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3032), + [sym_anonymous_function] = STATE(3032), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3260), + [sym_float] = ACTIONS(3260), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3260), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1179] = { + [sym__expression] = STATE(3514), + [sym_block] = STATE(3514), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3514), + [sym_atom] = STATE(3514), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3514), + [sym_charlist] = STATE(3514), + [sym_sigil] = STATE(3514), + [sym_unary_operator] = STATE(3514), + [sym_binary_operator] = STATE(3514), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3514), + [sym_list] = STATE(3514), + [sym_tuple] = STATE(3514), + [sym_bitstring] = STATE(3514), + [sym_map] = STATE(3514), + [sym_boolean] = STATE(3514), + [sym_nil] = STATE(3514), + [sym_call] = STATE(3514), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3514), + [sym_anonymous_function] = STATE(3514), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3262), + [sym_float] = ACTIONS(3262), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3262), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1180] = { + [sym__expression] = STATE(3030), + [sym_block] = STATE(3030), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3030), + [sym_atom] = STATE(3030), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3030), + [sym_charlist] = STATE(3030), + [sym_sigil] = STATE(3030), + [sym_unary_operator] = STATE(3030), + [sym_binary_operator] = STATE(3030), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3030), + [sym_list] = STATE(3030), + [sym_tuple] = STATE(3030), + [sym_bitstring] = STATE(3030), + [sym_map] = STATE(3030), + [sym_boolean] = STATE(3030), + [sym_nil] = STATE(3030), + [sym_call] = STATE(3030), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3030), + [sym_anonymous_function] = STATE(3030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3264), + [sym_float] = ACTIONS(3264), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3264), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1181] = { + [sym__expression] = STATE(3515), + [sym_block] = STATE(3515), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3515), + [sym_atom] = STATE(3515), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3515), + [sym_charlist] = STATE(3515), + [sym_sigil] = STATE(3515), + [sym_unary_operator] = STATE(3515), + [sym_binary_operator] = STATE(3515), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3515), + [sym_list] = STATE(3515), + [sym_tuple] = STATE(3515), + [sym_bitstring] = STATE(3515), + [sym_map] = STATE(3515), + [sym_boolean] = STATE(3515), + [sym_nil] = STATE(3515), + [sym_call] = STATE(3515), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3515), + [sym_anonymous_function] = STATE(3515), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3266), + [sym_float] = ACTIONS(3266), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3266), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1182] = { + [sym__expression] = STATE(3029), + [sym_block] = STATE(3029), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3029), + [sym_atom] = STATE(3029), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3029), + [sym_charlist] = STATE(3029), + [sym_sigil] = STATE(3029), + [sym_unary_operator] = STATE(3029), + [sym_binary_operator] = STATE(3029), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3029), + [sym_list] = STATE(3029), + [sym_tuple] = STATE(3029), + [sym_bitstring] = STATE(3029), + [sym_map] = STATE(3029), + [sym_boolean] = STATE(3029), + [sym_nil] = STATE(3029), + [sym_call] = STATE(3029), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3029), + [sym_anonymous_function] = STATE(3029), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3268), + [sym_float] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3268), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1183] = { + [sym__expression] = STATE(3516), + [sym_block] = STATE(3516), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3516), + [sym_atom] = STATE(3516), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3516), + [sym_charlist] = STATE(3516), + [sym_sigil] = STATE(3516), + [sym_unary_operator] = STATE(3516), + [sym_binary_operator] = STATE(3516), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3516), + [sym_list] = STATE(3516), + [sym_tuple] = STATE(3516), + [sym_bitstring] = STATE(3516), + [sym_map] = STATE(3516), + [sym_boolean] = STATE(3516), + [sym_nil] = STATE(3516), + [sym_call] = STATE(3516), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3516), + [sym_anonymous_function] = STATE(3516), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3270), + [sym_float] = ACTIONS(3270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1184] = { + [sym__expression] = STATE(3517), + [sym_block] = STATE(3517), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3517), + [sym_atom] = STATE(3517), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3517), + [sym_charlist] = STATE(3517), + [sym_sigil] = STATE(3517), + [sym_unary_operator] = STATE(3517), + [sym_binary_operator] = STATE(3517), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3517), + [sym_list] = STATE(3517), + [sym_tuple] = STATE(3517), + [sym_bitstring] = STATE(3517), + [sym_map] = STATE(3517), + [sym_boolean] = STATE(3517), + [sym_nil] = STATE(3517), + [sym_call] = STATE(3517), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3517), + [sym_anonymous_function] = STATE(3517), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3272), + [sym_float] = ACTIONS(3272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1185] = { + [sym__expression] = STATE(3161), + [sym_block] = STATE(3161), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3161), + [sym_atom] = STATE(3161), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3161), + [sym_charlist] = STATE(3161), + [sym_sigil] = STATE(3161), + [sym_unary_operator] = STATE(3161), + [sym_binary_operator] = STATE(3161), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3161), + [sym_list] = STATE(3161), + [sym_tuple] = STATE(3161), + [sym_bitstring] = STATE(3161), + [sym_map] = STATE(3161), + [sym_boolean] = STATE(3161), + [sym_nil] = STATE(3161), + [sym_call] = STATE(3161), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3161), + [sym_anonymous_function] = STATE(3161), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3274), + [sym_float] = ACTIONS(3274), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3274), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1186] = { + [sym__expression] = STATE(3028), + [sym_block] = STATE(3028), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3028), + [sym_atom] = STATE(3028), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3028), + [sym_charlist] = STATE(3028), + [sym_sigil] = STATE(3028), + [sym_unary_operator] = STATE(3028), + [sym_binary_operator] = STATE(3028), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3028), + [sym_list] = STATE(3028), + [sym_tuple] = STATE(3028), + [sym_bitstring] = STATE(3028), + [sym_map] = STATE(3028), + [sym_boolean] = STATE(3028), + [sym_nil] = STATE(3028), + [sym_call] = STATE(3028), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3028), + [sym_anonymous_function] = STATE(3028), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3276), + [sym_float] = ACTIONS(3276), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3276), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1187] = { + [sym__expression] = STATE(3518), + [sym_block] = STATE(3518), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3518), + [sym_atom] = STATE(3518), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3518), + [sym_charlist] = STATE(3518), + [sym_sigil] = STATE(3518), + [sym_unary_operator] = STATE(3518), + [sym_binary_operator] = STATE(3518), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3518), + [sym_list] = STATE(3518), + [sym_tuple] = STATE(3518), + [sym_bitstring] = STATE(3518), + [sym_map] = STATE(3518), + [sym_boolean] = STATE(3518), + [sym_nil] = STATE(3518), + [sym_call] = STATE(3518), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3518), + [sym_anonymous_function] = STATE(3518), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3278), + [sym_float] = ACTIONS(3278), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3278), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1188] = { + [sym__expression] = STATE(3163), + [sym_block] = STATE(3163), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3163), + [sym_atom] = STATE(3163), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3163), + [sym_charlist] = STATE(3163), + [sym_sigil] = STATE(3163), + [sym_unary_operator] = STATE(3163), + [sym_binary_operator] = STATE(3163), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3163), + [sym_list] = STATE(3163), + [sym_tuple] = STATE(3163), + [sym_bitstring] = STATE(3163), + [sym_map] = STATE(3163), + [sym_boolean] = STATE(3163), + [sym_nil] = STATE(3163), + [sym_call] = STATE(3163), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3163), + [sym_anonymous_function] = STATE(3163), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3280), + [sym_float] = ACTIONS(3280), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3280), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1189] = { + [sym__expression] = STATE(3165), + [sym_block] = STATE(3165), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3165), + [sym_atom] = STATE(3165), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3165), + [sym_charlist] = STATE(3165), + [sym_sigil] = STATE(3165), + [sym_unary_operator] = STATE(3165), + [sym_binary_operator] = STATE(3165), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3165), + [sym_list] = STATE(3165), + [sym_tuple] = STATE(3165), + [sym_bitstring] = STATE(3165), + [sym_map] = STATE(3165), + [sym_boolean] = STATE(3165), + [sym_nil] = STATE(3165), + [sym_call] = STATE(3165), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3165), + [sym_anonymous_function] = STATE(3165), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3282), + [sym_float] = ACTIONS(3282), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3282), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1190] = { + [sym__expression] = STATE(3027), + [sym_block] = STATE(3027), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_alias] = STATE(3027), + [sym_atom] = STATE(3027), + [sym__quoted_i_double] = STATE(2925), + [sym__quoted_i_single] = STATE(2926), + [sym__quoted_i_heredoc_single] = STATE(2926), + [sym__quoted_i_heredoc_double] = STATE(2925), + [sym_string] = STATE(3027), + [sym_charlist] = STATE(3027), + [sym_sigil] = STATE(3027), + [sym_unary_operator] = STATE(3027), + [sym_binary_operator] = STATE(3027), + [sym_operator_identifier] = STATE(5386), + [sym_dot] = STATE(3027), + [sym_list] = STATE(3027), + [sym_tuple] = STATE(3027), + [sym_bitstring] = STATE(3027), + [sym_map] = STATE(3027), + [sym_boolean] = STATE(3027), + [sym_nil] = STATE(3027), + [sym_call] = STATE(3027), + [sym__call_on_call] = STATE(2927), + [sym__local_call_with_arguments] = STATE(2927), + [sym__parenthesised_local_call_with_arguments] = STATE(2232), + [sym__local_call_without_arguments] = STATE(2927), + [sym__remote_call] = STATE(2927), + [sym__parenthesised_remote_call] = STATE(2232), + [sym__remote_dot] = STATE(96), + [sym__anonymous_call] = STATE(2232), + [sym__anonymous_dot] = STATE(5295), + [sym_access_call] = STATE(3027), + [sym_anonymous_function] = STATE(3027), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(617), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(2012), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [sym_integer] = ACTIONS(3284), + [sym_float] = ACTIONS(3284), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2022), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2024), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(645), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_TILDE] = ACTIONS(651), + [anon_sym_not] = ACTIONS(2024), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_nil] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(663), + [sym_char] = ACTIONS(3284), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(667), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(671), + [sym__not_in] = ACTIONS(61), + }, + [1191] = { + [sym__expression] = STATE(3519), + [sym_block] = STATE(3519), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3519), + [sym_atom] = STATE(3519), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3519), + [sym_charlist] = STATE(3519), + [sym_sigil] = STATE(3519), + [sym_unary_operator] = STATE(3519), + [sym_binary_operator] = STATE(3519), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3519), + [sym_list] = STATE(3519), + [sym_tuple] = STATE(3519), + [sym_bitstring] = STATE(3519), + [sym_map] = STATE(3519), + [sym_boolean] = STATE(3519), + [sym_nil] = STATE(3519), + [sym_call] = STATE(3519), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3519), + [sym_anonymous_function] = STATE(3519), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3286), + [sym_float] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3286), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1192] = { + [sym__expression] = STATE(3520), + [sym_block] = STATE(3520), + [sym__identifier] = STATE(118), + [sym_identifier] = STATE(118), + [sym_special_identifier] = STATE(118), + [sym_alias] = STATE(3520), + [sym_atom] = STATE(3520), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3520), + [sym_charlist] = STATE(3520), + [sym_sigil] = STATE(3520), + [sym_unary_operator] = STATE(3520), + [sym_binary_operator] = STATE(3520), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3520), + [sym_list] = STATE(3520), + [sym_tuple] = STATE(3520), + [sym_bitstring] = STATE(3520), + [sym_map] = STATE(3520), + [sym_boolean] = STATE(3520), + [sym_nil] = STATE(3520), + [sym_call] = STATE(3520), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(99), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3520), + [sym_anonymous_function] = STATE(3520), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1798), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3288), + [sym_float] = ACTIONS(3288), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2238), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_CARET] = ACTIONS(2240), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2240), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1393), + [anon_sym_not] = ACTIONS(2240), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3288), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1519), + [sym__not_in] = ACTIONS(61), + }, + [1193] = { + [sym__expression] = STATE(2023), + [sym_block] = STATE(2023), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2023), + [sym_atom] = STATE(2023), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2023), + [sym_charlist] = STATE(2023), + [sym_sigil] = STATE(2023), + [sym_unary_operator] = STATE(2023), + [sym_binary_operator] = STATE(2023), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2023), + [sym_list] = STATE(2023), + [sym_tuple] = STATE(2023), + [sym_bitstring] = STATE(2023), + [sym_map] = STATE(2023), + [sym_boolean] = STATE(2023), + [sym_nil] = STATE(2023), + [sym_call] = STATE(2023), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2023), + [sym_anonymous_function] = STATE(2023), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2272), + [sym_float] = ACTIONS(2272), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2272), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [1194] = { + [sym__expression] = STATE(2030), + [sym_block] = STATE(2030), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(2030), + [sym_atom] = STATE(2030), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(2030), + [sym_charlist] = STATE(2030), + [sym_sigil] = STATE(2030), + [sym_unary_operator] = STATE(2030), + [sym_binary_operator] = STATE(2030), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(2030), + [sym_list] = STATE(2030), + [sym_tuple] = STATE(2030), + [sym_bitstring] = STATE(2030), + [sym_map] = STATE(2030), + [sym_boolean] = STATE(2030), + [sym_nil] = STATE(2030), + [sym_call] = STATE(2030), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(2030), + [sym_anonymous_function] = STATE(2030), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(2270), + [sym_float] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(2270), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [1195] = { + [sym__expression] = STATE(3758), + [sym_block] = STATE(3758), + [sym__identifier] = STATE(146), + [sym_identifier] = STATE(146), + [sym_special_identifier] = STATE(146), + [sym_alias] = STATE(3758), + [sym_atom] = STATE(3758), + [sym__quoted_i_double] = STATE(3794), + [sym__quoted_i_single] = STATE(3795), + [sym__quoted_i_heredoc_single] = STATE(3795), + [sym__quoted_i_heredoc_double] = STATE(3794), + [sym_string] = STATE(3758), + [sym_charlist] = STATE(3758), + [sym_sigil] = STATE(3758), + [sym_unary_operator] = STATE(3758), + [sym_binary_operator] = STATE(3758), + [sym_operator_identifier] = STATE(5389), + [sym_dot] = STATE(3758), + [sym_list] = STATE(3758), + [sym_tuple] = STATE(3758), + [sym_bitstring] = STATE(3758), + [sym_map] = STATE(3758), + [sym_boolean] = STATE(3758), + [sym_nil] = STATE(3758), + [sym_call] = STATE(3758), + [sym__call_on_call] = STATE(3796), + [sym__local_call_with_arguments] = STATE(3796), + [sym__parenthesised_local_call_with_arguments] = STATE(3424), + [sym__local_call_without_arguments] = STATE(3796), + [sym__remote_call] = STATE(3796), + [sym__parenthesised_remote_call] = STATE(3424), + [sym__remote_dot] = STATE(119), + [sym__anonymous_call] = STATE(3424), + [sym__anonymous_dot] = STATE(5286), + [sym_access_call] = STATE(3758), + [sym_anonymous_function] = STATE(3758), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1175), + [aux_sym_identifier_token1] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1970), + [sym_unused_identifier] = ACTIONS(1972), + [anon_sym___MODULE__] = ACTIONS(1974), + [anon_sym___DIR__] = ACTIONS(1974), + [anon_sym___ENV__] = ACTIONS(1974), + [anon_sym___CALLER__] = ACTIONS(1974), + [anon_sym___STACKTRACE__] = ACTIONS(1974), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [sym_integer] = ACTIONS(3290), + [sym_float] = ACTIONS(3290), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1982), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_CARET] = ACTIONS(1984), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1984), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1201), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1207), + [anon_sym_TILDE] = ACTIONS(1209), + [anon_sym_not] = ACTIONS(1984), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_nil] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1219), + [sym_char] = ACTIONS(3290), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1223), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1225), + [sym__not_in] = ACTIONS(61), + }, + [1196] = { + [sym__expression] = STATE(3169), + [sym_block] = STATE(3169), + [sym__identifier] = STATE(112), + [sym_identifier] = STATE(112), + [sym_special_identifier] = STATE(112), + [sym_alias] = STATE(3169), + [sym_atom] = STATE(3169), + [sym__quoted_i_double] = STATE(3262), + [sym__quoted_i_single] = STATE(3261), + [sym__quoted_i_heredoc_single] = STATE(3261), + [sym__quoted_i_heredoc_double] = STATE(3262), + [sym_string] = STATE(3169), + [sym_charlist] = STATE(3169), + [sym_sigil] = STATE(3169), + [sym_unary_operator] = STATE(3169), + [sym_binary_operator] = STATE(3169), + [sym_operator_identifier] = STATE(5363), + [sym_dot] = STATE(3169), + [sym_list] = STATE(3169), + [sym_tuple] = STATE(3169), + [sym_bitstring] = STATE(3169), + [sym_map] = STATE(3169), + [sym_boolean] = STATE(3169), + [sym_nil] = STATE(3169), + [sym_call] = STATE(3169), + [sym__call_on_call] = STATE(3258), + [sym__local_call_with_arguments] = STATE(3258), + [sym__parenthesised_local_call_with_arguments] = STATE(2429), + [sym__local_call_without_arguments] = STATE(3258), + [sym__remote_call] = STATE(3258), + [sym__parenthesised_remote_call] = STATE(2429), + [sym__remote_dot] = STATE(111), + [sym__anonymous_call] = STATE(2429), + [sym__anonymous_dot] = STATE(5287), + [sym_access_call] = STATE(3169), + [sym_anonymous_function] = STATE(3169), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(759), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(2208), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [sym_integer] = ACTIONS(3292), + [sym_float] = ACTIONS(3292), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2218), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_CARET] = ACTIONS(2220), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2220), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(2222), + [anon_sym_SQUOTE] = ACTIONS(2224), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(785), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(791), + [anon_sym_TILDE] = ACTIONS(793), + [anon_sym_not] = ACTIONS(2220), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_nil] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_LT_LT] = ACTIONS(803), + [sym_char] = ACTIONS(3292), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(807), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(809), + [sym__not_in] = ACTIONS(61), + }, + [1197] = { + [sym__expression] = STATE(3806), + [sym_block] = STATE(3806), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3806), + [sym_atom] = STATE(3806), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3806), + [sym_charlist] = STATE(3806), + [sym_sigil] = STATE(3806), + [sym_unary_operator] = STATE(3806), + [sym_binary_operator] = STATE(3806), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3806), + [sym_list] = STATE(3806), + [sym_tuple] = STATE(3806), + [sym_bitstring] = STATE(3806), + [sym_map] = STATE(3806), + [sym_boolean] = STATE(3806), + [sym_nil] = STATE(3806), + [sym_call] = STATE(3806), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3806), + [sym_anonymous_function] = STATE(3806), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3294), + [sym_float] = ACTIONS(3294), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3294), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1198] = { + [sym__expression] = STATE(3804), + [sym_block] = STATE(3804), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3804), + [sym_atom] = STATE(3804), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3804), + [sym_charlist] = STATE(3804), + [sym_sigil] = STATE(3804), + [sym_unary_operator] = STATE(3804), + [sym_binary_operator] = STATE(3804), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3804), + [sym_list] = STATE(3804), + [sym_tuple] = STATE(3804), + [sym_bitstring] = STATE(3804), + [sym_map] = STATE(3804), + [sym_boolean] = STATE(3804), + [sym_nil] = STATE(3804), + [sym_call] = STATE(3804), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3804), + [sym_anonymous_function] = STATE(3804), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3296), + [sym_float] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3296), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1199] = { + [sym__expression] = STATE(3803), + [sym_block] = STATE(3803), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3803), + [sym_atom] = STATE(3803), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3803), + [sym_charlist] = STATE(3803), + [sym_sigil] = STATE(3803), + [sym_unary_operator] = STATE(3803), + [sym_binary_operator] = STATE(3803), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3803), + [sym_list] = STATE(3803), + [sym_tuple] = STATE(3803), + [sym_bitstring] = STATE(3803), + [sym_map] = STATE(3803), + [sym_boolean] = STATE(3803), + [sym_nil] = STATE(3803), + [sym_call] = STATE(3803), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3803), + [sym_anonymous_function] = STATE(3803), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3298), + [sym_float] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3298), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1200] = { + [sym__expression] = STATE(3786), + [sym_block] = STATE(3786), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3786), + [sym_atom] = STATE(3786), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3786), + [sym_charlist] = STATE(3786), + [sym_sigil] = STATE(3786), + [sym_unary_operator] = STATE(3786), + [sym_binary_operator] = STATE(3786), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3786), + [sym_list] = STATE(3786), + [sym_tuple] = STATE(3786), + [sym_bitstring] = STATE(3786), + [sym_map] = STATE(3786), + [sym_boolean] = STATE(3786), + [sym_nil] = STATE(3786), + [sym_call] = STATE(3786), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3786), + [sym_anonymous_function] = STATE(3786), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3300), + [sym_float] = ACTIONS(3300), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3300), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1201] = { + [sym__expression] = STATE(2963), + [sym_block] = STATE(2963), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(2963), + [sym_atom] = STATE(2963), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(2963), + [sym_charlist] = STATE(2963), + [sym_sigil] = STATE(2963), + [sym_unary_operator] = STATE(2963), + [sym_binary_operator] = STATE(2963), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(2963), + [sym_list] = STATE(2963), + [sym_tuple] = STATE(2963), + [sym_bitstring] = STATE(2963), + [sym_map] = STATE(2963), + [sym_boolean] = STATE(2963), + [sym_nil] = STATE(2963), + [sym_call] = STATE(2963), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(2963), + [sym_anonymous_function] = STATE(2963), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(2434), + [sym_float] = ACTIONS(2434), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(2434), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1202] = { + [sym__expression] = STATE(3734), + [sym_block] = STATE(3734), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3734), + [sym_atom] = STATE(3734), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3734), + [sym_charlist] = STATE(3734), + [sym_sigil] = STATE(3734), + [sym_unary_operator] = STATE(3734), + [sym_binary_operator] = STATE(3734), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3734), + [sym_list] = STATE(3734), + [sym_tuple] = STATE(3734), + [sym_bitstring] = STATE(3734), + [sym_map] = STATE(3734), + [sym_boolean] = STATE(3734), + [sym_nil] = STATE(3734), + [sym_call] = STATE(3734), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3734), + [sym_anonymous_function] = STATE(3734), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3302), + [sym_float] = ACTIONS(3302), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3302), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1203] = { + [sym__expression] = STATE(3774), + [sym_block] = STATE(3774), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3774), + [sym_atom] = STATE(3774), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3774), + [sym_charlist] = STATE(3774), + [sym_sigil] = STATE(3774), + [sym_unary_operator] = STATE(3774), + [sym_binary_operator] = STATE(3774), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3774), + [sym_list] = STATE(3774), + [sym_tuple] = STATE(3774), + [sym_bitstring] = STATE(3774), + [sym_map] = STATE(3774), + [sym_boolean] = STATE(3774), + [sym_nil] = STATE(3774), + [sym_call] = STATE(3774), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3774), + [sym_anonymous_function] = STATE(3774), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3304), + [sym_float] = ACTIONS(3304), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3304), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1204] = { + [sym__expression] = STATE(3779), + [sym_block] = STATE(3779), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3779), + [sym_atom] = STATE(3779), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3779), + [sym_charlist] = STATE(3779), + [sym_sigil] = STATE(3779), + [sym_unary_operator] = STATE(3779), + [sym_binary_operator] = STATE(3779), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3779), + [sym_list] = STATE(3779), + [sym_tuple] = STATE(3779), + [sym_bitstring] = STATE(3779), + [sym_map] = STATE(3779), + [sym_boolean] = STATE(3779), + [sym_nil] = STATE(3779), + [sym_call] = STATE(3779), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3779), + [sym_anonymous_function] = STATE(3779), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3306), + [sym_float] = ACTIONS(3306), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3306), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1205] = { + [sym__expression] = STATE(3781), + [sym_block] = STATE(3781), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3781), + [sym_atom] = STATE(3781), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3781), + [sym_charlist] = STATE(3781), + [sym_sigil] = STATE(3781), + [sym_unary_operator] = STATE(3781), + [sym_binary_operator] = STATE(3781), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3781), + [sym_list] = STATE(3781), + [sym_tuple] = STATE(3781), + [sym_bitstring] = STATE(3781), + [sym_map] = STATE(3781), + [sym_boolean] = STATE(3781), + [sym_nil] = STATE(3781), + [sym_call] = STATE(3781), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3781), + [sym_anonymous_function] = STATE(3781), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3308), + [sym_float] = ACTIONS(3308), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3308), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1206] = { + [sym__expression] = STATE(3700), + [sym_block] = STATE(3700), + [sym__identifier] = STATE(134), + [sym_identifier] = STATE(134), + [sym_special_identifier] = STATE(134), + [sym_alias] = STATE(3700), + [sym_atom] = STATE(3700), + [sym__quoted_i_double] = STATE(1928), + [sym__quoted_i_single] = STATE(1932), + [sym__quoted_i_heredoc_single] = STATE(1932), + [sym__quoted_i_heredoc_double] = STATE(1928), + [sym_string] = STATE(3700), + [sym_charlist] = STATE(3700), + [sym_sigil] = STATE(3700), + [sym_unary_operator] = STATE(3700), + [sym_binary_operator] = STATE(3700), + [sym_operator_identifier] = STATE(5346), + [sym_dot] = STATE(3700), + [sym_list] = STATE(3700), + [sym_tuple] = STATE(3700), + [sym_bitstring] = STATE(3700), + [sym_map] = STATE(3700), + [sym_boolean] = STATE(3700), + [sym_nil] = STATE(3700), + [sym_call] = STATE(3700), + [sym__call_on_call] = STATE(1933), + [sym__local_call_with_arguments] = STATE(1933), + [sym__parenthesised_local_call_with_arguments] = STATE(1669), + [sym__local_call_without_arguments] = STATE(1933), + [sym__remote_call] = STATE(1933), + [sym__parenthesised_remote_call] = STATE(1669), + [sym__remote_dot] = STATE(125), + [sym__anonymous_call] = STATE(1669), + [sym__anonymous_dot] = STATE(5300), + [sym_access_call] = STATE(3700), + [sym_anonymous_function] = STATE(3700), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1365), + [aux_sym_identifier_token1] = ACTIONS(1637), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1637), + [sym_unused_identifier] = ACTIONS(1784), + [anon_sym___MODULE__] = ACTIONS(1641), + [anon_sym___DIR__] = ACTIONS(1641), + [anon_sym___ENV__] = ACTIONS(1641), + [anon_sym___CALLER__] = ACTIONS(1641), + [anon_sym___STACKTRACE__] = ACTIONS(1641), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [sym_integer] = ACTIONS(3310), + [sym_float] = ACTIONS(3310), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(1856), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_CARET] = ACTIONS(1858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1858), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_DQUOTE] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1385), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_TILDE] = ACTIONS(1449), + [anon_sym_not] = ACTIONS(1858), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1655), + [anon_sym_false] = ACTIONS(1655), + [anon_sym_nil] = ACTIONS(1657), + [anon_sym_fn] = ACTIONS(1667), + [anon_sym_LT_LT] = ACTIONS(1403), + [sym_char] = ACTIONS(3310), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1405), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1551), + [sym__not_in] = ACTIONS(61), + }, + [1207] = { + [sym__expression] = STATE(2890), + [sym_block] = STATE(2890), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2890), + [sym_atom] = STATE(2890), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2890), + [sym_charlist] = STATE(2890), + [sym_sigil] = STATE(2890), + [sym_unary_operator] = STATE(2890), + [sym_binary_operator] = STATE(2890), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2890), + [sym_list] = STATE(2890), + [sym_tuple] = STATE(2890), + [sym_bitstring] = STATE(2890), + [sym_map] = STATE(2890), + [sym_boolean] = STATE(2890), + [sym_nil] = STATE(2890), + [sym_call] = STATE(2890), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2890), + [sym_anonymous_function] = STATE(2890), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3312), + [sym_float] = ACTIONS(3312), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3312), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1208] = { + [sym__expression] = STATE(3789), + [sym_block] = STATE(3789), + [sym__identifier] = STATE(201), + [sym_identifier] = STATE(201), + [sym_special_identifier] = STATE(201), + [sym_alias] = STATE(3789), + [sym_atom] = STATE(3789), + [sym__quoted_i_double] = STATE(2992), + [sym__quoted_i_single] = STATE(2994), + [sym__quoted_i_heredoc_single] = STATE(2994), + [sym__quoted_i_heredoc_double] = STATE(2992), + [sym_string] = STATE(3789), + [sym_charlist] = STATE(3789), + [sym_sigil] = STATE(3789), + [sym_unary_operator] = STATE(3789), + [sym_binary_operator] = STATE(3789), + [sym_operator_identifier] = STATE(5396), + [sym_dot] = STATE(3789), + [sym_list] = STATE(3789), + [sym_tuple] = STATE(3789), + [sym_bitstring] = STATE(3789), + [sym_map] = STATE(3789), + [sym_boolean] = STATE(3789), + [sym_nil] = STATE(3789), + [sym_call] = STATE(3789), + [sym__call_on_call] = STATE(2995), + [sym__local_call_with_arguments] = STATE(2995), + [sym__parenthesised_local_call_with_arguments] = STATE(2286), + [sym__local_call_without_arguments] = STATE(2995), + [sym__remote_call] = STATE(2995), + [sym__parenthesised_remote_call] = STATE(2286), + [sym__remote_dot] = STATE(132), + [sym__anonymous_call] = STATE(2286), + [sym__anonymous_dot] = STATE(5325), + [sym_access_call] = STATE(3789), + [sym_anonymous_function] = STATE(3789), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(1862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1862), + [sym_unused_identifier] = ACTIONS(2182), + [anon_sym___MODULE__] = ACTIONS(1866), + [anon_sym___DIR__] = ACTIONS(1866), + [anon_sym___ENV__] = ACTIONS(1866), + [anon_sym___CALLER__] = ACTIONS(1866), + [anon_sym___STACKTRACE__] = ACTIONS(1866), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [sym_integer] = ACTIONS(3314), + [sym_float] = ACTIONS(3314), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2246), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2248), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2248), + [anon_sym_PERCENT] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_not] = ACTIONS(2248), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_nil] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_LT_LT] = ACTIONS(1113), + [sym_char] = ACTIONS(3314), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(1115), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1581), + [sym__not_in] = ACTIONS(61), + }, + [1209] = { + [sym__expression] = STATE(2897), + [sym_block] = STATE(2897), + [sym__identifier] = STATE(117), + [sym_identifier] = STATE(117), + [sym_special_identifier] = STATE(117), + [sym_alias] = STATE(2897), + [sym_atom] = STATE(2897), + [sym__quoted_i_double] = STATE(1728), + [sym__quoted_i_single] = STATE(1727), + [sym__quoted_i_heredoc_single] = STATE(1727), + [sym__quoted_i_heredoc_double] = STATE(1728), + [sym_string] = STATE(2897), + [sym_charlist] = STATE(2897), + [sym_sigil] = STATE(2897), + [sym_unary_operator] = STATE(2897), + [sym_binary_operator] = STATE(2897), + [sym_operator_identifier] = STATE(5361), + [sym_dot] = STATE(2897), + [sym_list] = STATE(2897), + [sym_tuple] = STATE(2897), + [sym_bitstring] = STATE(2897), + [sym_map] = STATE(2897), + [sym_boolean] = STATE(2897), + [sym_nil] = STATE(2897), + [sym_call] = STATE(2897), + [sym__call_on_call] = STATE(1725), + [sym__local_call_with_arguments] = STATE(1725), + [sym__parenthesised_local_call_with_arguments] = STATE(1397), + [sym__local_call_without_arguments] = STATE(1725), + [sym__remote_call] = STATE(1725), + [sym__parenthesised_remote_call] = STATE(1397), + [sym__remote_dot] = STATE(116), + [sym__anonymous_call] = STATE(1397), + [sym__anonymous_dot] = STATE(5313), + [sym_access_call] = STATE(2897), + [sym_anonymous_function] = STATE(2897), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(559), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(2172), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [sym_integer] = ACTIONS(3316), + [sym_float] = ACTIONS(3316), + [anon_sym_DASH_GT] = ACTIONS(25), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_STAR_STAR] = ACTIONS(25), + [anon_sym_DOT] = ACTIONS(25), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_LT_DASH] = ACTIONS(25), + [anon_sym_BSLASH_BSLASH] = ACTIONS(25), + [anon_sym_PIPE_PIPE] = ACTIONS(25), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(25), + [anon_sym_AMP_AMP] = ACTIONS(25), + [anon_sym_AMP_AMP_AMP] = ACTIONS(25), + [anon_sym_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ] = ACTIONS(25), + [anon_sym_EQ_TILDE] = ACTIONS(25), + [anon_sym_EQ_EQ_EQ] = ACTIONS(25), + [anon_sym_BANG_EQ_EQ] = ACTIONS(25), + [anon_sym_LT] = ACTIONS(25), + [anon_sym_GT] = ACTIONS(25), + [anon_sym_LT_EQ] = ACTIONS(25), + [anon_sym_GT_EQ] = ACTIONS(25), + [anon_sym_PIPE_GT] = ACTIONS(25), + [anon_sym_LT_LT_LT] = ACTIONS(25), + [anon_sym_GT_GT_GT] = ACTIONS(25), + [anon_sym_LT_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT_GT] = ACTIONS(25), + [anon_sym_LT_TILDE] = ACTIONS(25), + [anon_sym_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_TILDE_GT] = ACTIONS(25), + [anon_sym_LT_PIPE_GT] = ACTIONS(25), + [anon_sym_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(25), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(25), + [anon_sym_DASH_DASH_DASH] = ACTIONS(25), + [anon_sym_DOT_DOT] = ACTIONS(25), + [anon_sym_LT_GT] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(2180), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_SLASH] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_CARET] = ACTIONS(2180), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2180), + [anon_sym_PERCENT] = ACTIONS(582), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(588), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(594), + [anon_sym_TILDE] = ACTIONS(891), + [anon_sym_not] = ACTIONS(2180), + [anon_sym_when] = ACTIONS(25), + [anon_sym_or] = ACTIONS(25), + [anon_sym_and] = ACTIONS(25), + [anon_sym_in] = ACTIONS(25), + [anon_sym_CARET_CARET] = ACTIONS(25), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_nil] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(609), + [sym_char] = ACTIONS(3316), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(613), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(895), + [sym__not_in] = ACTIONS(61), + }, + [1210] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_RBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1211] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_RBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_do] = ACTIONS(3324), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1212] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_RBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1213] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_RPAREN] = ACTIONS(3330), + [aux_sym_identifier_token1] = ACTIONS(3330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [sym_unused_identifier] = ACTIONS(3330), + [anon_sym___MODULE__] = ACTIONS(3330), + [anon_sym___DIR__] = ACTIONS(3330), + [anon_sym___ENV__] = ACTIONS(3330), + [anon_sym___CALLER__] = ACTIONS(3330), + [anon_sym___STACKTRACE__] = ACTIONS(3330), + [sym__alias_single] = ACTIONS(3330), + [sym__alias_multi] = ACTIONS(3330), + [sym_integer] = ACTIONS(3330), + [sym_float] = ACTIONS(3330), + [sym__atom_word_literal] = ACTIONS(3330), + [anon_sym_DASH_GT] = ACTIONS(3330), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3330), + [anon_sym_STAR_STAR] = ACTIONS(3330), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_EQ_TILDE] = ACTIONS(3330), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_PIPE_GT] = ACTIONS(3330), + [anon_sym_LT_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_LT_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_PIPE_GT] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3330), + [anon_sym_DOT_DOT] = ACTIONS(3330), + [anon_sym_LT_GT] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_RBRACK] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_not] = ACTIONS(3330), + [anon_sym_when] = ACTIONS(3330), + [anon_sym_EQ_GT] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [anon_sym_and] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_CARET_CARET] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3330), + [anon_sym_false] = ACTIONS(3330), + [anon_sym_nil] = ACTIONS(3330), + [anon_sym_after] = ACTIONS(3330), + [anon_sym_catch] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_end] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_rescue] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [sym_char] = ACTIONS(3330), + [anon_sym_LPAREN2] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3332), + [sym__atom_start] = ACTIONS(3332), + [sym__newline_before_do] = ACTIONS(3332), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3332), + [sym__not_in] = ACTIONS(3332), + }, + [1214] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1215] = { + [ts_builtin_sym_end] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1216] = { + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_do] = ACTIONS(3324), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1217] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_RBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1218] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_RBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1219] = { + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1220] = { + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1221] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_RPAREN] = ACTIONS(3338), + [aux_sym_identifier_token1] = ACTIONS(3338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [sym_unused_identifier] = ACTIONS(3338), + [anon_sym___MODULE__] = ACTIONS(3338), + [anon_sym___DIR__] = ACTIONS(3338), + [anon_sym___ENV__] = ACTIONS(3338), + [anon_sym___CALLER__] = ACTIONS(3338), + [anon_sym___STACKTRACE__] = ACTIONS(3338), + [sym__alias_single] = ACTIONS(3338), + [sym__alias_multi] = ACTIONS(3338), + [sym_integer] = ACTIONS(3338), + [sym_float] = ACTIONS(3338), + [sym__atom_word_literal] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3338), + [anon_sym_STAR_STAR] = ACTIONS(3338), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_EQ_TILDE] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_PIPE_GT] = ACTIONS(3338), + [anon_sym_LT_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_LT_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_PIPE_GT] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_LT_GT] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_RBRACK] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [anon_sym_and] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_nil] = ACTIONS(3338), + [anon_sym_after] = ACTIONS(3338), + [anon_sym_catch] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_end] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_rescue] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [sym_char] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3340), + [sym__atom_start] = ACTIONS(3340), + [sym__newline_before_do] = ACTIONS(3340), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3340), + [sym__not_in] = ACTIONS(3340), + }, + [1222] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [aux_sym_identifier_token1] = ACTIONS(3342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [sym_unused_identifier] = ACTIONS(3342), + [anon_sym___MODULE__] = ACTIONS(3342), + [anon_sym___DIR__] = ACTIONS(3342), + [anon_sym___ENV__] = ACTIONS(3342), + [anon_sym___CALLER__] = ACTIONS(3342), + [anon_sym___STACKTRACE__] = ACTIONS(3342), + [sym__alias_single] = ACTIONS(3342), + [sym__alias_multi] = ACTIONS(3342), + [sym_integer] = ACTIONS(3342), + [sym_float] = ACTIONS(3342), + [sym__atom_word_literal] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3342), + [anon_sym_STAR_STAR] = ACTIONS(3342), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(3342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_PIPE_GT] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_LT_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_PIPE_GT] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3342), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_LT_GT] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_when] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [anon_sym_and] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_CARET_CARET] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3342), + [anon_sym_false] = ACTIONS(3342), + [anon_sym_nil] = ACTIONS(3342), + [anon_sym_after] = ACTIONS(3342), + [anon_sym_catch] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_end] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_rescue] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [sym_char] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3344), + [sym__atom_start] = ACTIONS(3344), + [sym__newline_before_do] = ACTIONS(3344), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3344), + [sym__not_in] = ACTIONS(3344), + }, + [1223] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [aux_sym_identifier_token1] = ACTIONS(3346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [sym_unused_identifier] = ACTIONS(3346), + [anon_sym___MODULE__] = ACTIONS(3346), + [anon_sym___DIR__] = ACTIONS(3346), + [anon_sym___ENV__] = ACTIONS(3346), + [anon_sym___CALLER__] = ACTIONS(3346), + [anon_sym___STACKTRACE__] = ACTIONS(3346), + [sym__alias_single] = ACTIONS(3346), + [sym__alias_multi] = ACTIONS(3346), + [sym_integer] = ACTIONS(3346), + [sym_float] = ACTIONS(3346), + [sym__atom_word_literal] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3346), + [anon_sym_STAR_STAR] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_EQ_TILDE] = ACTIONS(3346), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_PIPE_GT] = ACTIONS(3346), + [anon_sym_LT_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_LT_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_PIPE_GT] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_LT_GT] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_not] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_EQ_GT] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [anon_sym_and] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_CARET_CARET] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_nil] = ACTIONS(3346), + [anon_sym_after] = ACTIONS(3346), + [anon_sym_catch] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_end] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_rescue] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [sym_char] = ACTIONS(3346), + [anon_sym_LPAREN2] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3348), + [sym__atom_start] = ACTIONS(3348), + [sym__newline_before_do] = ACTIONS(3348), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3348), + [sym__not_in] = ACTIONS(3348), + }, + [1224] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_RBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1225] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_RBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1226] = { + [ts_builtin_sym_end] = ACTIONS(3320), + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1227] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1228] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1229] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_RBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1230] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [aux_sym_identifier_token1] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3354), + [sym_unused_identifier] = ACTIONS(3354), + [anon_sym___MODULE__] = ACTIONS(3354), + [anon_sym___DIR__] = ACTIONS(3354), + [anon_sym___ENV__] = ACTIONS(3354), + [anon_sym___CALLER__] = ACTIONS(3354), + [anon_sym___STACKTRACE__] = ACTIONS(3354), + [sym__alias_single] = ACTIONS(3354), + [sym__alias_multi] = ACTIONS(3354), + [sym_integer] = ACTIONS(3354), + [sym_float] = ACTIONS(3354), + [sym__atom_word_literal] = ACTIONS(3354), + [anon_sym_DASH_GT] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3354), + [anon_sym_STAR_STAR] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_EQ_TILDE] = ACTIONS(3354), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_PIPE_GT] = ACTIONS(3354), + [anon_sym_LT_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_LT_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_PIPE_GT] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_LT_GT] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3354), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_RBRACK] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_EQ_GT] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [anon_sym_and] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_CARET_CARET] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_nil] = ACTIONS(3354), + [anon_sym_after] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_end] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_rescue] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [sym_char] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3356), + [sym__atom_start] = ACTIONS(3356), + [sym__newline_before_do] = ACTIONS(3356), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3356), + [sym__not_in] = ACTIONS(3356), + }, + [1231] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_RPAREN] = ACTIONS(3358), + [aux_sym_identifier_token1] = ACTIONS(3358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [sym_unused_identifier] = ACTIONS(3358), + [anon_sym___MODULE__] = ACTIONS(3358), + [anon_sym___DIR__] = ACTIONS(3358), + [anon_sym___ENV__] = ACTIONS(3358), + [anon_sym___CALLER__] = ACTIONS(3358), + [anon_sym___STACKTRACE__] = ACTIONS(3358), + [sym__alias_single] = ACTIONS(3358), + [sym__alias_multi] = ACTIONS(3358), + [sym_integer] = ACTIONS(3358), + [sym_float] = ACTIONS(3358), + [sym__atom_word_literal] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3358), + [anon_sym_STAR_STAR] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_EQ_TILDE] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_PIPE_GT] = ACTIONS(3358), + [anon_sym_LT_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_LT_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_PIPE_GT] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3358), + [anon_sym_LT_GT] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_RBRACK] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [anon_sym_and] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_CARET_CARET] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_nil] = ACTIONS(3358), + [anon_sym_after] = ACTIONS(3358), + [anon_sym_catch] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_end] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_rescue] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [sym_char] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3360), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3360), + [sym__atom_start] = ACTIONS(3360), + [sym__newline_before_do] = ACTIONS(3360), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3360), + [sym__not_in] = ACTIONS(3360), + }, + [1232] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(3362), + [aux_sym_identifier_token1] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [sym_unused_identifier] = ACTIONS(3362), + [anon_sym___MODULE__] = ACTIONS(3362), + [anon_sym___DIR__] = ACTIONS(3362), + [anon_sym___ENV__] = ACTIONS(3362), + [anon_sym___CALLER__] = ACTIONS(3362), + [anon_sym___STACKTRACE__] = ACTIONS(3362), + [sym__alias_single] = ACTIONS(3362), + [sym__alias_multi] = ACTIONS(3362), + [sym_integer] = ACTIONS(3362), + [sym_float] = ACTIONS(3362), + [sym__atom_word_literal] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(3362), + [anon_sym_STAR_STAR] = ACTIONS(3362), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(3362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_PIPE_GT] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_LT_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_PIPE_GT] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3362), + [anon_sym_LT_GT] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3362), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_RBRACK] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_when] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [anon_sym_and] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [anon_sym_nil] = ACTIONS(3362), + [anon_sym_after] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_end] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_rescue] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [sym_char] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_LBRACK2] = ACTIONS(3364), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3364), + [sym__atom_start] = ACTIONS(3364), + [sym__newline_before_do] = ACTIONS(3364), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3364), + [sym__not_in] = ACTIONS(3364), + }, + [1233] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_RBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1234] = { + [ts_builtin_sym_end] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_do] = ACTIONS(3324), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1235] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_RBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1236] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_RBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1237] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1238] = { + [ts_builtin_sym_end] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [aux_sym_identifier_token1] = ACTIONS(3338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [sym_unused_identifier] = ACTIONS(3338), + [anon_sym___MODULE__] = ACTIONS(3338), + [anon_sym___DIR__] = ACTIONS(3338), + [anon_sym___ENV__] = ACTIONS(3338), + [anon_sym___CALLER__] = ACTIONS(3338), + [anon_sym___STACKTRACE__] = ACTIONS(3338), + [sym__alias_single] = ACTIONS(3338), + [sym__alias_multi] = ACTIONS(3338), + [sym_integer] = ACTIONS(3338), + [sym_float] = ACTIONS(3338), + [sym__atom_word_literal] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3338), + [anon_sym_STAR_STAR] = ACTIONS(3338), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_EQ_TILDE] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_PIPE_GT] = ACTIONS(3338), + [anon_sym_LT_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_LT_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_PIPE_GT] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_LT_GT] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [anon_sym_and] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_nil] = ACTIONS(3338), + [anon_sym_after] = ACTIONS(3338), + [anon_sym_catch] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_end] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_rescue] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [sym_char] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3340), + [sym__atom_start] = ACTIONS(3340), + [sym__newline_before_do] = ACTIONS(3340), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3340), + [sym__not_in] = ACTIONS(3340), + }, + [1239] = { + [ts_builtin_sym_end] = ACTIONS(3320), + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1240] = { + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1241] = { + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1242] = { + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1243] = { + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1244] = { + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1245] = { + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1246] = { + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(3362), + [aux_sym_identifier_token1] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [sym_unused_identifier] = ACTIONS(3362), + [anon_sym___MODULE__] = ACTIONS(3362), + [anon_sym___DIR__] = ACTIONS(3362), + [anon_sym___ENV__] = ACTIONS(3362), + [anon_sym___CALLER__] = ACTIONS(3362), + [anon_sym___STACKTRACE__] = ACTIONS(3362), + [sym__alias_single] = ACTIONS(3362), + [sym__alias_multi] = ACTIONS(3362), + [sym_integer] = ACTIONS(3362), + [sym_float] = ACTIONS(3362), + [sym__atom_word_literal] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(3362), + [anon_sym_STAR_STAR] = ACTIONS(3362), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(3362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_PIPE_GT] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_LT_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_PIPE_GT] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3362), + [anon_sym_LT_GT] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3362), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_when] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [anon_sym_and] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [anon_sym_nil] = ACTIONS(3362), + [anon_sym_after] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_end] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_rescue] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [sym_char] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_LBRACK2] = ACTIONS(3364), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3364), + [sym__atom_start] = ACTIONS(3364), + [sym__newline_before_do] = ACTIONS(3364), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3364), + [sym__not_in] = ACTIONS(3364), + }, + [1247] = { + [ts_builtin_sym_end] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1248] = { + [ts_builtin_sym_end] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1249] = { + [anon_sym_LF] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_RPAREN] = ACTIONS(3358), + [aux_sym_identifier_token1] = ACTIONS(3358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [sym_unused_identifier] = ACTIONS(3358), + [anon_sym___MODULE__] = ACTIONS(3358), + [anon_sym___DIR__] = ACTIONS(3358), + [anon_sym___ENV__] = ACTIONS(3358), + [anon_sym___CALLER__] = ACTIONS(3358), + [anon_sym___STACKTRACE__] = ACTIONS(3358), + [sym__alias_single] = ACTIONS(3358), + [sym__alias_multi] = ACTIONS(3358), + [sym_integer] = ACTIONS(3358), + [sym_float] = ACTIONS(3358), + [sym__atom_word_literal] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3358), + [anon_sym_STAR_STAR] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_EQ_TILDE] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_PIPE_GT] = ACTIONS(3358), + [anon_sym_LT_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_LT_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_PIPE_GT] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3358), + [anon_sym_LT_GT] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [anon_sym_and] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_CARET_CARET] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_nil] = ACTIONS(3358), + [anon_sym_after] = ACTIONS(3358), + [anon_sym_catch] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_end] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_rescue] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [sym_char] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3360), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3360), + [sym__atom_start] = ACTIONS(3360), + [sym__newline_before_do] = ACTIONS(3360), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3360), + [sym__not_in] = ACTIONS(3360), + }, + [1250] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_do] = ACTIONS(3324), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1251] = { + [ts_builtin_sym_end] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1252] = { + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1253] = { + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1254] = { + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_RPAREN] = ACTIONS(3354), + [aux_sym_identifier_token1] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3354), + [sym_unused_identifier] = ACTIONS(3354), + [anon_sym___MODULE__] = ACTIONS(3354), + [anon_sym___DIR__] = ACTIONS(3354), + [anon_sym___ENV__] = ACTIONS(3354), + [anon_sym___CALLER__] = ACTIONS(3354), + [anon_sym___STACKTRACE__] = ACTIONS(3354), + [sym__alias_single] = ACTIONS(3354), + [sym__alias_multi] = ACTIONS(3354), + [sym_integer] = ACTIONS(3354), + [sym_float] = ACTIONS(3354), + [sym__atom_word_literal] = ACTIONS(3354), + [anon_sym_DASH_GT] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3354), + [anon_sym_STAR_STAR] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_EQ_TILDE] = ACTIONS(3354), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_PIPE_GT] = ACTIONS(3354), + [anon_sym_LT_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_LT_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_PIPE_GT] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_LT_GT] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3354), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_EQ_GT] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [anon_sym_and] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_CARET_CARET] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_nil] = ACTIONS(3354), + [anon_sym_after] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_end] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_rescue] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [sym_char] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3356), + [sym__atom_start] = ACTIONS(3356), + [sym__newline_before_do] = ACTIONS(3356), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3356), + [sym__not_in] = ACTIONS(3356), + }, + [1255] = { + [ts_builtin_sym_end] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1256] = { + [ts_builtin_sym_end] = ACTIONS(3320), + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1257] = { + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1258] = { + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1259] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1260] = { + [ts_builtin_sym_end] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1261] = { + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1262] = { + [ts_builtin_sym_end] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1263] = { + [ts_builtin_sym_end] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1264] = { + [ts_builtin_sym_end] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [aux_sym_identifier_token1] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3354), + [sym_unused_identifier] = ACTIONS(3354), + [anon_sym___MODULE__] = ACTIONS(3354), + [anon_sym___DIR__] = ACTIONS(3354), + [anon_sym___ENV__] = ACTIONS(3354), + [anon_sym___CALLER__] = ACTIONS(3354), + [anon_sym___STACKTRACE__] = ACTIONS(3354), + [sym__alias_single] = ACTIONS(3354), + [sym__alias_multi] = ACTIONS(3354), + [sym_integer] = ACTIONS(3354), + [sym_float] = ACTIONS(3354), + [sym__atom_word_literal] = ACTIONS(3354), + [anon_sym_DASH_GT] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3354), + [anon_sym_STAR_STAR] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_EQ_TILDE] = ACTIONS(3354), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_PIPE_GT] = ACTIONS(3354), + [anon_sym_LT_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_LT_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_PIPE_GT] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_LT_GT] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3354), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_EQ_GT] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [anon_sym_and] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_CARET_CARET] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_nil] = ACTIONS(3354), + [anon_sym_after] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_end] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_rescue] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [sym_char] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3356), + [sym__atom_start] = ACTIONS(3356), + [sym__newline_before_do] = ACTIONS(3356), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3356), + [sym__not_in] = ACTIONS(3356), + }, + [1265] = { + [ts_builtin_sym_end] = ACTIONS(3360), + [anon_sym_LF] = ACTIONS(3360), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [aux_sym_identifier_token1] = ACTIONS(3358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [sym_unused_identifier] = ACTIONS(3358), + [anon_sym___MODULE__] = ACTIONS(3358), + [anon_sym___DIR__] = ACTIONS(3358), + [anon_sym___ENV__] = ACTIONS(3358), + [anon_sym___CALLER__] = ACTIONS(3358), + [anon_sym___STACKTRACE__] = ACTIONS(3358), + [sym__alias_single] = ACTIONS(3358), + [sym__alias_multi] = ACTIONS(3358), + [sym_integer] = ACTIONS(3358), + [sym_float] = ACTIONS(3358), + [sym__atom_word_literal] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3358), + [anon_sym_STAR_STAR] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_EQ_TILDE] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_PIPE_GT] = ACTIONS(3358), + [anon_sym_LT_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_LT_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_PIPE_GT] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3358), + [anon_sym_LT_GT] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [anon_sym_and] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_CARET_CARET] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_nil] = ACTIONS(3358), + [anon_sym_after] = ACTIONS(3358), + [anon_sym_catch] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_end] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_rescue] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [sym_char] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3360), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3360), + [sym__atom_start] = ACTIONS(3360), + [sym__newline_before_do] = ACTIONS(3360), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3360), + [sym__not_in] = ACTIONS(3360), + }, + [1266] = { + [ts_builtin_sym_end] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [aux_sym_identifier_token1] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [sym_unused_identifier] = ACTIONS(3362), + [anon_sym___MODULE__] = ACTIONS(3362), + [anon_sym___DIR__] = ACTIONS(3362), + [anon_sym___ENV__] = ACTIONS(3362), + [anon_sym___CALLER__] = ACTIONS(3362), + [anon_sym___STACKTRACE__] = ACTIONS(3362), + [sym__alias_single] = ACTIONS(3362), + [sym__alias_multi] = ACTIONS(3362), + [sym_integer] = ACTIONS(3362), + [sym_float] = ACTIONS(3362), + [sym__atom_word_literal] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(3362), + [anon_sym_STAR_STAR] = ACTIONS(3362), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(3362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_PIPE_GT] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_LT_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_PIPE_GT] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3362), + [anon_sym_LT_GT] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3362), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_when] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [anon_sym_and] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [anon_sym_nil] = ACTIONS(3362), + [anon_sym_after] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_end] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_rescue] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [sym_char] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_LBRACK2] = ACTIONS(3364), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3364), + [sym__atom_start] = ACTIONS(3364), + [sym__newline_before_do] = ACTIONS(3364), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3364), + [sym__not_in] = ACTIONS(3364), + }, + [1267] = { + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_RPAREN] = ACTIONS(3330), + [aux_sym_identifier_token1] = ACTIONS(3330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [sym_unused_identifier] = ACTIONS(3330), + [anon_sym___MODULE__] = ACTIONS(3330), + [anon_sym___DIR__] = ACTIONS(3330), + [anon_sym___ENV__] = ACTIONS(3330), + [anon_sym___CALLER__] = ACTIONS(3330), + [anon_sym___STACKTRACE__] = ACTIONS(3330), + [sym__alias_single] = ACTIONS(3330), + [sym__alias_multi] = ACTIONS(3330), + [sym_integer] = ACTIONS(3330), + [sym_float] = ACTIONS(3330), + [sym__atom_word_literal] = ACTIONS(3330), + [anon_sym_DASH_GT] = ACTIONS(3330), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3330), + [anon_sym_STAR_STAR] = ACTIONS(3330), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_EQ_TILDE] = ACTIONS(3330), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_PIPE_GT] = ACTIONS(3330), + [anon_sym_LT_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_LT_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_PIPE_GT] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3330), + [anon_sym_DOT_DOT] = ACTIONS(3330), + [anon_sym_LT_GT] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_not] = ACTIONS(3330), + [anon_sym_when] = ACTIONS(3330), + [anon_sym_EQ_GT] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [anon_sym_and] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_CARET_CARET] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3330), + [anon_sym_false] = ACTIONS(3330), + [anon_sym_nil] = ACTIONS(3330), + [anon_sym_after] = ACTIONS(3330), + [anon_sym_catch] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_end] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_rescue] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [sym_char] = ACTIONS(3330), + [anon_sym_LPAREN2] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3332), + [sym__atom_start] = ACTIONS(3332), + [sym__newline_before_do] = ACTIONS(3332), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3332), + [sym__not_in] = ACTIONS(3332), + }, + [1268] = { + [anon_sym_LF] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_RPAREN] = ACTIONS(3346), + [aux_sym_identifier_token1] = ACTIONS(3346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [sym_unused_identifier] = ACTIONS(3346), + [anon_sym___MODULE__] = ACTIONS(3346), + [anon_sym___DIR__] = ACTIONS(3346), + [anon_sym___ENV__] = ACTIONS(3346), + [anon_sym___CALLER__] = ACTIONS(3346), + [anon_sym___STACKTRACE__] = ACTIONS(3346), + [sym__alias_single] = ACTIONS(3346), + [sym__alias_multi] = ACTIONS(3346), + [sym_integer] = ACTIONS(3346), + [sym_float] = ACTIONS(3346), + [sym__atom_word_literal] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3346), + [anon_sym_STAR_STAR] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_EQ_TILDE] = ACTIONS(3346), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_PIPE_GT] = ACTIONS(3346), + [anon_sym_LT_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_LT_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_PIPE_GT] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_LT_GT] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_not] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_EQ_GT] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [anon_sym_and] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_CARET_CARET] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_nil] = ACTIONS(3346), + [anon_sym_after] = ACTIONS(3346), + [anon_sym_catch] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_end] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_rescue] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [sym_char] = ACTIONS(3346), + [anon_sym_LPAREN2] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3348), + [sym__atom_start] = ACTIONS(3348), + [sym__newline_before_do] = ACTIONS(3348), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3348), + [sym__not_in] = ACTIONS(3348), + }, + [1269] = { + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [aux_sym_identifier_token1] = ACTIONS(3342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [sym_unused_identifier] = ACTIONS(3342), + [anon_sym___MODULE__] = ACTIONS(3342), + [anon_sym___DIR__] = ACTIONS(3342), + [anon_sym___ENV__] = ACTIONS(3342), + [anon_sym___CALLER__] = ACTIONS(3342), + [anon_sym___STACKTRACE__] = ACTIONS(3342), + [sym__alias_single] = ACTIONS(3342), + [sym__alias_multi] = ACTIONS(3342), + [sym_integer] = ACTIONS(3342), + [sym_float] = ACTIONS(3342), + [sym__atom_word_literal] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3342), + [anon_sym_STAR_STAR] = ACTIONS(3342), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(3342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_PIPE_GT] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_LT_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_PIPE_GT] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3342), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_LT_GT] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_when] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [anon_sym_and] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_CARET_CARET] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3342), + [anon_sym_false] = ACTIONS(3342), + [anon_sym_nil] = ACTIONS(3342), + [anon_sym_after] = ACTIONS(3342), + [anon_sym_catch] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_end] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_rescue] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [sym_char] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3344), + [sym__atom_start] = ACTIONS(3344), + [sym__newline_before_do] = ACTIONS(3344), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3344), + [sym__not_in] = ACTIONS(3344), + }, + [1270] = { + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_RPAREN] = ACTIONS(3338), + [aux_sym_identifier_token1] = ACTIONS(3338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [sym_unused_identifier] = ACTIONS(3338), + [anon_sym___MODULE__] = ACTIONS(3338), + [anon_sym___DIR__] = ACTIONS(3338), + [anon_sym___ENV__] = ACTIONS(3338), + [anon_sym___CALLER__] = ACTIONS(3338), + [anon_sym___STACKTRACE__] = ACTIONS(3338), + [sym__alias_single] = ACTIONS(3338), + [sym__alias_multi] = ACTIONS(3338), + [sym_integer] = ACTIONS(3338), + [sym_float] = ACTIONS(3338), + [sym__atom_word_literal] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3338), + [anon_sym_STAR_STAR] = ACTIONS(3338), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_EQ_TILDE] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_PIPE_GT] = ACTIONS(3338), + [anon_sym_LT_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_LT_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_PIPE_GT] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_LT_GT] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [anon_sym_and] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_nil] = ACTIONS(3338), + [anon_sym_after] = ACTIONS(3338), + [anon_sym_catch] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_end] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_rescue] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [sym_char] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3340), + [sym__atom_start] = ACTIONS(3340), + [sym__newline_before_do] = ACTIONS(3340), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3340), + [sym__not_in] = ACTIONS(3340), + }, + [1271] = { + [ts_builtin_sym_end] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1272] = { + [ts_builtin_sym_end] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1273] = { + [ts_builtin_sym_end] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_identifier_token1] = ACTIONS(3342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [sym_unused_identifier] = ACTIONS(3342), + [anon_sym___MODULE__] = ACTIONS(3342), + [anon_sym___DIR__] = ACTIONS(3342), + [anon_sym___ENV__] = ACTIONS(3342), + [anon_sym___CALLER__] = ACTIONS(3342), + [anon_sym___STACKTRACE__] = ACTIONS(3342), + [sym__alias_single] = ACTIONS(3342), + [sym__alias_multi] = ACTIONS(3342), + [sym_integer] = ACTIONS(3342), + [sym_float] = ACTIONS(3342), + [sym__atom_word_literal] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3342), + [anon_sym_STAR_STAR] = ACTIONS(3342), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(3342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_PIPE_GT] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_LT_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_PIPE_GT] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3342), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_LT_GT] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_when] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [anon_sym_and] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_CARET_CARET] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3342), + [anon_sym_false] = ACTIONS(3342), + [anon_sym_nil] = ACTIONS(3342), + [anon_sym_after] = ACTIONS(3342), + [anon_sym_catch] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_end] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_rescue] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [sym_char] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3344), + [sym__atom_start] = ACTIONS(3344), + [sym__newline_before_do] = ACTIONS(3344), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3344), + [sym__not_in] = ACTIONS(3344), + }, + [1274] = { + [ts_builtin_sym_end] = ACTIONS(3324), + [anon_sym_LF] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1275] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1276] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_RBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1277] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_RBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1278] = { + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_RPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1279] = { + [ts_builtin_sym_end] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [aux_sym_identifier_token1] = ACTIONS(3330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [sym_unused_identifier] = ACTIONS(3330), + [anon_sym___MODULE__] = ACTIONS(3330), + [anon_sym___DIR__] = ACTIONS(3330), + [anon_sym___ENV__] = ACTIONS(3330), + [anon_sym___CALLER__] = ACTIONS(3330), + [anon_sym___STACKTRACE__] = ACTIONS(3330), + [sym__alias_single] = ACTIONS(3330), + [sym__alias_multi] = ACTIONS(3330), + [sym_integer] = ACTIONS(3330), + [sym_float] = ACTIONS(3330), + [sym__atom_word_literal] = ACTIONS(3330), + [anon_sym_DASH_GT] = ACTIONS(3330), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3330), + [anon_sym_STAR_STAR] = ACTIONS(3330), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_EQ_TILDE] = ACTIONS(3330), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_PIPE_GT] = ACTIONS(3330), + [anon_sym_LT_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_LT_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_PIPE_GT] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3330), + [anon_sym_DOT_DOT] = ACTIONS(3330), + [anon_sym_LT_GT] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_not] = ACTIONS(3330), + [anon_sym_when] = ACTIONS(3330), + [anon_sym_EQ_GT] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [anon_sym_and] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_CARET_CARET] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3330), + [anon_sym_false] = ACTIONS(3330), + [anon_sym_nil] = ACTIONS(3330), + [anon_sym_after] = ACTIONS(3330), + [anon_sym_catch] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_end] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_rescue] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [sym_char] = ACTIONS(3330), + [anon_sym_LPAREN2] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3332), + [sym__atom_start] = ACTIONS(3332), + [sym__newline_before_do] = ACTIONS(3332), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3332), + [sym__not_in] = ACTIONS(3332), + }, + [1280] = { + [ts_builtin_sym_end] = ACTIONS(3348), + [anon_sym_LF] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [aux_sym_identifier_token1] = ACTIONS(3346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [sym_unused_identifier] = ACTIONS(3346), + [anon_sym___MODULE__] = ACTIONS(3346), + [anon_sym___DIR__] = ACTIONS(3346), + [anon_sym___ENV__] = ACTIONS(3346), + [anon_sym___CALLER__] = ACTIONS(3346), + [anon_sym___STACKTRACE__] = ACTIONS(3346), + [sym__alias_single] = ACTIONS(3346), + [sym__alias_multi] = ACTIONS(3346), + [sym_integer] = ACTIONS(3346), + [sym_float] = ACTIONS(3346), + [sym__atom_word_literal] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3346), + [anon_sym_STAR_STAR] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_EQ_TILDE] = ACTIONS(3346), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_PIPE_GT] = ACTIONS(3346), + [anon_sym_LT_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_LT_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_PIPE_GT] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_LT_GT] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_not] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_EQ_GT] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [anon_sym_and] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_CARET_CARET] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_nil] = ACTIONS(3346), + [anon_sym_after] = ACTIONS(3346), + [anon_sym_catch] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_end] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_rescue] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [sym_char] = ACTIONS(3346), + [anon_sym_LPAREN2] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3348), + [sym__atom_start] = ACTIONS(3348), + [sym__newline_before_do] = ACTIONS(3348), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3348), + [sym__not_in] = ACTIONS(3348), + }, + [1281] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3346), + [aux_sym_identifier_token1] = ACTIONS(3346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [sym_unused_identifier] = ACTIONS(3346), + [anon_sym___MODULE__] = ACTIONS(3346), + [anon_sym___DIR__] = ACTIONS(3346), + [anon_sym___ENV__] = ACTIONS(3346), + [anon_sym___CALLER__] = ACTIONS(3346), + [anon_sym___STACKTRACE__] = ACTIONS(3346), + [sym__alias_single] = ACTIONS(3346), + [sym__alias_multi] = ACTIONS(3346), + [sym_integer] = ACTIONS(3346), + [sym_float] = ACTIONS(3346), + [sym__atom_word_literal] = ACTIONS(3346), + [anon_sym_DASH_GT] = ACTIONS(3346), + [anon_sym_COLON_COLON] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3346), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(3346), + [anon_sym_STAR_STAR] = ACTIONS(3346), + [anon_sym_DOT] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3346), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_EQ_TILDE] = ACTIONS(3346), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_GT] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_PIPE_GT] = ACTIONS(3346), + [anon_sym_LT_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_LT_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE] = ACTIONS(3346), + [anon_sym_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_TILDE_GT] = ACTIONS(3346), + [anon_sym_LT_PIPE_GT] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3346), + [anon_sym_DOT_DOT] = ACTIONS(3346), + [anon_sym_LT_GT] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3346), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3346), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_not] = ACTIONS(3346), + [anon_sym_when] = ACTIONS(3346), + [anon_sym_EQ_GT] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3346), + [anon_sym_and] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3346), + [anon_sym_CARET_CARET] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_true] = ACTIONS(3346), + [anon_sym_false] = ACTIONS(3346), + [anon_sym_nil] = ACTIONS(3346), + [anon_sym_after] = ACTIONS(3346), + [anon_sym_catch] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_end] = ACTIONS(3346), + [anon_sym_fn] = ACTIONS(3346), + [anon_sym_rescue] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3346), + [sym_char] = ACTIONS(3346), + [anon_sym_LPAREN2] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3348), + [sym__atom_start] = ACTIONS(3348), + [sym__newline_before_do] = ACTIONS(3348), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3348), + [sym__not_in] = ACTIONS(3348), + }, + [1282] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1283] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3358), + [aux_sym_identifier_token1] = ACTIONS(3358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3358), + [sym_unused_identifier] = ACTIONS(3358), + [anon_sym___MODULE__] = ACTIONS(3358), + [anon_sym___DIR__] = ACTIONS(3358), + [anon_sym___ENV__] = ACTIONS(3358), + [anon_sym___CALLER__] = ACTIONS(3358), + [anon_sym___STACKTRACE__] = ACTIONS(3358), + [sym__alias_single] = ACTIONS(3358), + [sym__alias_multi] = ACTIONS(3358), + [sym_integer] = ACTIONS(3358), + [sym_float] = ACTIONS(3358), + [sym__atom_word_literal] = ACTIONS(3358), + [anon_sym_DASH_GT] = ACTIONS(3358), + [anon_sym_COLON_COLON] = ACTIONS(3358), + [anon_sym_PIPE] = ACTIONS(3358), + [anon_sym_AMP] = ACTIONS(3358), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3358), + [anon_sym_SLASH_SLASH] = ACTIONS(3358), + [anon_sym_STAR_STAR] = ACTIONS(3358), + [anon_sym_DOT] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_LT_DASH] = ACTIONS(3358), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3358), + [anon_sym_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3358), + [anon_sym_AMP_AMP] = ACTIONS(3358), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3358), + [anon_sym_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ] = ACTIONS(3358), + [anon_sym_EQ_TILDE] = ACTIONS(3358), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3358), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_GT] = ACTIONS(3358), + [anon_sym_LT_EQ] = ACTIONS(3358), + [anon_sym_GT_EQ] = ACTIONS(3358), + [anon_sym_PIPE_GT] = ACTIONS(3358), + [anon_sym_LT_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT_GT] = ACTIONS(3358), + [anon_sym_LT_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE] = ACTIONS(3358), + [anon_sym_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_TILDE_GT] = ACTIONS(3358), + [anon_sym_LT_PIPE_GT] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3358), + [anon_sym_DOT_DOT] = ACTIONS(3358), + [anon_sym_LT_GT] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_STAR] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_CARET] = ACTIONS(3358), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3358), + [anon_sym_PERCENT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3358), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_not] = ACTIONS(3358), + [anon_sym_when] = ACTIONS(3358), + [anon_sym_EQ_GT] = ACTIONS(3358), + [anon_sym_or] = ACTIONS(3358), + [anon_sym_and] = ACTIONS(3358), + [anon_sym_in] = ACTIONS(3358), + [anon_sym_CARET_CARET] = ACTIONS(3358), + [anon_sym_COMMA] = ACTIONS(3358), + [anon_sym_true] = ACTIONS(3358), + [anon_sym_false] = ACTIONS(3358), + [anon_sym_nil] = ACTIONS(3358), + [anon_sym_after] = ACTIONS(3358), + [anon_sym_catch] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_end] = ACTIONS(3358), + [anon_sym_fn] = ACTIONS(3358), + [anon_sym_rescue] = ACTIONS(3358), + [anon_sym_LT_LT] = ACTIONS(3358), + [anon_sym_GT_GT] = ACTIONS(3358), + [sym_char] = ACTIONS(3358), + [anon_sym_LPAREN2] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3360), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3360), + [sym__atom_start] = ACTIONS(3360), + [sym__newline_before_do] = ACTIONS(3360), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3360), + [sym__not_in] = ACTIONS(3360), + }, + [1284] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3322), + [aux_sym_identifier_token1] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [sym_unused_identifier] = ACTIONS(3322), + [anon_sym___MODULE__] = ACTIONS(3322), + [anon_sym___DIR__] = ACTIONS(3322), + [anon_sym___ENV__] = ACTIONS(3322), + [anon_sym___CALLER__] = ACTIONS(3322), + [anon_sym___STACKTRACE__] = ACTIONS(3322), + [sym__alias_single] = ACTIONS(3322), + [sym__alias_multi] = ACTIONS(3322), + [sym_integer] = ACTIONS(3322), + [sym_float] = ACTIONS(3322), + [sym__atom_word_literal] = ACTIONS(3322), + [anon_sym_DASH_GT] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3322), + [anon_sym_SLASH_SLASH] = ACTIONS(3322), + [anon_sym_STAR_STAR] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_EQ_TILDE] = ACTIONS(3322), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_PIPE_GT] = ACTIONS(3322), + [anon_sym_LT_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_LT_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE] = ACTIONS(3322), + [anon_sym_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_TILDE_GT] = ACTIONS(3322), + [anon_sym_LT_PIPE_GT] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3322), + [anon_sym_DOT_DOT] = ACTIONS(3322), + [anon_sym_LT_GT] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3322), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_when] = ACTIONS(3322), + [anon_sym_EQ_GT] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [anon_sym_and] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_true] = ACTIONS(3322), + [anon_sym_false] = ACTIONS(3322), + [anon_sym_nil] = ACTIONS(3322), + [anon_sym_after] = ACTIONS(3322), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_end] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_rescue] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [sym_char] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_LBRACK2] = ACTIONS(3324), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3324), + [sym__atom_start] = ACTIONS(3324), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3324), + [sym__not_in] = ACTIONS(3324), + }, + [1285] = { + [ts_builtin_sym_end] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1286] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__keyword_end] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1287] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__keyword_end] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1288] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3362), + [aux_sym_identifier_token1] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [sym_unused_identifier] = ACTIONS(3362), + [anon_sym___MODULE__] = ACTIONS(3362), + [anon_sym___DIR__] = ACTIONS(3362), + [anon_sym___ENV__] = ACTIONS(3362), + [anon_sym___CALLER__] = ACTIONS(3362), + [anon_sym___STACKTRACE__] = ACTIONS(3362), + [sym__alias_single] = ACTIONS(3362), + [sym__alias_multi] = ACTIONS(3362), + [sym_integer] = ACTIONS(3362), + [sym_float] = ACTIONS(3362), + [sym__atom_word_literal] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3362), + [anon_sym_SLASH_SLASH] = ACTIONS(3362), + [anon_sym_STAR_STAR] = ACTIONS(3362), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(3362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_PIPE_GT] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_LT_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE] = ACTIONS(3362), + [anon_sym_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_TILDE_GT] = ACTIONS(3362), + [anon_sym_LT_PIPE_GT] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3362), + [anon_sym_LT_GT] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE] = ACTIONS(3362), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3362), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_not] = ACTIONS(3362), + [anon_sym_when] = ACTIONS(3362), + [anon_sym_EQ_GT] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [anon_sym_and] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_CARET_CARET] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [anon_sym_nil] = ACTIONS(3362), + [anon_sym_after] = ACTIONS(3362), + [anon_sym_catch] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_end] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_rescue] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [sym_char] = ACTIONS(3362), + [anon_sym_LPAREN2] = ACTIONS(3364), + [anon_sym_LBRACK2] = ACTIONS(3364), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3364), + [sym__atom_start] = ACTIONS(3364), + [sym__newline_before_do] = ACTIONS(3364), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3364), + [sym__not_in] = ACTIONS(3364), + }, + [1289] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3338), + [aux_sym_identifier_token1] = ACTIONS(3338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3338), + [sym_unused_identifier] = ACTIONS(3338), + [anon_sym___MODULE__] = ACTIONS(3338), + [anon_sym___DIR__] = ACTIONS(3338), + [anon_sym___ENV__] = ACTIONS(3338), + [anon_sym___CALLER__] = ACTIONS(3338), + [anon_sym___STACKTRACE__] = ACTIONS(3338), + [sym__alias_single] = ACTIONS(3338), + [sym__alias_multi] = ACTIONS(3338), + [sym_integer] = ACTIONS(3338), + [sym_float] = ACTIONS(3338), + [sym__atom_word_literal] = ACTIONS(3338), + [anon_sym_DASH_GT] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_EQ] = ACTIONS(3338), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3338), + [anon_sym_SLASH_SLASH] = ACTIONS(3338), + [anon_sym_STAR_STAR] = ACTIONS(3338), + [anon_sym_DOT] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3338), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_EQ_TILDE] = ACTIONS(3338), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_GT] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_PIPE_GT] = ACTIONS(3338), + [anon_sym_LT_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_LT_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE] = ACTIONS(3338), + [anon_sym_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_TILDE_GT] = ACTIONS(3338), + [anon_sym_LT_PIPE_GT] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3338), + [anon_sym_DOT_DOT] = ACTIONS(3338), + [anon_sym_LT_GT] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3338), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3338), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_when] = ACTIONS(3338), + [anon_sym_EQ_GT] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3338), + [anon_sym_and] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3338), + [anon_sym_false] = ACTIONS(3338), + [anon_sym_nil] = ACTIONS(3338), + [anon_sym_after] = ACTIONS(3338), + [anon_sym_catch] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_end] = ACTIONS(3338), + [anon_sym_fn] = ACTIONS(3338), + [anon_sym_rescue] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3338), + [sym_char] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3340), + [sym__atom_start] = ACTIONS(3340), + [sym__newline_before_do] = ACTIONS(3340), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3340), + [sym__not_in] = ACTIONS(3340), + }, + [1290] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1291] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1292] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_identifier_token1] = ACTIONS(3342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3342), + [sym_unused_identifier] = ACTIONS(3342), + [anon_sym___MODULE__] = ACTIONS(3342), + [anon_sym___DIR__] = ACTIONS(3342), + [anon_sym___ENV__] = ACTIONS(3342), + [anon_sym___CALLER__] = ACTIONS(3342), + [anon_sym___STACKTRACE__] = ACTIONS(3342), + [sym__alias_single] = ACTIONS(3342), + [sym__alias_multi] = ACTIONS(3342), + [sym_integer] = ACTIONS(3342), + [sym_float] = ACTIONS(3342), + [sym__atom_word_literal] = ACTIONS(3342), + [anon_sym_DASH_GT] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3342), + [anon_sym_SLASH_SLASH] = ACTIONS(3342), + [anon_sym_STAR_STAR] = ACTIONS(3342), + [anon_sym_DOT] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3342), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(3342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_GT] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_PIPE_GT] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_LT_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE] = ACTIONS(3342), + [anon_sym_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_TILDE_GT] = ACTIONS(3342), + [anon_sym_LT_PIPE_GT] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3342), + [anon_sym_DOT_DOT] = ACTIONS(3342), + [anon_sym_LT_GT] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3342), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3342), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_when] = ACTIONS(3342), + [anon_sym_EQ_GT] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3342), + [anon_sym_and] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3342), + [anon_sym_CARET_CARET] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_true] = ACTIONS(3342), + [anon_sym_false] = ACTIONS(3342), + [anon_sym_nil] = ACTIONS(3342), + [anon_sym_after] = ACTIONS(3342), + [anon_sym_catch] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_end] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3342), + [anon_sym_rescue] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3342), + [sym_char] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3344), + [sym__atom_start] = ACTIONS(3344), + [sym__newline_before_do] = ACTIONS(3344), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3344), + [sym__not_in] = ACTIONS(3344), + }, + [1293] = { + [ts_builtin_sym_end] = ACTIONS(3320), + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1294] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3350), + [aux_sym_identifier_token1] = ACTIONS(3350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3350), + [sym_unused_identifier] = ACTIONS(3350), + [anon_sym___MODULE__] = ACTIONS(3350), + [anon_sym___DIR__] = ACTIONS(3350), + [anon_sym___ENV__] = ACTIONS(3350), + [anon_sym___CALLER__] = ACTIONS(3350), + [anon_sym___STACKTRACE__] = ACTIONS(3350), + [sym__alias_single] = ACTIONS(3350), + [sym__alias_multi] = ACTIONS(3350), + [sym_integer] = ACTIONS(3350), + [sym_float] = ACTIONS(3350), + [sym__atom_word_literal] = ACTIONS(3350), + [anon_sym_DASH_GT] = ACTIONS(3350), + [anon_sym_COLON_COLON] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3350), + [anon_sym_SLASH_SLASH] = ACTIONS(3350), + [anon_sym_STAR_STAR] = ACTIONS(3350), + [anon_sym_DOT] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3350), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(3350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_GT] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_PIPE_GT] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_LT_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE] = ACTIONS(3350), + [anon_sym_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_TILDE_GT] = ACTIONS(3350), + [anon_sym_LT_PIPE_GT] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3350), + [anon_sym_DOT_DOT] = ACTIONS(3350), + [anon_sym_LT_GT] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3350), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3350), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_not] = ACTIONS(3350), + [anon_sym_when] = ACTIONS(3350), + [anon_sym_EQ_GT] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3350), + [anon_sym_and] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3350), + [anon_sym_CARET_CARET] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_nil] = ACTIONS(3350), + [anon_sym_after] = ACTIONS(3350), + [anon_sym_catch] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_end] = ACTIONS(3350), + [anon_sym_fn] = ACTIONS(3350), + [anon_sym_rescue] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3350), + [sym_char] = ACTIONS(3350), + [anon_sym_LPAREN2] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3352), + [sym__atom_start] = ACTIONS(3352), + [sym__newline_before_do] = ACTIONS(3352), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3352), + [sym__not_in] = ACTIONS(3352), + }, + [1295] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1296] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3354), + [aux_sym_identifier_token1] = ACTIONS(3354), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3354), + [sym_unused_identifier] = ACTIONS(3354), + [anon_sym___MODULE__] = ACTIONS(3354), + [anon_sym___DIR__] = ACTIONS(3354), + [anon_sym___ENV__] = ACTIONS(3354), + [anon_sym___CALLER__] = ACTIONS(3354), + [anon_sym___STACKTRACE__] = ACTIONS(3354), + [sym__alias_single] = ACTIONS(3354), + [sym__alias_multi] = ACTIONS(3354), + [sym_integer] = ACTIONS(3354), + [sym_float] = ACTIONS(3354), + [sym__atom_word_literal] = ACTIONS(3354), + [anon_sym_DASH_GT] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3354), + [anon_sym_SLASH_SLASH] = ACTIONS(3354), + [anon_sym_STAR_STAR] = ACTIONS(3354), + [anon_sym_DOT] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3354), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_EQ_TILDE] = ACTIONS(3354), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_GT] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_PIPE_GT] = ACTIONS(3354), + [anon_sym_LT_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_LT_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE] = ACTIONS(3354), + [anon_sym_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_TILDE_GT] = ACTIONS(3354), + [anon_sym_LT_PIPE_GT] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3354), + [anon_sym_DOT_DOT] = ACTIONS(3354), + [anon_sym_LT_GT] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3354), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3354), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_not] = ACTIONS(3354), + [anon_sym_when] = ACTIONS(3354), + [anon_sym_EQ_GT] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3354), + [anon_sym_and] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3354), + [anon_sym_CARET_CARET] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_true] = ACTIONS(3354), + [anon_sym_false] = ACTIONS(3354), + [anon_sym_nil] = ACTIONS(3354), + [anon_sym_after] = ACTIONS(3354), + [anon_sym_catch] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_end] = ACTIONS(3354), + [anon_sym_fn] = ACTIONS(3354), + [anon_sym_rescue] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT] = ACTIONS(3354), + [sym_char] = ACTIONS(3354), + [anon_sym_LPAREN2] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3356), + [sym__atom_start] = ACTIONS(3356), + [sym__newline_before_do] = ACTIONS(3356), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3356), + [sym__not_in] = ACTIONS(3356), + }, + [1297] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1298] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_do] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1299] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_do] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1300] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3330), + [aux_sym_identifier_token1] = ACTIONS(3330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3330), + [sym_unused_identifier] = ACTIONS(3330), + [anon_sym___MODULE__] = ACTIONS(3330), + [anon_sym___DIR__] = ACTIONS(3330), + [anon_sym___ENV__] = ACTIONS(3330), + [anon_sym___CALLER__] = ACTIONS(3330), + [anon_sym___STACKTRACE__] = ACTIONS(3330), + [sym__alias_single] = ACTIONS(3330), + [sym__alias_multi] = ACTIONS(3330), + [sym_integer] = ACTIONS(3330), + [sym_float] = ACTIONS(3330), + [sym__atom_word_literal] = ACTIONS(3330), + [anon_sym_DASH_GT] = ACTIONS(3330), + [anon_sym_COLON_COLON] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3330), + [anon_sym_EQ] = ACTIONS(3330), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3330), + [anon_sym_SLASH_SLASH] = ACTIONS(3330), + [anon_sym_STAR_STAR] = ACTIONS(3330), + [anon_sym_DOT] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3330), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_EQ_TILDE] = ACTIONS(3330), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_GT] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_PIPE_GT] = ACTIONS(3330), + [anon_sym_LT_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_LT_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE] = ACTIONS(3330), + [anon_sym_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_TILDE_GT] = ACTIONS(3330), + [anon_sym_LT_PIPE_GT] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3330), + [anon_sym_DOT_DOT] = ACTIONS(3330), + [anon_sym_LT_GT] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3330), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3330), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_not] = ACTIONS(3330), + [anon_sym_when] = ACTIONS(3330), + [anon_sym_EQ_GT] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3330), + [anon_sym_and] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3330), + [anon_sym_CARET_CARET] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_true] = ACTIONS(3330), + [anon_sym_false] = ACTIONS(3330), + [anon_sym_nil] = ACTIONS(3330), + [anon_sym_after] = ACTIONS(3330), + [anon_sym_catch] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_end] = ACTIONS(3330), + [anon_sym_fn] = ACTIONS(3330), + [anon_sym_rescue] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3330), + [sym_char] = ACTIONS(3330), + [anon_sym_LPAREN2] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3332), + [sym__atom_start] = ACTIONS(3332), + [sym__newline_before_do] = ACTIONS(3332), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3332), + [sym__not_in] = ACTIONS(3332), + }, + [1301] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3334), + [aux_sym_identifier_token1] = ACTIONS(3334), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3334), + [sym_unused_identifier] = ACTIONS(3334), + [anon_sym___MODULE__] = ACTIONS(3334), + [anon_sym___DIR__] = ACTIONS(3334), + [anon_sym___ENV__] = ACTIONS(3334), + [anon_sym___CALLER__] = ACTIONS(3334), + [anon_sym___STACKTRACE__] = ACTIONS(3334), + [sym__alias_single] = ACTIONS(3334), + [sym__alias_multi] = ACTIONS(3334), + [sym_integer] = ACTIONS(3334), + [sym_float] = ACTIONS(3334), + [sym__atom_word_literal] = ACTIONS(3334), + [anon_sym_DASH_GT] = ACTIONS(3334), + [anon_sym_COLON_COLON] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3334), + [anon_sym_EQ] = ACTIONS(3334), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3334), + [anon_sym_SLASH_SLASH] = ACTIONS(3334), + [anon_sym_STAR_STAR] = ACTIONS(3334), + [anon_sym_DOT] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3334), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_EQ_TILDE] = ACTIONS(3334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_GT] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_PIPE_GT] = ACTIONS(3334), + [anon_sym_LT_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_LT_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE] = ACTIONS(3334), + [anon_sym_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_TILDE_GT] = ACTIONS(3334), + [anon_sym_LT_PIPE_GT] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3334), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [anon_sym_LT_GT] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3334), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3334), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_not] = ACTIONS(3334), + [anon_sym_when] = ACTIONS(3334), + [anon_sym_EQ_GT] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3334), + [anon_sym_and] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3334), + [anon_sym_CARET_CARET] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_true] = ACTIONS(3334), + [anon_sym_false] = ACTIONS(3334), + [anon_sym_nil] = ACTIONS(3334), + [anon_sym_after] = ACTIONS(3334), + [anon_sym_catch] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_end] = ACTIONS(3334), + [anon_sym_fn] = ACTIONS(3334), + [anon_sym_rescue] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3334), + [sym_char] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3336), + [sym__atom_start] = ACTIONS(3336), + [sym__newline_before_do] = ACTIONS(3336), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3336), + [sym__not_in] = ACTIONS(3336), + }, + [1302] = { + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_RPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1303] = { + [anon_sym_LF] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1304] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3318), + [aux_sym_identifier_token1] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [sym_unused_identifier] = ACTIONS(3318), + [anon_sym___MODULE__] = ACTIONS(3318), + [anon_sym___DIR__] = ACTIONS(3318), + [anon_sym___ENV__] = ACTIONS(3318), + [anon_sym___CALLER__] = ACTIONS(3318), + [anon_sym___STACKTRACE__] = ACTIONS(3318), + [sym__alias_single] = ACTIONS(3318), + [sym__alias_multi] = ACTIONS(3318), + [sym_integer] = ACTIONS(3318), + [sym_float] = ACTIONS(3318), + [sym__atom_word_literal] = ACTIONS(3318), + [anon_sym_DASH_GT] = ACTIONS(3318), + [anon_sym_COLON_COLON] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3318), + [anon_sym_SLASH_SLASH] = ACTIONS(3318), + [anon_sym_STAR_STAR] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_EQ_TILDE] = ACTIONS(3318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_PIPE_GT] = ACTIONS(3318), + [anon_sym_LT_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_LT_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE] = ACTIONS(3318), + [anon_sym_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_TILDE_GT] = ACTIONS(3318), + [anon_sym_LT_PIPE_GT] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3318), + [anon_sym_DOT_DOT] = ACTIONS(3318), + [anon_sym_LT_GT] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3318), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_not] = ACTIONS(3318), + [anon_sym_when] = ACTIONS(3318), + [anon_sym_EQ_GT] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [anon_sym_and] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_CARET_CARET] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [anon_sym_nil] = ACTIONS(3318), + [anon_sym_after] = ACTIONS(3318), + [anon_sym_catch] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_end] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_rescue] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [sym_char] = ACTIONS(3318), + [anon_sym_LPAREN2] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3320), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3320), + [sym__atom_start] = ACTIONS(3320), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3320), + [sym__not_in] = ACTIONS(3320), + }, + [1305] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3326), + [aux_sym_identifier_token1] = ACTIONS(3326), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3326), + [sym_unused_identifier] = ACTIONS(3326), + [anon_sym___MODULE__] = ACTIONS(3326), + [anon_sym___DIR__] = ACTIONS(3326), + [anon_sym___ENV__] = ACTIONS(3326), + [anon_sym___CALLER__] = ACTIONS(3326), + [anon_sym___STACKTRACE__] = ACTIONS(3326), + [sym__alias_single] = ACTIONS(3326), + [sym__alias_multi] = ACTIONS(3326), + [sym_integer] = ACTIONS(3326), + [sym_float] = ACTIONS(3326), + [sym__atom_word_literal] = ACTIONS(3326), + [anon_sym_DASH_GT] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3326), + [anon_sym_SLASH_SLASH] = ACTIONS(3326), + [anon_sym_STAR_STAR] = ACTIONS(3326), + [anon_sym_DOT] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3326), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_EQ_TILDE] = ACTIONS(3326), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_GT] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_PIPE_GT] = ACTIONS(3326), + [anon_sym_LT_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_LT_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE] = ACTIONS(3326), + [anon_sym_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_TILDE_GT] = ACTIONS(3326), + [anon_sym_LT_PIPE_GT] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3326), + [anon_sym_DOT_DOT] = ACTIONS(3326), + [anon_sym_LT_GT] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3326), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3326), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_when] = ACTIONS(3326), + [anon_sym_EQ_GT] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3326), + [anon_sym_and] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_true] = ACTIONS(3326), + [anon_sym_false] = ACTIONS(3326), + [anon_sym_nil] = ACTIONS(3326), + [anon_sym_after] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_end] = ACTIONS(3326), + [anon_sym_fn] = ACTIONS(3326), + [anon_sym_rescue] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3326), + [sym_char] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3328), + [sym__atom_start] = ACTIONS(3328), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3328), + [sym__not_in] = ACTIONS(3328), + }, + [1306] = { + [aux_sym__terminator_repeat1] = STATE(1307), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [sym__atom_word_literal] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3370), + [anon_sym_SLASH_SLASH] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_after] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_end] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_rescue] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3372), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1307] = { + [aux_sym__terminator_repeat1] = STATE(1307), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_RPAREN] = ACTIONS(3377), + [aux_sym_identifier_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [sym_unused_identifier] = ACTIONS(3377), + [anon_sym___MODULE__] = ACTIONS(3377), + [anon_sym___DIR__] = ACTIONS(3377), + [anon_sym___ENV__] = ACTIONS(3377), + [anon_sym___CALLER__] = ACTIONS(3377), + [anon_sym___STACKTRACE__] = ACTIONS(3377), + [sym__alias_single] = ACTIONS(3377), + [sym__alias_multi] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3377), + [sym__atom_word_literal] = ACTIONS(3377), + [anon_sym_DASH_GT] = ACTIONS(3377), + [anon_sym_COLON_COLON] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3377), + [anon_sym_SLASH_SLASH] = ACTIONS(3377), + [anon_sym_STAR_STAR] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(3377), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_AMP_AMP] = ACTIONS(3377), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3377), + [anon_sym_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ] = ACTIONS(3377), + [anon_sym_EQ_TILDE] = ACTIONS(3377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3377), + [anon_sym_PIPE_GT] = ACTIONS(3377), + [anon_sym_LT_LT_LT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3377), + [anon_sym_LT_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_PIPE_GT] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3377), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_LT_GT] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3377), + [anon_sym_PERCENT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3377), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_when] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3377), + [anon_sym_and] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3377), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_nil] = ACTIONS(3377), + [anon_sym_after] = ACTIONS(3377), + [anon_sym_catch] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_end] = ACTIONS(3377), + [anon_sym_fn] = ACTIONS(3377), + [anon_sym_rescue] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3377), + [sym_char] = ACTIONS(3377), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3379), + [sym__atom_start] = ACTIONS(3379), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3379), + [sym__not_in] = ACTIONS(3379), + }, + [1308] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [sym__atom_word_literal] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3381), + [anon_sym_SLASH_SLASH] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_after] = ACTIONS(3381), + [anon_sym_catch] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_end] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_rescue] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(3383), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1309] = { + [aux_sym__terminator_repeat1] = STATE(1311), + [anon_sym_LF] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_after] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_end] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_rescue] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1310] = { + [aux_sym__terminator_repeat1] = STATE(1311), + [anon_sym_LF] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_after] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_end] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_rescue] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1311] = { + [aux_sym__terminator_repeat1] = STATE(1311), + [anon_sym_LF] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [aux_sym_identifier_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [sym_unused_identifier] = ACTIONS(3377), + [anon_sym___MODULE__] = ACTIONS(3377), + [anon_sym___DIR__] = ACTIONS(3377), + [anon_sym___ENV__] = ACTIONS(3377), + [anon_sym___CALLER__] = ACTIONS(3377), + [anon_sym___STACKTRACE__] = ACTIONS(3377), + [sym__alias_single] = ACTIONS(3377), + [sym__alias_multi] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3377), + [anon_sym_DASH_GT] = ACTIONS(3377), + [anon_sym_COLON_COLON] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_STAR_STAR] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(3377), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_AMP_AMP] = ACTIONS(3377), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3377), + [anon_sym_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ] = ACTIONS(3377), + [anon_sym_EQ_TILDE] = ACTIONS(3377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3377), + [anon_sym_PIPE_GT] = ACTIONS(3377), + [anon_sym_LT_LT_LT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3377), + [anon_sym_LT_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_PIPE_GT] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3377), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_LT_GT] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3377), + [anon_sym_PERCENT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3377), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_when] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3377), + [anon_sym_and] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3377), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_nil] = ACTIONS(3377), + [anon_sym_after] = ACTIONS(3377), + [anon_sym_catch] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_end] = ACTIONS(3377), + [anon_sym_fn] = ACTIONS(3377), + [anon_sym_rescue] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3377), + [sym_char] = ACTIONS(3377), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3379), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3379), + [sym__not_in] = ACTIONS(3379), + }, + [1312] = { + [anon_sym_LF] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_after] = ACTIONS(3381), + [anon_sym_catch] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_end] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_rescue] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1313] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_after] = ACTIONS(3381), + [anon_sym_catch] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_end] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_rescue] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1314] = { + [aux_sym__terminator_repeat1] = STATE(1314), + [anon_sym_LF] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [aux_sym_identifier_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [sym_unused_identifier] = ACTIONS(3377), + [anon_sym___MODULE__] = ACTIONS(3377), + [anon_sym___DIR__] = ACTIONS(3377), + [anon_sym___ENV__] = ACTIONS(3377), + [anon_sym___CALLER__] = ACTIONS(3377), + [anon_sym___STACKTRACE__] = ACTIONS(3377), + [sym__alias_single] = ACTIONS(3377), + [sym__alias_multi] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3377), + [anon_sym_DASH_GT] = ACTIONS(3377), + [anon_sym_COLON_COLON] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_STAR_STAR] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(3377), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_AMP_AMP] = ACTIONS(3377), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3377), + [anon_sym_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ] = ACTIONS(3377), + [anon_sym_EQ_TILDE] = ACTIONS(3377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3377), + [anon_sym_PIPE_GT] = ACTIONS(3377), + [anon_sym_LT_LT_LT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3377), + [anon_sym_LT_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_PIPE_GT] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3377), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_LT_GT] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3377), + [anon_sym_PERCENT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3377), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_when] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3377), + [anon_sym_and] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3377), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_nil] = ACTIONS(3377), + [anon_sym_end] = ACTIONS(3377), + [anon_sym_fn] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3377), + [sym_char] = ACTIONS(3377), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3379), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3379), + [sym__not_in] = ACTIONS(3379), + }, + [1315] = { + [sym__identifier] = STATE(1232), + [sym_identifier] = STATE(1232), + [sym_special_identifier] = STATE(1232), + [sym_alias] = STATE(2128), + [sym__quoted_i_double] = STATE(1231), + [sym__quoted_i_single] = STATE(1230), + [sym_operator_identifier] = STATE(1232), + [sym_tuple] = STATE(2128), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(3399), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(397), + [sym__alias_multi] = ACTIONS(397), + [anon_sym_DASH_GT] = ACTIONS(3401), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(3401), + [anon_sym_STAR_STAR] = ACTIONS(3401), + [anon_sym_DOT] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(3401), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_EQ_TILDE] = ACTIONS(3401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_PIPE_GT] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [anon_sym_GT_GT_GT] = ACTIONS(3401), + [anon_sym_LT_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_PIPE_GT] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_LT_GT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_CARET] = ACTIONS(3407), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_or] = ACTIONS(3415), + [anon_sym_and] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3415), + [anon_sym_CARET_CARET] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_nil] = ACTIONS(3417), + [anon_sym_after] = ACTIONS(3417), + [anon_sym_catch] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_end] = ACTIONS(3417), + [anon_sym_fn] = ACTIONS(3417), + [anon_sym_rescue] = ACTIONS(3417), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3419), + }, + [1316] = { + [sym__identifier] = STATE(1246), + [sym_identifier] = STATE(1246), + [sym_special_identifier] = STATE(1246), + [sym_alias] = STATE(1755), + [sym__quoted_i_double] = STATE(1249), + [sym__quoted_i_single] = STATE(1254), + [sym_operator_identifier] = STATE(1246), + [sym_tuple] = STATE(1755), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(3421), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(77), + [sym__alias_multi] = ACTIONS(77), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3423), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_EQ] = ACTIONS(3423), + [anon_sym_STAR_STAR] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_EQ_TILDE] = ACTIONS(3423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_PIPE_GT] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [anon_sym_GT_GT_GT] = ACTIONS(3423), + [anon_sym_LT_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_PIPE_GT] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3423), + [anon_sym_LT_GT] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_not] = ACTIONS(3435), + [anon_sym_when] = ACTIONS(3437), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_in] = ACTIONS(3437), + [anon_sym_CARET_CARET] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_nil] = ACTIONS(3439), + [anon_sym_after] = ACTIONS(3439), + [anon_sym_catch] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_end] = ACTIONS(3439), + [anon_sym_fn] = ACTIONS(3439), + [anon_sym_rescue] = ACTIONS(3439), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3441), + }, + [1317] = { + [aux_sym__terminator_repeat1] = STATE(1323), + [ts_builtin_sym_end] = ACTIONS(3372), + [anon_sym_LF] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1318] = { + [sym__identifier] = STATE(1246), + [sym_identifier] = STATE(1246), + [sym_special_identifier] = STATE(1246), + [sym_alias] = STATE(1534), + [sym__quoted_i_double] = STATE(1249), + [sym__quoted_i_single] = STATE(1254), + [sym_operator_identifier] = STATE(1246), + [sym_tuple] = STATE(1534), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(3421), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(677), + [sym__alias_multi] = ACTIONS(677), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3423), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_EQ] = ACTIONS(3423), + [anon_sym_STAR_STAR] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_EQ_TILDE] = ACTIONS(3423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_PIPE_GT] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [anon_sym_GT_GT_GT] = ACTIONS(3423), + [anon_sym_LT_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_PIPE_GT] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3423), + [anon_sym_LT_GT] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(697), + [anon_sym_not] = ACTIONS(3435), + [anon_sym_when] = ACTIONS(3437), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_in] = ACTIONS(3437), + [anon_sym_CARET_CARET] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_nil] = ACTIONS(3439), + [anon_sym_after] = ACTIONS(3439), + [anon_sym_catch] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_end] = ACTIONS(3439), + [anon_sym_fn] = ACTIONS(3439), + [anon_sym_rescue] = ACTIONS(3439), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3441), + }, + [1319] = { + [aux_sym__terminator_repeat1] = STATE(1322), + [anon_sym_LF] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1320] = { + [sym__identifier] = STATE(1232), + [sym_identifier] = STATE(1232), + [sym_special_identifier] = STATE(1232), + [sym_alias] = STATE(2720), + [sym__quoted_i_double] = STATE(1231), + [sym__quoted_i_single] = STATE(1230), + [sym_operator_identifier] = STATE(1232), + [sym_tuple] = STATE(2720), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(3399), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(835), + [sym__alias_multi] = ACTIONS(835), + [anon_sym_DASH_GT] = ACTIONS(3401), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(3401), + [anon_sym_STAR_STAR] = ACTIONS(3401), + [anon_sym_DOT] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(3401), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_EQ_TILDE] = ACTIONS(3401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_PIPE_GT] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [anon_sym_GT_GT_GT] = ACTIONS(3401), + [anon_sym_LT_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_PIPE_GT] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_LT_GT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_CARET] = ACTIONS(3407), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_or] = ACTIONS(3415), + [anon_sym_and] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3415), + [anon_sym_CARET_CARET] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_nil] = ACTIONS(3417), + [anon_sym_after] = ACTIONS(3417), + [anon_sym_catch] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_end] = ACTIONS(3417), + [anon_sym_fn] = ACTIONS(3417), + [anon_sym_rescue] = ACTIONS(3417), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3419), + }, + [1321] = { + [sym__identifier] = STATE(1232), + [sym_identifier] = STATE(1232), + [sym_special_identifier] = STATE(1232), + [sym_alias] = STATE(2962), + [sym__quoted_i_double] = STATE(1231), + [sym__quoted_i_single] = STATE(1230), + [sym_operator_identifier] = STATE(1232), + [sym_tuple] = STATE(2962), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(3399), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(1077), + [sym__alias_multi] = ACTIONS(1077), + [anon_sym_DASH_GT] = ACTIONS(3401), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(3401), + [anon_sym_STAR_STAR] = ACTIONS(3401), + [anon_sym_DOT] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(3401), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_EQ_TILDE] = ACTIONS(3401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_PIPE_GT] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [anon_sym_GT_GT_GT] = ACTIONS(3401), + [anon_sym_LT_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_PIPE_GT] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_LT_GT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_CARET] = ACTIONS(3407), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_or] = ACTIONS(3415), + [anon_sym_and] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3415), + [anon_sym_CARET_CARET] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_nil] = ACTIONS(3417), + [anon_sym_after] = ACTIONS(3417), + [anon_sym_catch] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_end] = ACTIONS(3417), + [anon_sym_fn] = ACTIONS(3417), + [anon_sym_rescue] = ACTIONS(3417), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3419), + }, + [1322] = { + [aux_sym__terminator_repeat1] = STATE(1322), + [anon_sym_LF] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_RPAREN] = ACTIONS(3377), + [aux_sym_identifier_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [sym_unused_identifier] = ACTIONS(3377), + [anon_sym___MODULE__] = ACTIONS(3377), + [anon_sym___DIR__] = ACTIONS(3377), + [anon_sym___ENV__] = ACTIONS(3377), + [anon_sym___CALLER__] = ACTIONS(3377), + [anon_sym___STACKTRACE__] = ACTIONS(3377), + [sym__alias_single] = ACTIONS(3377), + [sym__alias_multi] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3377), + [anon_sym_DASH_GT] = ACTIONS(3377), + [anon_sym_COLON_COLON] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_STAR_STAR] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(3377), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_AMP_AMP] = ACTIONS(3377), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3377), + [anon_sym_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ] = ACTIONS(3377), + [anon_sym_EQ_TILDE] = ACTIONS(3377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3377), + [anon_sym_PIPE_GT] = ACTIONS(3377), + [anon_sym_LT_LT_LT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3377), + [anon_sym_LT_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_PIPE_GT] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3377), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_LT_GT] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3377), + [anon_sym_PERCENT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3377), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_when] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3377), + [anon_sym_and] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3377), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_nil] = ACTIONS(3377), + [anon_sym_fn] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3377), + [sym_char] = ACTIONS(3377), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3379), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3379), + [sym__not_in] = ACTIONS(3379), + }, + [1323] = { + [aux_sym__terminator_repeat1] = STATE(1323), + [ts_builtin_sym_end] = ACTIONS(3379), + [anon_sym_LF] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [aux_sym_identifier_token1] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3377), + [sym_unused_identifier] = ACTIONS(3377), + [anon_sym___MODULE__] = ACTIONS(3377), + [anon_sym___DIR__] = ACTIONS(3377), + [anon_sym___ENV__] = ACTIONS(3377), + [anon_sym___CALLER__] = ACTIONS(3377), + [anon_sym___STACKTRACE__] = ACTIONS(3377), + [sym__alias_single] = ACTIONS(3377), + [sym__alias_multi] = ACTIONS(3377), + [sym_integer] = ACTIONS(3377), + [sym_float] = ACTIONS(3377), + [anon_sym_DASH_GT] = ACTIONS(3377), + [anon_sym_COLON_COLON] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_STAR_STAR] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_LT_DASH] = ACTIONS(3377), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3377), + [anon_sym_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3377), + [anon_sym_AMP_AMP] = ACTIONS(3377), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3377), + [anon_sym_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ] = ACTIONS(3377), + [anon_sym_EQ_TILDE] = ACTIONS(3377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3377), + [anon_sym_PIPE_GT] = ACTIONS(3377), + [anon_sym_LT_LT_LT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3377), + [anon_sym_LT_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE] = ACTIONS(3377), + [anon_sym_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_TILDE_GT] = ACTIONS(3377), + [anon_sym_LT_PIPE_GT] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3377), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_LT_GT] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3377), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3377), + [anon_sym_PERCENT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3377), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_not] = ACTIONS(3377), + [anon_sym_when] = ACTIONS(3377), + [anon_sym_or] = ACTIONS(3377), + [anon_sym_and] = ACTIONS(3377), + [anon_sym_in] = ACTIONS(3377), + [anon_sym_CARET_CARET] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [anon_sym_nil] = ACTIONS(3377), + [anon_sym_fn] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3377), + [sym_char] = ACTIONS(3377), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3379), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3379), + [sym__not_in] = ACTIONS(3379), + }, + [1324] = { + [sym__identifier] = STATE(1266), + [sym_identifier] = STATE(1266), + [sym_special_identifier] = STATE(1266), + [sym_alias] = STATE(3476), + [sym__quoted_i_double] = STATE(1265), + [sym__quoted_i_single] = STATE(1264), + [sym_operator_identifier] = STATE(1266), + [sym_tuple] = STATE(3476), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(3457), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(21), + [sym__alias_multi] = ACTIONS(21), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_STAR_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3459), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_EQ_TILDE] = ACTIONS(3459), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_PIPE_GT] = ACTIONS(3459), + [anon_sym_LT_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_LT_LT_TILDE] = ACTIONS(3459), + [anon_sym_TILDE_GT_GT] = ACTIONS(3459), + [anon_sym_LT_TILDE] = ACTIONS(3459), + [anon_sym_TILDE_GT] = ACTIONS(3459), + [anon_sym_LT_TILDE_GT] = ACTIONS(3459), + [anon_sym_LT_PIPE_GT] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_LT_GT] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_CARET] = ACTIONS(3465), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3465), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_SQUOTE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_not] = ACTIONS(3471), + [anon_sym_when] = ACTIONS(3473), + [anon_sym_or] = ACTIONS(3473), + [anon_sym_and] = ACTIONS(3473), + [anon_sym_in] = ACTIONS(3473), + [anon_sym_CARET_CARET] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3475), + [anon_sym_false] = ACTIONS(3475), + [anon_sym_nil] = ACTIONS(3475), + [anon_sym_after] = ACTIONS(3475), + [anon_sym_catch] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_end] = ACTIONS(3475), + [anon_sym_fn] = ACTIONS(3475), + [anon_sym_rescue] = ACTIONS(3475), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3477), + }, + [1325] = { + [sym__identifier] = STATE(1232), + [sym_identifier] = STATE(1232), + [sym_special_identifier] = STATE(1232), + [sym_alias] = STATE(3685), + [sym__quoted_i_double] = STATE(1231), + [sym__quoted_i_single] = STATE(1230), + [sym_operator_identifier] = STATE(1232), + [sym_tuple] = STATE(3685), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1940), + [sym_unused_identifier] = ACTIONS(3399), + [anon_sym___MODULE__] = ACTIONS(1944), + [anon_sym___DIR__] = ACTIONS(1944), + [anon_sym___ENV__] = ACTIONS(1944), + [anon_sym___CALLER__] = ACTIONS(1944), + [anon_sym___STACKTRACE__] = ACTIONS(1944), + [sym__alias_single] = ACTIONS(343), + [sym__alias_multi] = ACTIONS(343), + [anon_sym_DASH_GT] = ACTIONS(3401), + [anon_sym_COLON_COLON] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_AMP] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(3401), + [anon_sym_STAR_STAR] = ACTIONS(3401), + [anon_sym_DOT] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_LT_DASH] = ACTIONS(3401), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3401), + [anon_sym_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3401), + [anon_sym_AMP_AMP] = ACTIONS(3401), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3401), + [anon_sym_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ] = ACTIONS(3401), + [anon_sym_EQ_TILDE] = ACTIONS(3401), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3401), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_GT] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3401), + [anon_sym_GT_EQ] = ACTIONS(3401), + [anon_sym_PIPE_GT] = ACTIONS(3401), + [anon_sym_LT_LT_LT] = ACTIONS(3401), + [anon_sym_GT_GT_GT] = ACTIONS(3401), + [anon_sym_LT_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE] = ACTIONS(3401), + [anon_sym_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_TILDE_GT] = ACTIONS(3401), + [anon_sym_LT_PIPE_GT] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3401), + [anon_sym_DOT_DOT] = ACTIONS(3401), + [anon_sym_LT_GT] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_STAR] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_CARET] = ACTIONS(3407), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3409), + [anon_sym_SQUOTE] = ACTIONS(3411), + [anon_sym_LBRACE] = ACTIONS(365), + [anon_sym_not] = ACTIONS(3413), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_or] = ACTIONS(3415), + [anon_sym_and] = ACTIONS(3415), + [anon_sym_in] = ACTIONS(3415), + [anon_sym_CARET_CARET] = ACTIONS(3401), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [anon_sym_nil] = ACTIONS(3417), + [anon_sym_after] = ACTIONS(3417), + [anon_sym_catch] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_end] = ACTIONS(3417), + [anon_sym_fn] = ACTIONS(3417), + [anon_sym_rescue] = ACTIONS(3417), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3419), + }, + [1326] = { + [sym__identifier] = STATE(1246), + [sym_identifier] = STATE(1246), + [sym_special_identifier] = STATE(1246), + [sym_alias] = STATE(1947), + [sym__quoted_i_double] = STATE(1249), + [sym__quoted_i_single] = STATE(1254), + [sym_operator_identifier] = STATE(1246), + [sym_tuple] = STATE(1947), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(3421), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(1369), + [sym__alias_multi] = ACTIONS(1369), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3423), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_EQ] = ACTIONS(3423), + [anon_sym_STAR_STAR] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_EQ_TILDE] = ACTIONS(3423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_PIPE_GT] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [anon_sym_GT_GT_GT] = ACTIONS(3423), + [anon_sym_LT_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_PIPE_GT] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3423), + [anon_sym_LT_GT] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(1389), + [anon_sym_not] = ACTIONS(3435), + [anon_sym_when] = ACTIONS(3437), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_in] = ACTIONS(3437), + [anon_sym_CARET_CARET] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_nil] = ACTIONS(3439), + [anon_sym_after] = ACTIONS(3439), + [anon_sym_catch] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_end] = ACTIONS(3439), + [anon_sym_fn] = ACTIONS(3439), + [anon_sym_rescue] = ACTIONS(3439), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3441), + }, + [1327] = { + [aux_sym__terminator_repeat1] = STATE(1314), + [anon_sym_LF] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym_LPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_end] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1328] = { + [sym__identifier] = STATE(1288), + [sym_identifier] = STATE(1288), + [sym_special_identifier] = STATE(1288), + [sym_alias] = STATE(3755), + [sym__quoted_i_double] = STATE(1283), + [sym__quoted_i_single] = STATE(1296), + [sym_operator_identifier] = STATE(1288), + [sym_tuple] = STATE(3755), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(3483), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(1185), + [sym__alias_multi] = ACTIONS(1185), + [anon_sym_DASH_GT] = ACTIONS(3485), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_STAR_STAR] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3485), + [anon_sym_AT] = ACTIONS(3489), + [anon_sym_LT_DASH] = ACTIONS(3485), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3485), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_EQ_TILDE] = ACTIONS(3485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_PIPE_GT] = ACTIONS(3485), + [anon_sym_LT_LT_LT] = ACTIONS(3485), + [anon_sym_GT_GT_GT] = ACTIONS(3485), + [anon_sym_LT_LT_TILDE] = ACTIONS(3485), + [anon_sym_TILDE_GT_GT] = ACTIONS(3485), + [anon_sym_LT_TILDE] = ACTIONS(3485), + [anon_sym_TILDE_GT] = ACTIONS(3485), + [anon_sym_LT_TILDE_GT] = ACTIONS(3485), + [anon_sym_LT_PIPE_GT] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3485), + [anon_sym_LT_GT] = ACTIONS(3485), + [anon_sym_PLUS] = ACTIONS(3491), + [anon_sym_DASH] = ACTIONS(3491), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_SLASH] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_CARET] = ACTIONS(3491), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3491), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_when] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [anon_sym_and] = ACTIONS(3499), + [anon_sym_in] = ACTIONS(3499), + [anon_sym_CARET_CARET] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [anon_sym_nil] = ACTIONS(3501), + [anon_sym_after] = ACTIONS(3501), + [anon_sym_catch] = ACTIONS(3501), + [anon_sym_do] = ACTIONS(3501), + [anon_sym_else] = ACTIONS(3501), + [anon_sym_end] = ACTIONS(3501), + [anon_sym_fn] = ACTIONS(3501), + [anon_sym_rescue] = ACTIONS(3501), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3503), + }, + [1329] = { + [sym__identifier] = STATE(1266), + [sym_identifier] = STATE(1266), + [sym_special_identifier] = STATE(1266), + [sym_alias] = STATE(3031), + [sym__quoted_i_double] = STATE(1265), + [sym__quoted_i_single] = STATE(1264), + [sym_operator_identifier] = STATE(1266), + [sym_tuple] = STATE(3031), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2010), + [sym_unused_identifier] = ACTIONS(3457), + [anon_sym___MODULE__] = ACTIONS(2014), + [anon_sym___DIR__] = ACTIONS(2014), + [anon_sym___ENV__] = ACTIONS(2014), + [anon_sym___CALLER__] = ACTIONS(2014), + [anon_sym___STACKTRACE__] = ACTIONS(2014), + [sym__alias_single] = ACTIONS(627), + [sym__alias_multi] = ACTIONS(627), + [anon_sym_DASH_GT] = ACTIONS(3459), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_PIPE] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3461), + [anon_sym_EQ] = ACTIONS(3459), + [anon_sym_STAR_STAR] = ACTIONS(3459), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3463), + [anon_sym_LT_DASH] = ACTIONS(3459), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_EQ_TILDE] = ACTIONS(3459), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3459), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_PIPE_GT] = ACTIONS(3459), + [anon_sym_LT_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_LT_LT_TILDE] = ACTIONS(3459), + [anon_sym_TILDE_GT_GT] = ACTIONS(3459), + [anon_sym_LT_TILDE] = ACTIONS(3459), + [anon_sym_TILDE_GT] = ACTIONS(3459), + [anon_sym_LT_TILDE_GT] = ACTIONS(3459), + [anon_sym_LT_PIPE_GT] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3459), + [anon_sym_DOT_DOT] = ACTIONS(3459), + [anon_sym_LT_GT] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_CARET] = ACTIONS(3465), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3465), + [anon_sym_DQUOTE] = ACTIONS(3467), + [anon_sym_SQUOTE] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(647), + [anon_sym_not] = ACTIONS(3471), + [anon_sym_when] = ACTIONS(3473), + [anon_sym_or] = ACTIONS(3473), + [anon_sym_and] = ACTIONS(3473), + [anon_sym_in] = ACTIONS(3473), + [anon_sym_CARET_CARET] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3475), + [anon_sym_false] = ACTIONS(3475), + [anon_sym_nil] = ACTIONS(3475), + [anon_sym_after] = ACTIONS(3475), + [anon_sym_catch] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_else] = ACTIONS(3475), + [anon_sym_end] = ACTIONS(3475), + [anon_sym_fn] = ACTIONS(3475), + [anon_sym_rescue] = ACTIONS(3475), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3477), + }, + [1330] = { + [sym__identifier] = STATE(1288), + [sym_identifier] = STATE(1288), + [sym_special_identifier] = STATE(1288), + [sym_alias] = STATE(3170), + [sym__quoted_i_double] = STATE(1283), + [sym__quoted_i_single] = STATE(1296), + [sym_operator_identifier] = STATE(1288), + [sym_tuple] = STATE(3170), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2206), + [sym_unused_identifier] = ACTIONS(3483), + [anon_sym___MODULE__] = ACTIONS(2210), + [anon_sym___DIR__] = ACTIONS(2210), + [anon_sym___ENV__] = ACTIONS(2210), + [anon_sym___CALLER__] = ACTIONS(2210), + [anon_sym___STACKTRACE__] = ACTIONS(2210), + [sym__alias_single] = ACTIONS(769), + [sym__alias_multi] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(3485), + [anon_sym_COLON_COLON] = ACTIONS(3485), + [anon_sym_PIPE] = ACTIONS(3485), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3485), + [anon_sym_STAR_STAR] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3485), + [anon_sym_AT] = ACTIONS(3489), + [anon_sym_LT_DASH] = ACTIONS(3485), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3485), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3485), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_EQ_TILDE] = ACTIONS(3485), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3485), + [anon_sym_LT] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_PIPE_GT] = ACTIONS(3485), + [anon_sym_LT_LT_LT] = ACTIONS(3485), + [anon_sym_GT_GT_GT] = ACTIONS(3485), + [anon_sym_LT_LT_TILDE] = ACTIONS(3485), + [anon_sym_TILDE_GT_GT] = ACTIONS(3485), + [anon_sym_LT_TILDE] = ACTIONS(3485), + [anon_sym_TILDE_GT] = ACTIONS(3485), + [anon_sym_LT_TILDE_GT] = ACTIONS(3485), + [anon_sym_LT_PIPE_GT] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3485), + [anon_sym_DOT_DOT] = ACTIONS(3485), + [anon_sym_LT_GT] = ACTIONS(3485), + [anon_sym_PLUS] = ACTIONS(3491), + [anon_sym_DASH] = ACTIONS(3491), + [anon_sym_STAR] = ACTIONS(3485), + [anon_sym_SLASH] = ACTIONS(3485), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_CARET] = ACTIONS(3491), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3491), + [anon_sym_DQUOTE] = ACTIONS(3493), + [anon_sym_SQUOTE] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(789), + [anon_sym_not] = ACTIONS(3497), + [anon_sym_when] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3499), + [anon_sym_and] = ACTIONS(3499), + [anon_sym_in] = ACTIONS(3499), + [anon_sym_CARET_CARET] = ACTIONS(3485), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [anon_sym_nil] = ACTIONS(3501), + [anon_sym_after] = ACTIONS(3501), + [anon_sym_catch] = ACTIONS(3501), + [anon_sym_do] = ACTIONS(3501), + [anon_sym_else] = ACTIONS(3501), + [anon_sym_end] = ACTIONS(3501), + [anon_sym_fn] = ACTIONS(3501), + [anon_sym_rescue] = ACTIONS(3501), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3503), + }, + [1331] = { + [sym__identifier] = STATE(1246), + [sym_identifier] = STATE(1246), + [sym_special_identifier] = STATE(1246), + [sym_alias] = STATE(1705), + [sym__quoted_i_double] = STATE(1249), + [sym__quoted_i_single] = STATE(1254), + [sym_operator_identifier] = STATE(1246), + [sym_tuple] = STATE(1705), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3397), + [aux_sym_identifier_token1] = ACTIONS(1904), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1904), + [sym_unused_identifier] = ACTIONS(3421), + [anon_sym___MODULE__] = ACTIONS(1908), + [anon_sym___DIR__] = ACTIONS(1908), + [anon_sym___ENV__] = ACTIONS(1908), + [anon_sym___CALLER__] = ACTIONS(1908), + [anon_sym___STACKTRACE__] = ACTIONS(1908), + [sym__alias_single] = ACTIONS(569), + [sym__alias_multi] = ACTIONS(569), + [anon_sym_DASH_GT] = ACTIONS(3423), + [anon_sym_COLON_COLON] = ACTIONS(3423), + [anon_sym_PIPE] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_EQ] = ACTIONS(3423), + [anon_sym_STAR_STAR] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_LT_DASH] = ACTIONS(3423), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_EQ_TILDE] = ACTIONS(3423), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3423), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_PIPE_GT] = ACTIONS(3423), + [anon_sym_LT_LT_LT] = ACTIONS(3423), + [anon_sym_GT_GT_GT] = ACTIONS(3423), + [anon_sym_LT_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE] = ACTIONS(3423), + [anon_sym_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_TILDE_GT] = ACTIONS(3423), + [anon_sym_LT_PIPE_GT] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3423), + [anon_sym_DOT_DOT] = ACTIONS(3423), + [anon_sym_LT_GT] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_CARET] = ACTIONS(3429), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(592), + [anon_sym_not] = ACTIONS(3435), + [anon_sym_when] = ACTIONS(3437), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_in] = ACTIONS(3437), + [anon_sym_CARET_CARET] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3439), + [anon_sym_false] = ACTIONS(3439), + [anon_sym_nil] = ACTIONS(3439), + [anon_sym_after] = ACTIONS(3439), + [anon_sym_catch] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_end] = ACTIONS(3439), + [anon_sym_fn] = ACTIONS(3439), + [anon_sym_rescue] = ACTIONS(3439), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3441), + }, + [1332] = { + [aux_sym__terminator_repeat1] = STATE(1322), + [anon_sym_LF] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3370), + [aux_sym_identifier_token1] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [sym_unused_identifier] = ACTIONS(3370), + [anon_sym___MODULE__] = ACTIONS(3370), + [anon_sym___DIR__] = ACTIONS(3370), + [anon_sym___ENV__] = ACTIONS(3370), + [anon_sym___CALLER__] = ACTIONS(3370), + [anon_sym___STACKTRACE__] = ACTIONS(3370), + [sym__alias_single] = ACTIONS(3370), + [sym__alias_multi] = ACTIONS(3370), + [sym_integer] = ACTIONS(3370), + [sym_float] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_STAR_STAR] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_EQ_TILDE] = ACTIONS(3370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_PIPE_GT] = ACTIONS(3370), + [anon_sym_LT_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_LT_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE] = ACTIONS(3370), + [anon_sym_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_TILDE_GT] = ACTIONS(3370), + [anon_sym_LT_PIPE_GT] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3370), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_LT_GT] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3370), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_not] = ACTIONS(3370), + [anon_sym_when] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [anon_sym_and] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_CARET_CARET] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [anon_sym_nil] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [sym_char] = ACTIONS(3370), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3372), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3372), + [sym__not_in] = ACTIONS(3372), + }, + [1333] = { + [anon_sym_LF] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_end] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1334] = { + [anon_sym_LF] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_RPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1335] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(4197), + [sym_keyword] = STATE(1195), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1336] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(3108), + [sym_keyword] = STATE(833), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1337] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1837), + [sym_keyword] = STATE(844), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1338] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1503), + [sym_keyword] = STATE(996), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1339] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(4197), + [sym_keyword] = STATE(866), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1340] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(2244), + [sym_keyword] = STATE(648), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1341] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(2825), + [sym_keyword] = STATE(1047), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1342] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1837), + [sym_keyword] = STATE(718), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1343] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1721), + [sym_keyword] = STATE(787), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1344] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1721), + [sym_keyword] = STATE(840), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1345] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1911), + [sym_keyword] = STATE(838), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1346] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(2754), + [sym_keyword] = STATE(836), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1347] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1911), + [sym_keyword] = STATE(831), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1348] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1503), + [sym_keyword] = STATE(823), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1349] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(4197), + [sym_keyword] = STATE(677), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1350] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(3483), + [sym_keyword] = STATE(785), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1351] = { + [ts_builtin_sym_end] = ACTIONS(3383), + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1352] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(3769), + [sym_keyword] = STATE(1195), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1353] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(3720), + [sym_keyword] = STATE(677), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1354] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(2244), + [sym_keyword] = STATE(932), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1355] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1721), + [sym_keyword] = STATE(645), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1356] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(1911), + [sym_keyword] = STATE(852), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1357] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(2919), + [sym_keyword] = STATE(870), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1358] = { + [sym_identifier] = STATE(5425), + [sym_special_identifier] = STATE(5425), + [sym__atom_operator_literal] = STATE(5425), + [sym__quoted_i_double] = STATE(5364), + [sym__quoted_i_single] = STATE(5364), + [sym_pair] = STATE(2754), + [sym_keyword] = STATE(866), + [anon_sym_LF] = ACTIONS(3), + [aux_sym_identifier_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [sym_unused_identifier] = ACTIONS(81), + [anon_sym___MODULE__] = ACTIONS(3509), + [anon_sym___DIR__] = ACTIONS(3509), + [anon_sym___ENV__] = ACTIONS(3509), + [anon_sym___CALLER__] = ACTIONS(3509), + [anon_sym___STACKTRACE__] = ACTIONS(3509), + [sym__alias_single] = ACTIONS(81), + [sym__atom_word_literal] = ACTIONS(81), + [anon_sym_DASH_GT] = ACTIONS(89), + [anon_sym_COLON_COLON] = ACTIONS(89), + [anon_sym_PIPE] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(89), + [anon_sym_EQ] = ACTIONS(89), + [anon_sym_CARET_CARET_CARET] = ACTIONS(89), + [anon_sym_SLASH_SLASH] = ACTIONS(89), + [anon_sym_STAR_STAR] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(89), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_LT_DASH] = ACTIONS(89), + [anon_sym_BSLASH_BSLASH] = ACTIONS(89), + [anon_sym_PIPE_PIPE] = ACTIONS(89), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(89), + [anon_sym_AMP_AMP] = ACTIONS(89), + [anon_sym_AMP_AMP_AMP] = ACTIONS(89), + [anon_sym_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ] = ACTIONS(89), + [anon_sym_EQ_TILDE] = ACTIONS(89), + [anon_sym_EQ_EQ_EQ] = ACTIONS(89), + [anon_sym_BANG_EQ_EQ] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(89), + [anon_sym_GT] = ACTIONS(89), + [anon_sym_LT_EQ] = ACTIONS(89), + [anon_sym_GT_EQ] = ACTIONS(89), + [anon_sym_PIPE_GT] = ACTIONS(89), + [anon_sym_LT_LT_LT] = ACTIONS(89), + [anon_sym_GT_GT_GT] = ACTIONS(89), + [anon_sym_LT_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT_GT] = ACTIONS(89), + [anon_sym_LT_TILDE] = ACTIONS(89), + [anon_sym_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_TILDE_GT] = ACTIONS(89), + [anon_sym_LT_PIPE_GT] = ACTIONS(89), + [anon_sym_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH] = ACTIONS(89), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(89), + [anon_sym_DASH_DASH_DASH] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(89), + [anon_sym_LT_GT] = ACTIONS(89), + [anon_sym_PLUS] = ACTIONS(89), + [anon_sym_DASH] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_BANG] = ACTIONS(89), + [anon_sym_CARET] = ACTIONS(89), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(89), + [anon_sym_DQUOTE] = ACTIONS(3511), + [anon_sym_SQUOTE] = ACTIONS(3513), + [anon_sym_not] = ACTIONS(81), + [anon_sym_when] = ACTIONS(81), + [anon_sym_or] = ACTIONS(81), + [anon_sym_and] = ACTIONS(81), + [anon_sym_in] = ACTIONS(81), + [anon_sym_true] = ACTIONS(81), + [anon_sym_false] = ACTIONS(81), + [anon_sym_nil] = ACTIONS(81), + [anon_sym_after] = ACTIONS(81), + [anon_sym_catch] = ACTIONS(81), + [anon_sym_do] = ACTIONS(81), + [anon_sym_else] = ACTIONS(81), + [anon_sym_end] = ACTIONS(81), + [anon_sym_fn] = ACTIONS(81), + [anon_sym_rescue] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [sym__keyword_special_literal] = ACTIONS(133), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + }, + [1359] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3515), + [aux_sym_identifier_token1] = ACTIONS(3515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3515), + [sym_unused_identifier] = ACTIONS(3515), + [anon_sym___MODULE__] = ACTIONS(3515), + [anon_sym___DIR__] = ACTIONS(3515), + [anon_sym___ENV__] = ACTIONS(3515), + [anon_sym___CALLER__] = ACTIONS(3515), + [anon_sym___STACKTRACE__] = ACTIONS(3515), + [sym__alias_single] = ACTIONS(3515), + [sym__alias_multi] = ACTIONS(3515), + [sym_integer] = ACTIONS(3515), + [sym_float] = ACTIONS(3515), + [anon_sym_DASH_GT] = ACTIONS(3515), + [anon_sym_COLON_COLON] = ACTIONS(3515), + [anon_sym_PIPE] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_EQ] = ACTIONS(3515), + [anon_sym_STAR_STAR] = ACTIONS(3515), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_AT] = ACTIONS(3515), + [anon_sym_LT_DASH] = ACTIONS(3515), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3515), + [anon_sym_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3515), + [anon_sym_AMP_AMP] = ACTIONS(3515), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3515), + [anon_sym_EQ_EQ] = ACTIONS(3515), + [anon_sym_BANG_EQ] = ACTIONS(3515), + [anon_sym_EQ_TILDE] = ACTIONS(3515), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3515), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3515), + [anon_sym_LT] = ACTIONS(3515), + [anon_sym_GT] = ACTIONS(3515), + [anon_sym_LT_EQ] = ACTIONS(3515), + [anon_sym_GT_EQ] = ACTIONS(3515), + [anon_sym_PIPE_GT] = ACTIONS(3515), + [anon_sym_LT_LT_LT] = ACTIONS(3515), + [anon_sym_GT_GT_GT] = ACTIONS(3515), + [anon_sym_LT_LT_TILDE] = ACTIONS(3515), + [anon_sym_TILDE_GT_GT] = ACTIONS(3515), + [anon_sym_LT_TILDE] = ACTIONS(3515), + [anon_sym_TILDE_GT] = ACTIONS(3515), + [anon_sym_LT_TILDE_GT] = ACTIONS(3515), + [anon_sym_LT_PIPE_GT] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3515), + [anon_sym_DOT_DOT] = ACTIONS(3515), + [anon_sym_LT_GT] = ACTIONS(3515), + [anon_sym_PLUS] = ACTIONS(3515), + [anon_sym_DASH] = ACTIONS(3515), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_SLASH] = ACTIONS(3515), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_CARET] = ACTIONS(3515), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3515), + [anon_sym_PERCENT] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE] = ACTIONS(3515), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3515), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3515), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_not] = ACTIONS(3515), + [anon_sym_when] = ACTIONS(3515), + [anon_sym_or] = ACTIONS(3515), + [anon_sym_and] = ACTIONS(3515), + [anon_sym_in] = ACTIONS(3515), + [anon_sym_CARET_CARET] = ACTIONS(3515), + [anon_sym_true] = ACTIONS(3515), + [anon_sym_false] = ACTIONS(3515), + [anon_sym_nil] = ACTIONS(3515), + [anon_sym_fn] = ACTIONS(3515), + [anon_sym_LT_LT] = ACTIONS(3515), + [sym_char] = ACTIONS(3515), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3517), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3517), + [sym__not_in] = ACTIONS(3517), + }, + [1360] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_identifier_token1] = ACTIONS(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3519), + [sym_unused_identifier] = ACTIONS(3519), + [anon_sym___MODULE__] = ACTIONS(3519), + [anon_sym___DIR__] = ACTIONS(3519), + [anon_sym___ENV__] = ACTIONS(3519), + [anon_sym___CALLER__] = ACTIONS(3519), + [anon_sym___STACKTRACE__] = ACTIONS(3519), + [sym__alias_single] = ACTIONS(3519), + [sym__alias_multi] = ACTIONS(3519), + [sym_integer] = ACTIONS(3519), + [sym_float] = ACTIONS(3519), + [anon_sym_DASH_GT] = ACTIONS(3519), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_PIPE] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_EQ] = ACTIONS(3519), + [anon_sym_STAR_STAR] = ACTIONS(3519), + [anon_sym_DOT] = ACTIONS(3519), + [anon_sym_AT] = ACTIONS(3519), + [anon_sym_LT_DASH] = ACTIONS(3519), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3519), + [anon_sym_PIPE_PIPE] = ACTIONS(3519), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3519), + [anon_sym_AMP_AMP] = ACTIONS(3519), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3519), + [anon_sym_EQ_EQ] = ACTIONS(3519), + [anon_sym_BANG_EQ] = ACTIONS(3519), + [anon_sym_EQ_TILDE] = ACTIONS(3519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3519), + [anon_sym_LT] = ACTIONS(3519), + [anon_sym_GT] = ACTIONS(3519), + [anon_sym_LT_EQ] = ACTIONS(3519), + [anon_sym_GT_EQ] = ACTIONS(3519), + [anon_sym_PIPE_GT] = ACTIONS(3519), + [anon_sym_LT_LT_LT] = ACTIONS(3519), + [anon_sym_GT_GT_GT] = ACTIONS(3519), + [anon_sym_LT_LT_TILDE] = ACTIONS(3519), + [anon_sym_TILDE_GT_GT] = ACTIONS(3519), + [anon_sym_LT_TILDE] = ACTIONS(3519), + [anon_sym_TILDE_GT] = ACTIONS(3519), + [anon_sym_LT_TILDE_GT] = ACTIONS(3519), + [anon_sym_LT_PIPE_GT] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3519), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [anon_sym_LT_GT] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3519), + [anon_sym_DASH] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_SLASH] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_CARET] = ACTIONS(3519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3519), + [anon_sym_PERCENT] = ACTIONS(3519), + [anon_sym_DQUOTE] = ACTIONS(3519), + [anon_sym_SQUOTE] = ACTIONS(3519), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3519), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_not] = ACTIONS(3519), + [anon_sym_when] = ACTIONS(3519), + [anon_sym_or] = ACTIONS(3519), + [anon_sym_and] = ACTIONS(3519), + [anon_sym_in] = ACTIONS(3519), + [anon_sym_CARET_CARET] = ACTIONS(3519), + [anon_sym_true] = ACTIONS(3519), + [anon_sym_false] = ACTIONS(3519), + [anon_sym_nil] = ACTIONS(3519), + [anon_sym_fn] = ACTIONS(3519), + [anon_sym_LT_LT] = ACTIONS(3519), + [sym_char] = ACTIONS(3519), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3521), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3521), + [sym__not_in] = ACTIONS(3521), + }, + [1361] = { + [anon_sym_LF] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(3381), + [aux_sym_identifier_token1] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3381), + [sym_unused_identifier] = ACTIONS(3381), + [anon_sym___MODULE__] = ACTIONS(3381), + [anon_sym___DIR__] = ACTIONS(3381), + [anon_sym___ENV__] = ACTIONS(3381), + [anon_sym___CALLER__] = ACTIONS(3381), + [anon_sym___STACKTRACE__] = ACTIONS(3381), + [sym__alias_single] = ACTIONS(3381), + [sym__alias_multi] = ACTIONS(3381), + [sym_integer] = ACTIONS(3381), + [sym_float] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_STAR_STAR] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_LT_DASH] = ACTIONS(3381), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3381), + [anon_sym_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3381), + [anon_sym_AMP_AMP] = ACTIONS(3381), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3381), + [anon_sym_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ] = ACTIONS(3381), + [anon_sym_EQ_TILDE] = ACTIONS(3381), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3381), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3381), + [anon_sym_PIPE_GT] = ACTIONS(3381), + [anon_sym_LT_LT_LT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3381), + [anon_sym_LT_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE] = ACTIONS(3381), + [anon_sym_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_TILDE_GT] = ACTIONS(3381), + [anon_sym_LT_PIPE_GT] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3381), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3381), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_LT_GT] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3381), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(3381), + [anon_sym_PERCENT] = ACTIONS(3381), + [anon_sym_DQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3381), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(3381), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3381), + [anon_sym_not] = ACTIONS(3381), + [anon_sym_when] = ACTIONS(3381), + [anon_sym_or] = ACTIONS(3381), + [anon_sym_and] = ACTIONS(3381), + [anon_sym_in] = ACTIONS(3381), + [anon_sym_CARET_CARET] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [anon_sym_nil] = ACTIONS(3381), + [anon_sym_fn] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3381), + [sym_char] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym__atom_start] = ACTIONS(3383), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(3383), + [sym__not_in] = ACTIONS(3383), + }, + [1362] = { + [sym__terminator] = STATE(374), + [sym_after_block] = STATE(4076), + [sym_rescue_block] = STATE(4076), + [sym_catch_block] = STATE(4076), + [sym_else_block] = STATE(4076), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4071), + [aux_sym_do_block_repeat3] = STATE(4076), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3525), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3568), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1363] = { + [sym__terminator] = STATE(381), + [sym_after_block] = STATE(4103), + [sym_rescue_block] = STATE(4103), + [sym_catch_block] = STATE(4103), + [sym_else_block] = STATE(4103), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4007), + [aux_sym_do_block_repeat3] = STATE(4103), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3576), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1364] = { + [sym__terminator] = STATE(394), + [sym_after_block] = STATE(4093), + [sym_rescue_block] = STATE(4093), + [sym_catch_block] = STATE(4093), + [sym_else_block] = STATE(4093), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4037), + [aux_sym_do_block_repeat3] = STATE(4093), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3580), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1365] = { + [sym__terminator] = STATE(370), + [sym_after_block] = STATE(4118), + [sym_rescue_block] = STATE(4118), + [sym_catch_block] = STATE(4118), + [sym_else_block] = STATE(4118), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4056), + [aux_sym_do_block_repeat3] = STATE(4118), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1673), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1366] = { + [sym__terminator] = STATE(388), + [sym_after_block] = STATE(4092), + [sym_rescue_block] = STATE(4092), + [sym_catch_block] = STATE(4092), + [sym_else_block] = STATE(4092), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4004), + [aux_sym_do_block_repeat3] = STATE(4092), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3586), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1367] = { + [sym__terminator] = STATE(383), + [sym_after_block] = STATE(4113), + [sym_rescue_block] = STATE(4113), + [sym_catch_block] = STATE(4113), + [sym_else_block] = STATE(4113), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4062), + [aux_sym_do_block_repeat3] = STATE(4113), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3590), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1368] = { + [sym__terminator] = STATE(400), + [sym_after_block] = STATE(4133), + [sym_rescue_block] = STATE(4133), + [sym_catch_block] = STATE(4133), + [sym_else_block] = STATE(4133), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4045), + [aux_sym_do_block_repeat3] = STATE(4133), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3594), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1369] = { + [sym__terminator] = STATE(396), + [sym_after_block] = STATE(4080), + [sym_rescue_block] = STATE(4080), + [sym_catch_block] = STATE(4080), + [sym_else_block] = STATE(4080), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4016), + [aux_sym_do_block_repeat3] = STATE(4080), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3598), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1370] = { + [sym__terminator] = STATE(382), + [sym_after_block] = STATE(4105), + [sym_rescue_block] = STATE(4105), + [sym_catch_block] = STATE(4105), + [sym_else_block] = STATE(4105), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4028), + [aux_sym_do_block_repeat3] = STATE(4105), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1728), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1371] = { + [sym__terminator] = STATE(392), + [sym_after_block] = STATE(4085), + [sym_rescue_block] = STATE(4085), + [sym_catch_block] = STATE(4085), + [sym_else_block] = STATE(4085), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4068), + [aux_sym_do_block_repeat3] = STATE(4085), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1738), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1372] = { + [sym__terminator] = STATE(395), + [sym_after_block] = STATE(4095), + [sym_rescue_block] = STATE(4095), + [sym_catch_block] = STATE(4095), + [sym_else_block] = STATE(4095), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4022), + [aux_sym_do_block_repeat3] = STATE(4095), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1744), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1373] = { + [sym__terminator] = STATE(366), + [sym_after_block] = STATE(4109), + [sym_rescue_block] = STATE(4109), + [sym_catch_block] = STATE(4109), + [sym_else_block] = STATE(4109), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4064), + [aux_sym_do_block_repeat3] = STATE(4109), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3608), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1374] = { + [sym__terminator] = STATE(398), + [sym_after_block] = STATE(4077), + [sym_rescue_block] = STATE(4077), + [sym_catch_block] = STATE(4077), + [sym_else_block] = STATE(4077), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4049), + [aux_sym_do_block_repeat3] = STATE(4077), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1752), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1375] = { + [sym__terminator] = STATE(399), + [sym_after_block] = STATE(4128), + [sym_rescue_block] = STATE(4128), + [sym_catch_block] = STATE(4128), + [sym_else_block] = STATE(4128), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4041), + [aux_sym_do_block_repeat3] = STATE(4128), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3614), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1376] = { + [sym__terminator] = STATE(384), + [sym_after_block] = STATE(4106), + [sym_rescue_block] = STATE(4106), + [sym_catch_block] = STATE(4106), + [sym_else_block] = STATE(4106), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4033), + [aux_sym_do_block_repeat3] = STATE(4106), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1750), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1377] = { + [sym__terminator] = STATE(367), + [sym_after_block] = STATE(4084), + [sym_rescue_block] = STATE(4084), + [sym_catch_block] = STATE(4084), + [sym_else_block] = STATE(4084), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4014), + [aux_sym_do_block_repeat3] = STATE(4084), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1740), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1378] = { + [sym__terminator] = STATE(365), + [sym_after_block] = STATE(4117), + [sym_rescue_block] = STATE(4117), + [sym_catch_block] = STATE(4117), + [sym_else_block] = STATE(4117), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4059), + [aux_sym_do_block_repeat3] = STATE(4117), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3622), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1379] = { + [sym__terminator] = STATE(371), + [sym_after_block] = STATE(4097), + [sym_rescue_block] = STATE(4097), + [sym_catch_block] = STATE(4097), + [sym_else_block] = STATE(4097), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4073), + [aux_sym_do_block_repeat3] = STATE(4097), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1689), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1380] = { + [sym__terminator] = STATE(390), + [sym_after_block] = STATE(4119), + [sym_rescue_block] = STATE(4119), + [sym_catch_block] = STATE(4119), + [sym_else_block] = STATE(4119), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4057), + [aux_sym_do_block_repeat3] = STATE(4119), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1671), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1381] = { + [sym__terminator] = STATE(377), + [sym_after_block] = STATE(4125), + [sym_rescue_block] = STATE(4125), + [sym_catch_block] = STATE(4125), + [sym_else_block] = STATE(4125), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4038), + [aux_sym_do_block_repeat3] = STATE(4125), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3630), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1382] = { + [sym__terminator] = STATE(393), + [sym_after_block] = STATE(4104), + [sym_rescue_block] = STATE(4104), + [sym_catch_block] = STATE(4104), + [sym_else_block] = STATE(4104), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4027), + [aux_sym_do_block_repeat3] = STATE(4104), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(3634), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1383] = { + [sym__terminator] = STATE(379), + [sym_after_block] = STATE(4116), + [sym_rescue_block] = STATE(4116), + [sym_catch_block] = STATE(4116), + [sym_else_block] = STATE(4116), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4035), + [aux_sym_do_block_repeat3] = STATE(4116), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1706), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1384] = { + [sym__terminator] = STATE(387), + [sym_after_block] = STATE(4123), + [sym_rescue_block] = STATE(4123), + [sym_catch_block] = STATE(4123), + [sym_else_block] = STATE(4123), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4053), + [aux_sym_do_block_repeat3] = STATE(4123), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1718), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1385] = { + [sym__terminator] = STATE(373), + [sym_after_block] = STATE(4078), + [sym_rescue_block] = STATE(4078), + [sym_catch_block] = STATE(4078), + [sym_else_block] = STATE(4078), + [aux_sym__terminator_repeat1] = STATE(1309), + [aux_sym_do_block_repeat2] = STATE(4013), + [aux_sym_do_block_repeat3] = STATE(4078), + [anon_sym_LF] = ACTIONS(3523), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_DASH_GT] = ACTIONS(3527), + [anon_sym_COLON_COLON] = ACTIONS(3529), + [anon_sym_PIPE] = ACTIONS(3531), + [anon_sym_EQ] = ACTIONS(3533), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3535), + [anon_sym_SLASH_SLASH] = ACTIONS(3537), + [anon_sym_STAR_STAR] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(3541), + [anon_sym_LT_DASH] = ACTIONS(3543), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3543), + [anon_sym_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3545), + [anon_sym_AMP_AMP] = ACTIONS(3547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3547), + [anon_sym_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ] = ACTIONS(3549), + [anon_sym_EQ_TILDE] = ACTIONS(3549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3549), + [anon_sym_LT] = ACTIONS(3551), + [anon_sym_GT] = ACTIONS(3551), + [anon_sym_LT_EQ] = ACTIONS(3551), + [anon_sym_GT_EQ] = ACTIONS(3551), + [anon_sym_PIPE_GT] = ACTIONS(3553), + [anon_sym_LT_LT_LT] = ACTIONS(3553), + [anon_sym_GT_GT_GT] = ACTIONS(3553), + [anon_sym_LT_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE] = ACTIONS(3553), + [anon_sym_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_TILDE_GT] = ACTIONS(3553), + [anon_sym_LT_PIPE_GT] = ACTIONS(3553), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3555), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_LT_GT] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_SLASH] = ACTIONS(3559), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_EQ_GT] = ACTIONS(3564), + [anon_sym_or] = ACTIONS(3545), + [anon_sym_and] = ACTIONS(3547), + [anon_sym_in] = ACTIONS(3566), + [anon_sym_COMMA] = ACTIONS(3527), + [anon_sym_after] = ACTIONS(1659), + [anon_sym_catch] = ACTIONS(1661), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_end] = ACTIONS(1714), + [anon_sym_rescue] = ACTIONS(1669), + [anon_sym_LBRACK2] = ACTIONS(3570), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3572), + }, + [1386] = { + [sym_do_block] = STATE(1606), + [anon_sym_LF] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3644), + [anon_sym_SLASH_SLASH] = ACTIONS(3644), + [anon_sym_STAR_STAR] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3644), + [anon_sym_LT_DASH] = ACTIONS(3644), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_EQ_TILDE] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_GT] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_PIPE_GT] = ACTIONS(3644), + [anon_sym_LT_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_LT_LT_TILDE] = ACTIONS(3644), + [anon_sym_TILDE_GT_GT] = ACTIONS(3644), + [anon_sym_LT_TILDE] = ACTIONS(3644), + [anon_sym_TILDE_GT] = ACTIONS(3644), + [anon_sym_LT_TILDE_GT] = ACTIONS(3644), + [anon_sym_LT_PIPE_GT] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_LT_GT] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_after] = ACTIONS(3644), + [anon_sym_catch] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_end] = ACTIONS(3644), + [anon_sym_rescue] = ACTIONS(3644), + [anon_sym_LBRACK2] = ACTIONS(3642), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(3648), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3642), + }, + [1387] = { + [sym__anonymous_arguments] = STATE(1396), + [anon_sym_LF] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_RPAREN] = ACTIONS(3652), + [anon_sym_DASH_GT] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3652), + [anon_sym_PIPE] = ACTIONS(3652), + [anon_sym_EQ] = ACTIONS(3652), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3652), + [anon_sym_SLASH_SLASH] = ACTIONS(3652), + [anon_sym_STAR_STAR] = ACTIONS(3652), + [anon_sym_DOT] = ACTIONS(3652), + [anon_sym_LT_DASH] = ACTIONS(3652), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3652), + [anon_sym_PIPE_PIPE] = ACTIONS(3652), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3652), + [anon_sym_AMP_AMP] = ACTIONS(3652), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3652), + [anon_sym_EQ_EQ] = ACTIONS(3652), + [anon_sym_BANG_EQ] = ACTIONS(3652), + [anon_sym_EQ_TILDE] = ACTIONS(3652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3652), + [anon_sym_LT_EQ] = ACTIONS(3652), + [anon_sym_GT_EQ] = ACTIONS(3652), + [anon_sym_PIPE_GT] = ACTIONS(3652), + [anon_sym_LT_LT_LT] = ACTIONS(3652), + [anon_sym_GT_GT_GT] = ACTIONS(3652), + [anon_sym_LT_LT_TILDE] = ACTIONS(3652), + [anon_sym_TILDE_GT_GT] = ACTIONS(3652), + [anon_sym_LT_TILDE] = ACTIONS(3652), + [anon_sym_TILDE_GT] = ACTIONS(3652), + [anon_sym_LT_TILDE_GT] = ACTIONS(3652), + [anon_sym_LT_PIPE_GT] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3652), + [anon_sym_DOT_DOT] = ACTIONS(3652), + [anon_sym_LT_GT] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_when] = ACTIONS(3652), + [anon_sym_EQ_GT] = ACTIONS(3652), + [anon_sym_or] = ACTIONS(3652), + [anon_sym_and] = ACTIONS(3652), + [anon_sym_in] = ACTIONS(3652), + [anon_sym_COMMA] = ACTIONS(3652), + [anon_sym_after] = ACTIONS(3652), + [anon_sym_catch] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_end] = ACTIONS(3652), + [anon_sym_rescue] = ACTIONS(3652), + [anon_sym_LBRACK2] = ACTIONS(3650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(3650), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3650), + }, + [1388] = { + [sym_do_block] = STATE(1608), + [anon_sym_LF] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_RPAREN] = ACTIONS(3658), + [anon_sym_DASH_GT] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_PIPE] = ACTIONS(3658), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3658), + [anon_sym_SLASH_SLASH] = ACTIONS(3658), + [anon_sym_STAR_STAR] = ACTIONS(3658), + [anon_sym_DOT] = ACTIONS(3658), + [anon_sym_LT_DASH] = ACTIONS(3658), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3658), + [anon_sym_PIPE_PIPE] = ACTIONS(3658), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3658), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_EQ_TILDE] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_LT_EQ] = ACTIONS(3658), + [anon_sym_GT_EQ] = ACTIONS(3658), + [anon_sym_PIPE_GT] = ACTIONS(3658), + [anon_sym_LT_LT_LT] = ACTIONS(3658), + [anon_sym_GT_GT_GT] = ACTIONS(3658), + [anon_sym_LT_LT_TILDE] = ACTIONS(3658), + [anon_sym_TILDE_GT_GT] = ACTIONS(3658), + [anon_sym_LT_TILDE] = ACTIONS(3658), + [anon_sym_TILDE_GT] = ACTIONS(3658), + [anon_sym_LT_TILDE_GT] = ACTIONS(3658), + [anon_sym_LT_PIPE_GT] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3658), + [anon_sym_LT_GT] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_when] = ACTIONS(3658), + [anon_sym_EQ_GT] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3658), + [anon_sym_and] = ACTIONS(3658), + [anon_sym_in] = ACTIONS(3658), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_after] = ACTIONS(3658), + [anon_sym_catch] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_end] = ACTIONS(3658), + [anon_sym_rescue] = ACTIONS(3658), + [anon_sym_LBRACK2] = ACTIONS(3656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(3660), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3656), + }, + [1389] = { + [anon_sym_LF] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_RPAREN] = ACTIONS(3664), + [anon_sym_DASH_GT] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3664), + [anon_sym_PIPE] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(3664), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3664), + [anon_sym_SLASH_SLASH] = ACTIONS(3664), + [anon_sym_STAR_STAR] = ACTIONS(3664), + [anon_sym_DOT] = ACTIONS(3664), + [anon_sym_LT_DASH] = ACTIONS(3664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3664), + [anon_sym_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3664), + [anon_sym_AMP_AMP] = ACTIONS(3664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3664), + [anon_sym_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ] = ACTIONS(3664), + [anon_sym_EQ_TILDE] = ACTIONS(3664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_GT] = ACTIONS(3664), + [anon_sym_LT_EQ] = ACTIONS(3664), + [anon_sym_GT_EQ] = ACTIONS(3664), + [anon_sym_PIPE_GT] = ACTIONS(3664), + [anon_sym_LT_LT_LT] = ACTIONS(3664), + [anon_sym_GT_GT_GT] = ACTIONS(3664), + [anon_sym_LT_LT_TILDE] = ACTIONS(3664), + [anon_sym_TILDE_GT_GT] = ACTIONS(3664), + [anon_sym_LT_TILDE] = ACTIONS(3664), + [anon_sym_TILDE_GT] = ACTIONS(3664), + [anon_sym_LT_TILDE_GT] = ACTIONS(3664), + [anon_sym_LT_PIPE_GT] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3664), + [anon_sym_DOT_DOT] = ACTIONS(3664), + [anon_sym_LT_GT] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_when] = ACTIONS(3664), + [anon_sym_EQ_GT] = ACTIONS(3664), + [anon_sym_or] = ACTIONS(3664), + [anon_sym_and] = ACTIONS(3664), + [anon_sym_in] = ACTIONS(3664), + [anon_sym_COMMA] = ACTIONS(3664), + [anon_sym_after] = ACTIONS(3664), + [anon_sym_catch] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_end] = ACTIONS(3664), + [anon_sym_rescue] = ACTIONS(3664), + [anon_sym_LBRACK2] = ACTIONS(3662), + [sym_comment] = ACTIONS(5), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_do] = ACTIONS(3662), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3662), + }, + [1390] = { + [sym_do_block] = STATE(1400), + [anon_sym_LF] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_RPAREN] = ACTIONS(3644), + [anon_sym_DASH_GT] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3644), + [anon_sym_PIPE] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(3644), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3644), + [anon_sym_SLASH_SLASH] = ACTIONS(3644), + [anon_sym_STAR_STAR] = ACTIONS(3644), + [anon_sym_DOT] = ACTIONS(3644), + [anon_sym_LT_DASH] = ACTIONS(3644), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3644), + [anon_sym_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3644), + [anon_sym_AMP_AMP] = ACTIONS(3644), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3644), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_EQ_TILDE] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_GT] = ACTIONS(3644), + [anon_sym_LT_EQ] = ACTIONS(3644), + [anon_sym_GT_EQ] = ACTIONS(3644), + [anon_sym_PIPE_GT] = ACTIONS(3644), + [anon_sym_LT_LT_LT] = ACTIONS(3644), + [anon_sym_GT_GT_GT] = ACTIONS(3644), + [anon_sym_LT_LT_TILDE] = ACTIONS(3644), + [anon_sym_TILDE_GT_GT] = ACTIONS(3644), + [anon_sym_LT_TILDE] = ACTIONS(3644), + [anon_sym_TILDE_GT] = ACTIONS(3644), + [anon_sym_LT_TILDE_GT] = ACTIONS(3644), + [anon_sym_LT_PIPE_GT] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3644), + [anon_sym_DOT_DOT] = ACTIONS(3644), + [anon_sym_LT_GT] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_when] = ACTIONS(3644), + [anon_sym_EQ_GT] = ACTIONS(3644), + [anon_sym_or] = ACTIONS(3644), + [anon_sym_and] = ACTIONS(3644), + [anon_sym_in] = ACTIONS(3644), + [anon_sym_COMMA] = ACTIONS(3644), + [anon_sym_after] = ACTIONS(3644), + [anon_sym_catch] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_end] = ACTIONS(3644), + [anon_sym_rescue] = ACTIONS(3644), + [anon_sym_LBRACK2] = ACTIONS(3642), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(3642), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3642), + }, + [1391] = { + [sym_do_block] = STATE(1401), + [anon_sym_LF] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_RPAREN] = ACTIONS(3658), + [anon_sym_DASH_GT] = ACTIONS(3658), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_PIPE] = ACTIONS(3658), + [anon_sym_EQ] = ACTIONS(3658), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3658), + [anon_sym_SLASH_SLASH] = ACTIONS(3658), + [anon_sym_STAR_STAR] = ACTIONS(3658), + [anon_sym_DOT] = ACTIONS(3658), + [anon_sym_LT_DASH] = ACTIONS(3658), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3658), + [anon_sym_PIPE_PIPE] = ACTIONS(3658), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3658), + [anon_sym_EQ_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ] = ACTIONS(3658), + [anon_sym_EQ_TILDE] = ACTIONS(3658), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3658), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_GT] = ACTIONS(3658), + [anon_sym_LT_EQ] = ACTIONS(3658), + [anon_sym_GT_EQ] = ACTIONS(3658), + [anon_sym_PIPE_GT] = ACTIONS(3658), + [anon_sym_LT_LT_LT] = ACTIONS(3658), + [anon_sym_GT_GT_GT] = ACTIONS(3658), + [anon_sym_LT_LT_TILDE] = ACTIONS(3658), + [anon_sym_TILDE_GT_GT] = ACTIONS(3658), + [anon_sym_LT_TILDE] = ACTIONS(3658), + [anon_sym_TILDE_GT] = ACTIONS(3658), + [anon_sym_LT_TILDE_GT] = ACTIONS(3658), + [anon_sym_LT_PIPE_GT] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3658), + [anon_sym_DOT_DOT] = ACTIONS(3658), + [anon_sym_LT_GT] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_when] = ACTIONS(3658), + [anon_sym_EQ_GT] = ACTIONS(3658), + [anon_sym_or] = ACTIONS(3658), + [anon_sym_and] = ACTIONS(3658), + [anon_sym_in] = ACTIONS(3658), + [anon_sym_COMMA] = ACTIONS(3658), + [anon_sym_after] = ACTIONS(3658), + [anon_sym_catch] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_end] = ACTIONS(3658), + [anon_sym_rescue] = ACTIONS(3658), + [anon_sym_LBRACK2] = ACTIONS(3656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(3656), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3656), + }, + [1392] = { + [anon_sym_LF] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_RPAREN] = ACTIONS(3668), + [anon_sym_DASH_GT] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(3668), + [anon_sym_CARET_CARET_CARET] = ACTIONS(3668), + [anon_sym_SLASH_SLASH] = ACTIONS(3668), + [anon_sym_STAR_STAR] = ACTIONS(3668), + [anon_sym_DOT] = ACTIONS(3668), + [anon_sym_LT_DASH] = ACTIONS(3668), + [anon_sym_BSLASH_BSLASH] = ACTIONS(3668), + [anon_sym_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(3668), + [anon_sym_AMP_AMP] = ACTIONS(3668), + [anon_sym_AMP_AMP_AMP] = ACTIONS(3668), + [anon_sym_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ] = ACTIONS(3668), + [anon_sym_EQ_TILDE] = ACTIONS(3668), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3668), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_GT] = ACTIONS(3668), + [anon_sym_LT_EQ] = ACTIONS(3668), + [anon_sym_GT_EQ] = ACTIONS(3668), + [anon_sym_PIPE_GT] = ACTIONS(3668), + [anon_sym_LT_LT_LT] = ACTIONS(3668), + [anon_sym_GT_GT_GT] = ACTIONS(3668), + [anon_sym_LT_LT_TILDE] = ACTIONS(3668), + [anon_sym_TILDE_GT_GT] = ACTIONS(3668), + [anon_sym_LT_TILDE] = ACTIONS(3668), + [anon_sym_TILDE_GT] = ACTIONS(3668), + [anon_sym_LT_TILDE_GT] = ACTIONS(3668), + [anon_sym_LT_PIPE_GT] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH_DASH] = ACTIONS(3668), + [anon_sym_DOT_DOT] = ACTIONS(3668), + [anon_sym_LT_GT] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_EQ_GT] = ACTIONS(3668), + [anon_sym_or] = ACTIONS(3668), + [anon_sym_and] = ACTIONS(3668), + [anon_sym_in] = ACTIONS(3668), + [anon_sym_COMMA] = ACTIONS(3668), + [anon_sym_after] = ACTIONS(3668), + [anon_sym_catch] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_end] = ACTIONS(3668), + [anon_sym_rescue] = ACTIONS(3668), + [anon_sym_LBRACK2] = ACTIONS(3666), + [sym_comment] = ACTIONS(5), + [sym__keyword_end] = ACTIONS(137), + [sym__newline_before_do] = ACTIONS(3666), + [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(3666), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 1, + [0] = 8, ACTIONS(5), 1, + sym_comment, + ACTIONS(1986), 1, + anon_sym_DQUOTE, + ACTIONS(1988), 1, + anon_sym_SQUOTE, + ACTIONS(3672), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3799), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3670), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3674), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [81] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3676), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3678), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [154] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1532), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3680), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3682), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [229] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1529), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3684), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3686), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [304] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3688), 1, + anon_sym_LPAREN, + STATE(1549), 1, + sym__anonymous_arguments, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [381] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1527), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3690), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3692), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [456] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3694), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3696), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3698), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3700), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3702), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3704), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [675] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1513), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3656), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3658), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [750] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1956), 1, + anon_sym_DQUOTE, + ACTIONS(1958), 1, + anon_sym_SQUOTE, + ACTIONS(3708), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2159), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3706), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3710), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [831] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + ACTIONS(3714), 1, + sym__newline_before_do, + STATE(1775), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3656), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3658), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [910] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + ACTIONS(3716), 1, + sym__newline_before_do, + STATE(1761), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3642), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3644), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [989] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + ACTIONS(3718), 1, + sym__newline_before_do, + STATE(1772), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3684), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3686), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1068] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3666), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3668), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1143] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_DQUOTE, + ACTIONS(37), 1, + anon_sym_SQUOTE, + ACTIONS(3722), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3633), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3720), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3724), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [1224] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3728), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1620), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3726), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3730), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [1305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1378] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3732), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3734), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1451] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2052), 1, + anon_sym_DQUOTE, + ACTIONS(2054), 1, + anon_sym_SQUOTE, + ACTIONS(3738), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3473), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3736), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3740), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [1532] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3742), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3744), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1605] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + ACTIONS(3746), 1, + sym__newline_before_do, + STATE(1765), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3680), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3682), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1684] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1759] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_DQUOTE, + ACTIONS(2108), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2718), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3748), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3752), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [1840] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2026), 1, + anon_sym_DQUOTE, + ACTIONS(2028), 1, + anon_sym_SQUOTE, + ACTIONS(3756), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2929), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3754), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3758), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [1921] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3760), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3762), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1994] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2162), 1, + anon_sym_DQUOTE, + ACTIONS(2164), 1, + anon_sym_SQUOTE, + ACTIONS(3766), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1568), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3764), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3768), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [2075] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2082), 1, + anon_sym_DQUOTE, + ACTIONS(2084), 1, + anon_sym_SQUOTE, + ACTIONS(3772), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1854), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3770), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3774), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [2156] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1878), 1, + anon_sym_DQUOTE, + ACTIONS(1880), 1, + anon_sym_SQUOTE, + ACTIONS(3778), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3019), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3776), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3780), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [2237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3782), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3784), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3786), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3788), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2383] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3790), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3792), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2456] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + ACTIONS(3794), 1, + sym__newline_before_do, + STATE(1779), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3690), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3692), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2535] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2222), 1, + anon_sym_DQUOTE, + ACTIONS(2224), 1, + anon_sym_SQUOTE, + ACTIONS(3798), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3250), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3796), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3800), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [2616] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3802), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3804), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2762] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2837] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2912] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2987] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3062] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3137] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1514), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3642), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3644), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3828), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3830), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3832), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3834), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3504] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3577] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1651), 1, + anon_sym_DQUOTE, + ACTIONS(1653), 1, + anon_sym_SQUOTE, + ACTIONS(3838), 1, + sym__atom_word_literal, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1953), 4, + sym__atom_operator_literal, + sym__atom_special_literal, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3836), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PERCENT_LBRACE_RBRACE, + anon_sym_LBRACE_RBRACE, + anon_sym_PERCENT, + anon_sym_LT_LT_GT_GT, + anon_sym_DOT_DOT_SLASH_SLASH, + ACTIONS(3840), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_AT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + [3658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3802] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3666), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3668), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3876] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3832), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3834), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4020] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3858), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4094] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3864), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 54, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4242] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + STATE(1447), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 54, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4318] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3882), 1, + anon_sym_COMMA, + STATE(1450), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3880), 54, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4394] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3889), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 54, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4470] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4542] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4614] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3900), 1, + anon_sym_COMMA, + STATE(1450), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 54, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3802), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3804), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4834] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4906] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4978] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5050] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5122] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5194] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3962), 1, + anon_sym_when, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3968), 1, + anon_sym_COMMA, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + STATE(1454), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3944), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3928), 8, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [5312] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5386] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1695), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3680), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3682), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5532] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5604] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5676] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(3986), 1, + anon_sym_SEMI, + STATE(413), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4145), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3988), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [5800] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5872] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(3994), 1, + anon_sym_SEMI, + STATE(415), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4151), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3996), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [5996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6068] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4002), 1, + anon_sym_SEMI, + STATE(416), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4142), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4004), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [6192] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6264] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4010), 1, + anon_sym_SEMI, + STATE(408), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4159), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4012), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [6388] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6532] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6604] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6748] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6892] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6964] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7036] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7108] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7180] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7396] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7468] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7540] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4062), 1, + anon_sym_SEMI, + STATE(411), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4161), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1808), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [7664] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4068), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4064), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4066), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7738] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4070), 1, + anon_sym_SEMI, + STATE(419), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4165), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1822), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [7862] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8006] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8078] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3790), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3792), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8222] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3786), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3788), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8294] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3782), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3784), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8366] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1702), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4088), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3760), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3762), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8510] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8582] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3676), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3678), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8654] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3732), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3734), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8726] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4090), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4092), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8798] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4094), 1, + anon_sym_SEMI, + STATE(414), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4163), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1820), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [8922] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3561), 1, + anon_sym_when, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4096), 1, + anon_sym_SEMI, + STATE(409), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4139), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1816), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [9046] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4098), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4100), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9118] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4102), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9262] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4110), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4106), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9336] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3702), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3704), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9408] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3698), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3700), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4112), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4114), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9552] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4116), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4118), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4120), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4122), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9696] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4124), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4126), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9768] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4128), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4130), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4132), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4134), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4136), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4138), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9984] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4140), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4142), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10056] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4144), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4146), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10128] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4148), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4150), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4152), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4154), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10272] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4156), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4158), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10344] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4160), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4162), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10416] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4164), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4166), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10488] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4168), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4170), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10632] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3828), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3830), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10704] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4176), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4178), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4180), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4182), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10920] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4184), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4186), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11140] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4188), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4190), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4192), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4194), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4196), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4198), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11356] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11500] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4208), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4210), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [11576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4218), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4220), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11648] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11796] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11868] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_LPAREN, + STATE(1406), 1, + sym__anonymous_arguments, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11944] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1693), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3684), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3686), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12018] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12090] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4226), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4228), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12162] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + ACTIONS(4230), 1, + sym__newline_before_do, + STATE(2076), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3680), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3682), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12240] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4232), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4234), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12312] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + ACTIONS(4236), 1, + sym__newline_before_do, + STATE(2069), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3684), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3686), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12390] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4238), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3928), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12464] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + ACTIONS(4240), 1, + sym__newline_before_do, + STATE(2051), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3690), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3692), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12542] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4106), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4108), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12614] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3742), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3744), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12686] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4242), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4244), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12758] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4246), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4248), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12830] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4250), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4252), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12902] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12974] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13046] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13122] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13194] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1689), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3690), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3692), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13268] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13340] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4262), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4264), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13412] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4266), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4268), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13700] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13772] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13844] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13916] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13990] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14062] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14134] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14208] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14354] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 5, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14426] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14500] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14574] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14646] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14790] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14862] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3694), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3696), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + 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_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15006] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15078] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 56, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15222] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15364] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3962), 1, + anon_sym_when, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15546] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3666), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3668), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15619] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 42, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15704] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15775] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 42, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15860] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4246), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4248), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16034] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4250), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4252), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3698), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3700), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16283] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3702), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3704), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16463] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 41, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4226), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4228), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16621] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 19, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16791] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16862] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17006] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17077] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17150] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17223] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3962), 1, + anon_sym_when, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3944), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4270), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4272), 9, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17336] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4262), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4264), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17407] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3962), 1, + anon_sym_when, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3944), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4274), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4276), 9, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17520] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17662] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17804] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_COMMA, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + STATE(1627), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4292), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3928), 7, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [17921] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4322), 1, + anon_sym_COMMA, + STATE(1628), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 53, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17996] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4324), 1, + anon_sym_COMMA, + STATE(1628), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3880), 53, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18071] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3962), 1, + anon_sym_when, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3944), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3880), 9, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [18184] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4327), 1, + anon_sym_COMMA, + STATE(1630), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 53, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18401] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4266), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4268), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18614] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4242), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4244), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18898] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18971] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19044] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 27, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19139] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4330), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4064), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4066), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19212] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3732), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3734), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19283] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 31, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19376] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3676), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3678), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19447] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 40, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19538] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 43, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19763] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19834] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19976] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1702), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4088), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20047] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 51, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20126] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 53, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20203] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4332), 1, + anon_sym_COMMA, + STATE(1681), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 53, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20278] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3694), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3696), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20349] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20491] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3930), 1, + anon_sym_COLON_COLON, + ACTIONS(3932), 1, + anon_sym_PIPE, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3962), 1, + anon_sym_when, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20673] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20744] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21028] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4090), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4092), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21099] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3688), 1, + anon_sym_LPAREN, + STATE(1554), 1, + sym__anonymous_arguments, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21174] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4106), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4108), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21245] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4335), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4106), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4108), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21318] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4098), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4100), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21389] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4112), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4114), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4144), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4146), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4116), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4118), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4120), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4122), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21673] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4124), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4126), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21744] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4128), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4130), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3760), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3762), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21886] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3934), 1, + anon_sym_EQ, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3964), 1, + anon_sym_EQ_GT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3946), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3948), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21991] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4337), 1, + anon_sym_COMMA, + STATE(1630), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 53, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4132), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4134), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22137] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4136), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4138), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22279] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4140), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4142), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22350] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4148), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4150), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4152), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4154), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22492] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4156), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4158), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4160), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4162), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4164), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4166), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4168), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4170), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22918] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4176), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4178), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23060] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3832), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3834), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23344] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23415] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4180), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4182), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23770] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23841] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23916] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3936), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3938), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3940), 1, + anon_sym_STAR_STAR, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3966), 1, + anon_sym_in, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(3972), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3960), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(3952), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3950), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3956), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3954), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 22, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3782), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3784), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24084] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4184), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4186), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24226] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4188), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4190), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4192), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4194), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24368] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4196), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4198), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24439] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3786), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3788), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24510] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3790), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3792), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4232), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4234), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24652] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24725] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4224), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24800] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25013] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25086] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(3844), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25161] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3742), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3744), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25303] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25374] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4218), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4220), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25516] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4342), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3928), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25731] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4102), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25802] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4208), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4210), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [25877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26090] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26161] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26303] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26374] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26587] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26729] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26800] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 55, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27013] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4344), 1, + anon_sym_LF, + ACTIONS(4347), 1, + anon_sym_SEMI, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + STATE(404), 1, + sym__terminator, + STATE(1310), 1, + aux_sym__terminator_repeat1, + STATE(4158), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4364), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1768), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [27133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4180), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4182), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27413] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4246), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4248), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27483] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4232), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4234), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1702), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4088), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27693] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27765] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3698), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3700), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27835] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27905] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 52, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27981] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28059] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4176), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4178), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28199] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 42, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28281] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28371] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28443] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28515] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 30, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4168), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4170), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28677] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4164), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4166), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28841] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3702), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3704), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28911] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28981] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29121] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4160), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4162), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29191] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29295] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4156), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4158), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29365] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29475] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29571] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29641] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 18, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29739] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29811] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4274), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4292), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4276), 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(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [29923] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4152), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4154), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4148), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4150), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30063] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4102), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30133] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30313] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30383] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4392), 2, + anon_sym_DASH_GT, + anon_sym_when, + ACTIONS(4102), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30455] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4184), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4186), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4140), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4142), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30595] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3694), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3696), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30665] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 41, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4242), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4244), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30819] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4188), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4190), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30889] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4192), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4194), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4196), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4198), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31239] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(3844), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31313] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4395), 1, + anon_sym_COMMA, + STATE(1807), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 53, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31387] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31457] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31527] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4090), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4092), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31667] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4398), 1, + anon_sym_COMMA, + STATE(1813), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 53, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31741] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4401), 1, + anon_sym_COMMA, + STATE(1807), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 53, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31885] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 41, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31969] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32071] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4208), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4210), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [32145] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32219] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32325] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32433] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 40, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32519] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4250), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4252), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32729] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32939] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3662), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3664), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [33011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33081] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3742), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3744), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33361] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33501] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + ACTIONS(4406), 1, + sym__newline_before_do, + STATE(2543), 1, + sym_do_block, + ACTIONS(3642), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3644), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [33577] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33717] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33787] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33857] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33927] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4132), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4134), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34067] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4270), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4292), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4272), 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(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [34179] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34249] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34319] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3666), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3668), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [34391] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(4408), 1, + anon_sym_LF, + ACTIONS(4411), 1, + anon_sym_SEMI, + STATE(403), 1, + sym__terminator, + STATE(1310), 1, + aux_sym__terminator_repeat1, + STATE(4143), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4364), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1764), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [34511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34651] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4136), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4138), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34721] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + ACTIONS(4414), 1, + sym__newline_before_do, + STATE(2435), 1, + sym_do_block, + ACTIONS(3656), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3658), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [34797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4262), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4264), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4098), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4100), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35007] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35077] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3832), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3834), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35217] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35287] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35357] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3790), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3792), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3786), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3788), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35497] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4416), 1, + anon_sym_LPAREN, + STATE(1912), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3650), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [35571] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3782), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3784), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3760), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3762), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35851] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35921] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35991] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36061] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4226), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4228), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36201] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36413] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36483] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36623] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4278), 1, + anon_sym_COLON_COLON, + ACTIONS(4280), 1, + anon_sym_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4284), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4286), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4288), 1, + anon_sym_STAR_STAR, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4310), 1, + anon_sym_when, + ACTIONS(4312), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4320), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4292), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4294), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4296), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4300), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4298), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4304), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3880), 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(4302), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [36735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36805] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [36945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__keyword_end, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4266), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4268), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37085] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4418), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 54, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37297] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4224), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37371] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4218), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4220), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4112), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4114), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4116), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4118), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3676), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3678), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37651] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4120), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4122), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4124), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4126), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37791] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4128), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4130), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3732), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3734), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [37931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38001] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1957), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3642), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3644), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [38073] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1963), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3656), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3658), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [38145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38215] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 55, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4032), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [38703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4132), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4134), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38772] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4112), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4114), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38841] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2126), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3680), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3682), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [38912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38981] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2124), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3684), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3686), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [39052] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4116), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4118), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39121] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2121), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3690), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3692), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [39192] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4124), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4126), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3694), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3696), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [39330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39399] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4260), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [39468] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39537] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4128), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4130), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39606] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39675] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4136), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4138), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39744] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39817] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 50, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39894] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40032] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4184), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4186), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40170] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 30, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4098), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4100), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40330] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4420), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3854), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3856), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [40401] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40470] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4090), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4092), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4256), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [40677] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40746] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40835] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40904] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4266), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4268), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41111] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + ACTIONS(4422), 1, + sym__newline_before_do, + STATE(2869), 1, + sym_do_block, + ACTIONS(3690), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3692), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [41186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4206), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [41255] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4202), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [41324] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41417] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41512] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4180), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4182), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4102), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4140), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4142), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41719] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41822] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4188), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4190), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41891] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 18, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41988] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4262), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4264), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42057] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3742), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3744), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [42126] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4270), 1, + anon_sym_LF, + ACTIONS(4424), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4272), 8, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3553), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [42237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [42306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3698), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3700), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [42375] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + ACTIONS(4426), 1, + sym__newline_before_do, + STATE(2872), 1, + sym_do_block, + ACTIONS(3684), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3686), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [42450] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3824), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3826), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [42521] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4424), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3543), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4276), 8, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3553), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [42632] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4192), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4194), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42701] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + ACTIONS(4428), 1, + sym__newline_before_do, + STATE(2874), 1, + sym_do_block, + ACTIONS(3680), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3682), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [42776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3702), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3704), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [42845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4196), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4198), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42914] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43052] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43121] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 42, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43202] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3820), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3822), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1702), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4088), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3867), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3869), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3892), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3894), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3896), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3898), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43549] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3902), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3904), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3906), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3908), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3910), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3912), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43756] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3914), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3916), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [43932] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3918), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3920), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44001] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3922), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3924), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44070] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3974), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3976), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44139] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3978), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3980), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3982), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3984), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3990), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3992), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3998), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4000), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44415] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4008), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4014), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4016), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44553] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 52, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44628] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4424), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44737] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3816), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3818), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44808] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3662), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3664), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3732), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3734), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [44946] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3812), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3814), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3802), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3804), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45086] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3806), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3808), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3676), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3678), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45226] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45295] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45364] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45433] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4018), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4020), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4022), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4024), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45571] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4028), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45640] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4120), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4122), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45709] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4036), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45778] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4040), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4042), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4044), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45916] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4046), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4048), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [45985] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3846), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3848), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46054] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4050), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4052), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4056), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46192] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4058), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4060), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4072), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4074), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4076), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4078), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46399] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4080), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4082), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46468] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4084), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4086), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46537] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46606] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3760), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3762), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46675] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46744] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3782), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3784), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3786), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3788), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3790), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3792), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [46951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [47158] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4208), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4210), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [47231] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3529), 1, + anon_sym_COLON_COLON, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4424), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47340] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4218), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4220), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47409] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4224), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47482] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47551] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(3844), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 53, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [47693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4148), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4150), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4152), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4154), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47900] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [48038] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4156), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4158), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48107] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [48176] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 41, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48466] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48604] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48673] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48880] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48949] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49018] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4160), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4162), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49087] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4226), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4228), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49294] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49363] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4430), 1, + anon_sym_COMMA, + STATE(2063), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 52, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49574] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4250), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4252), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4246), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4248), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4242), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4244), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3832), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3834), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [49850] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4433), 1, + anon_sym_COMMA, + STATE(2064), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 52, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49923] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4436), 1, + anon_sym_COMMA, + STATE(2064), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 52, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49996] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3531), 1, + anon_sym_PIPE, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3564), 1, + anon_sym_EQ_GT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4164), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4166), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50170] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 41, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50322] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4168), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4170), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50391] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3533), 1, + anon_sym_EQ, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3566), 1, + anon_sym_in, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3572), 1, + sym__not_in, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3551), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3555), 6, + anon_sym_PLUS_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), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50492] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4232), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4234), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50630] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3828), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3830), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [50699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50768] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4176), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4178), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50906] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [50975] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51044] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51113] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51182] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51320] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51389] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51527] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51665] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51734] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51803] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51872] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51941] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52010] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52217] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4439), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 53, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52288] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4441), 1, + anon_sym_COMMA, + STATE(2098), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 52, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52361] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4441), 1, + anon_sym_COMMA, + STATE(2064), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 52, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52434] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 54, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52503] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3535), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3537), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3539), 1, + anon_sym_STAR_STAR, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3559), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(3555), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 40, + anon_sym_SEMI, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52588] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4443), 1, + anon_sym_SEMI, + ACTIONS(4445), 1, + anon_sym_RPAREN, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + STATE(127), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4746), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [52708] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2560), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3642), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3644), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [52778] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2554), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3656), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3658), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [52848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(1702), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4088), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [52916] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4232), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4234), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [52984] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_LPAREN, + STATE(2577), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3650), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53056] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(989), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4488), 1, + anon_sym_SEMI, + STATE(158), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4759), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [53176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4090), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4092), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53244] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4100), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53312] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4112), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4114), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53380] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4116), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4118), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53448] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4120), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4122), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4124), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4126), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4128), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4130), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53652] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4132), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4134), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4136), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4138), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53788] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4140), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4142), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4148), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4150), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53924] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4152), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4154), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [53992] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4156), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4158), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54060] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4160), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4162), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54128] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4164), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4166), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54196] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3666), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3668), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54266] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4168), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4170), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54334] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54402] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4176), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4178), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54470] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4180), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4182), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54606] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54678] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54746] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4184), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4186), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54814] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4188), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4190), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4192), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4194), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [54950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4196), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4198), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55018] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4202), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55086] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4206), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55154] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4208), 1, + sym__newline_before_do, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4210), 6, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [55226] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4218), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4220), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55294] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4222), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55366] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55434] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55570] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4226), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4228), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55638] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3816), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3818), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4242), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4244), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55774] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4246), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4248), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55842] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4250), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4252), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55910] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4256), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [55978] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4260), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56046] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(3842), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56118] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56254] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56322] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56424] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4104), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56566] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56642] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3662), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3664), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4262), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4264), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56780] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4266), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4268), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56848] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 41, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3650), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [56996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3806), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3808), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3812), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3814), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57132] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57220] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3820), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3822), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57356] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 29, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [57446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3824), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3826), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57514] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57582] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [57990] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58126] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58262] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58466] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58738] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58874] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [58942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59010] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59078] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59146] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59214] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59350] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59418] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59554] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59690] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3858), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [59760] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59854] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 17, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [59950] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 40, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60032] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 40, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60114] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60214] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60298] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60390] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60526] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60594] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60662] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [60934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [61002] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [61070] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [61138] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3666), 5, + sym__newline_before_do, + sym__not_in, ts_builtin_sym_end, - [4] = 1, - ACTIONS(7), 1, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3668), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [61208] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1045), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4524), 1, + anon_sym_SEMI, + STATE(161), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4772), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [61328] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(911), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4526), 1, + anon_sym_SEMI, + STATE(166), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4761), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [61448] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 5, + sym__newline_before_do, + sym__not_in, ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [61518] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1009), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4528), 1, + anon_sym_SEMI, + STATE(169), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4836), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [61638] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + ACTIONS(4532), 1, + sym__newline_before_do, + STATE(3225), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3642), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3644), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [61712] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4534), 1, + anon_sym_SEMI, + ACTIONS(4536), 1, + anon_sym_RPAREN, + STATE(180), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4790), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [61832] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(987), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4539), 1, + anon_sym_SEMI, + STATE(175), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4792), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [61952] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + ACTIONS(4541), 1, + sym__newline_before_do, + STATE(3211), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3656), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3658), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [62026] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2328), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3656), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3658), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [62096] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2333), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3642), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3644), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [62166] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_LPAREN, + STATE(2363), 1, + sym__anonymous_arguments, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [62238] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4545), 1, + anon_sym_COMMA, + STATE(2236), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3871), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3873), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [62310] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4488), 1, + anon_sym_SEMI, + ACTIONS(4548), 1, + anon_sym_RPAREN, + STATE(158), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4759), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62430] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4550), 1, + anon_sym_SEMI, + STATE(160), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4809), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62550] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_COMMA, + STATE(2243), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3860), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3862), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [62622] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(995), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4555), 1, + anon_sym_SEMI, + STATE(149), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4778), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62742] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4524), 1, + anon_sym_SEMI, + ACTIONS(4557), 1, + anon_sym_RPAREN, + STATE(161), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4772), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62862] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4534), 1, + anon_sym_SEMI, + ACTIONS(4559), 1, + anon_sym_RPAREN, + STATE(180), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4790), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62982] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(4561), 1, + anon_sym_COLON_COLON, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(4567), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4565), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4272), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63092] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4569), 1, + anon_sym_COMMA, + STATE(2241), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3878), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3880), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [63164] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(947), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4572), 1, + anon_sym_SEMI, + STATE(131), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4735), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63284] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4574), 1, + anon_sym_COMMA, + STATE(2243), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [63356] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [63424] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1043), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4577), 1, + anon_sym_SEMI, + STATE(173), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4800), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63544] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(4561), 1, + anon_sym_COLON_COLON, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(4567), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63652] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1021), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4579), 1, + anon_sym_SEMI, + STATE(176), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4847), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63772] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(993), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4581), 1, + anon_sym_SEMI, + STATE(150), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4815), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [63892] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4583), 1, + anon_sym_COMMA, + STATE(2271), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [63964] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4550), 1, + anon_sym_SEMI, + ACTIONS(4586), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4809), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64084] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(4561), 1, + anon_sym_COLON_COLON, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(4567), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4565), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4276), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64194] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + ACTIONS(4590), 1, + sym__newline_before_do, + STATE(3239), 1, + sym_do_block, + ACTIONS(3656), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3658), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [64268] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + ACTIONS(4592), 1, + sym__newline_before_do, + STATE(3183), 1, + sym_do_block, + ACTIONS(3642), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3644), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [64342] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4594), 1, + anon_sym_COMMA, + STATE(2249), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [64414] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(915), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4443), 1, + anon_sym_SEMI, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + STATE(127), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4746), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64534] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(921), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_SEMI, + STATE(162), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4737), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64654] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4572), 1, + anon_sym_SEMI, + ACTIONS(4599), 1, + anon_sym_RPAREN, + STATE(131), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4735), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64774] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4144), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4146), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [64842] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4601), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4108), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [64912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4108), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [64980] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(4561), 1, + anon_sym_COLON_COLON, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65086] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65190] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4494), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4498), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4500), 1, + anon_sym_STAR_STAR, + ACTIONS(4518), 1, + anon_sym_EQ_GT, + ACTIONS(4520), 1, + anon_sym_in, + ACTIONS(4522), 1, + sym__not_in, + ACTIONS(4561), 1, + anon_sym_COLON_COLON, + ACTIONS(4563), 1, + anon_sym_PIPE, + ACTIONS(4567), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4514), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4516), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4502), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4504), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4508), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4506), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4512), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4510), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65298] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3926), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4633), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4639), 1, + anon_sym_COMMA, + ACTIONS(4641), 1, + sym__not_in, + STATE(2274), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4615), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3928), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_do, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65412] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4643), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4066), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [65482] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(935), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_SEMI, + STATE(144), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4819), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65602] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3662), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3664), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [65672] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1031), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4647), 1, + anon_sym_SEMI, + STATE(151), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4838), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65792] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4579), 1, + anon_sym_SEMI, + ACTIONS(4649), 1, + anon_sym_RPAREN, + STATE(176), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4847), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65912] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4651), 1, + anon_sym_COMMA, + STATE(2270), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3880), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [65984] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4654), 1, + anon_sym_COMMA, + STATE(2271), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [66056] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(983), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4534), 1, + anon_sym_SEMI, + STATE(180), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4790), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [66244] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4657), 1, + anon_sym_COMMA, + STATE(2241), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [66316] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3666), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3668), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [66386] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4659), 1, + anon_sym_SEMI, + STATE(136), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4804), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66506] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_SEMI, + ACTIONS(4661), 1, + anon_sym_RPAREN, + STATE(144), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4819), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66626] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4443), 1, + anon_sym_SEMI, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4663), 1, + anon_sym_RPAREN, + STATE(127), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4746), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66746] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(973), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4666), 1, + anon_sym_SEMI, + STATE(163), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4763), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66866] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4668), 1, + anon_sym_SEMI, + STATE(165), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4747), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66986] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4666), 1, + anon_sym_SEMI, + ACTIONS(4670), 1, + anon_sym_RPAREN, + STATE(163), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4763), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [67106] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4672), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3926), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3928), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [67176] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_COMMA, + STATE(2270), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [67248] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1033), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4676), 1, + anon_sym_SEMI, + STATE(182), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4773), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [67368] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_when, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4714), 1, + anon_sym_COMMA, + ACTIONS(4716), 1, + sym__not_in, + STATE(2283), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4690), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3928), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [67482] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4416), 1, + anon_sym_LPAREN, + STATE(1958), 1, + sym__anonymous_arguments, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [67554] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4718), 1, + anon_sym_SEMI, + STATE(147), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4785), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [67674] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4676), 1, + anon_sym_SEMI, + ACTIONS(4720), 1, + anon_sym_RPAREN, + STATE(182), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4773), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [67794] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4528), 1, + anon_sym_SEMI, + ACTIONS(4722), 1, + anon_sym_RPAREN, + STATE(169), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4836), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [67914] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1013), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4724), 1, + anon_sym_SEMI, + STATE(155), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4844), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [68034] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1039), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4726), 1, + anon_sym_SEMI, + STATE(178), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4818), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [68154] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1037), 1, + anon_sym_RPAREN, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4728), 1, + anon_sym_SEMI, + STATE(156), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4828), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [68274] = 30, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(4726), 1, + anon_sym_SEMI, + ACTIONS(4730), 1, + anon_sym_RPAREN, + STATE(178), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4818), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [68394] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3050), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3680), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3682), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68463] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(4732), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4364), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4734), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [68572] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3867), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3869), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3892), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3894), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3896), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3898), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68773] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3902), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3904), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [68974] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69041] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69108] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69175] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69242] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3906), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3908), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69309] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3910), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3912), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69376] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69443] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69510] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69577] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69644] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3914), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3916), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69778] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3918), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3920), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3922), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3924), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3974), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3976), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [69979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3978), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3980), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70046] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3982), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3984), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70113] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3990), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3992), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70180] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3998), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4000), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70247] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4008), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70314] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4014), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4016), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70448] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + ACTIONS(4736), 1, + sym__newline_before_do, + STATE(3613), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3690), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3692), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [70521] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3662), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3664), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [70590] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + ACTIONS(4738), 1, + sym__newline_before_do, + STATE(3610), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3684), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3686), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [70663] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3702), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3704), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70864] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3742), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3744), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [70931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [70998] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(2361), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [71069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3698), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3700), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71136] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + ACTIONS(4743), 1, + sym__newline_before_do, + STATE(3607), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3680), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3682), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [71209] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4018), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4020), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71276] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4022), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4024), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4028), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71410] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4032), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71477] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4036), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4040), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4042), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4044), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71678] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4046), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4048), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3846), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3848), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71812] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4050), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4052), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4056), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [71946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4058), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4060), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4072), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4074), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72080] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4076), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4078), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4080), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4082), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72214] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4084), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4086), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72281] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4777), 1, + anon_sym_when, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_COMMA, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + STATE(2477), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3928), 2, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(4759), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3926), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [72394] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72461] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4789), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72530] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3732), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3734), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3832), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3834), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [72664] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3676), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3678), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [72731] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4633), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4615), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4272), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [72840] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3666), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3668), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [72909] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_COMMA, + STATE(2407), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3860), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3862), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [72980] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3694), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3696), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73047] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [73118] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3059), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3690), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3692), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73187] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3054), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3684), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3686), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73256] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73323] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73390] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73457] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73524] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [73993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74060] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4797), 1, + aux_sym_sigil_token3, + ACTIONS(3854), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3856), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [74129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74263] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3760), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3762), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74464] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3782), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3784), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3786), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3788), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74598] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [74665] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4799), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3854), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3856), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [74734] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [74801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [74868] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [74935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75002] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3790), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3792), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75270] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75404] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75471] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75538] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_COMMA, + STATE(2359), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3871), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3873), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [75609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 6, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 6, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75743] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 6, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 6, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [75944] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4804), 1, + anon_sym_COMMA, + STATE(2404), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3878), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3880), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [76015] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3077), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3656), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3658), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [76084] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3878), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4633), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4615), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3880), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76193] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4807), 1, + anon_sym_COMMA, + STATE(2407), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [76264] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [76331] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3008), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3642), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3644), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [76400] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [76467] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [76534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [76601] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4840), 1, + anon_sym_when, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4846), 1, + anon_sym_COMMA, + ACTIONS(4848), 1, + sym__not_in, + STATE(2414), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4822), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3928), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76714] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4850), 1, + anon_sym_COMMA, + STATE(2432), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [76785] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3742), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3744), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [76852] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_when, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4270), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4690), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4272), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76961] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + ACTIONS(4854), 1, + sym__newline_before_do, + STATE(3543), 1, + sym_do_block, + ACTIONS(3656), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3658), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [77034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [77101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [77168] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + ACTIONS(4856), 1, + sym__newline_before_do, + STATE(3538), 1, + sym_do_block, + ACTIONS(3642), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3644), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [77241] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [77310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [77377] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4858), 1, + anon_sym_COMMA, + STATE(2423), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3880), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [77448] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [77515] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [77584] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [77653] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4861), 1, + anon_sym_COMMA, + STATE(2427), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [77724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [77791] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_LPAREN, + STATE(2922), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3650), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [77862] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [77929] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [77998] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4866), 1, + anon_sym_COMMA, + STATE(2432), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3880), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [78069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [78136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [78203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3702), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3704), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [78270] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [78339] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [78422] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + 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, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [78527] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3330), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [78594] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3346), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [78661] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_COLON_COLON, + 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, + [78764] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [78863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3342), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [78930] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3338), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [78997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3790), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3792), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [79064] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79145] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79226] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [79333] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4202), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [79495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4206), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [79562] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 19, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79655] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [79746] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4256), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [79813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4260), 51, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [79880] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3786), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3788), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [79947] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 28, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80036] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3782), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3784), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [80103] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3760), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3762), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [80257] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 40, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80336] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80411] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [80484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3869), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [80551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3892), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3894), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [80618] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [80725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3896), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3898), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [80792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3902), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3904), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [80859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3906), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3908), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [80926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3910), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3912), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [80993] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + 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, + [81094] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3806), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3808), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [81163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3802), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3804), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [81230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3832), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3834), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [81297] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_when, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4690), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3880), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [81406] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3828), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3830), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [81473] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4869), 1, + anon_sym_COMMA, + STATE(2423), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [81544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3742), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3744), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [81611] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4871), 1, + anon_sym_COMMA, + STATE(2404), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [81682] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3828), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3830), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [81749] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4364), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4276), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [81858] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_COLON_COLON, + ACTIONS(4352), 1, + anon_sym_PIPE, + ACTIONS(4354), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4358), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4360), 1, + anon_sym_STAR_STAR, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_when, + ACTIONS(4384), 1, + anon_sym_EQ_GT, + ACTIONS(4386), 1, + anon_sym_in, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4390), 1, + sym__not_in, + ACTIONS(4873), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4364), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4378), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4366), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4368), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4372), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4370), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4376), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4875), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(4374), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [81967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3802), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3804), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3832), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3834), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82235] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3824), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3826), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82304] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3820), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3822), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82373] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3816), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3818), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82442] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3914), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3916), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82509] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3918), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3920), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3922), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3924), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3974), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3976), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82710] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3812), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3814), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82779] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3812), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3814), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [82848] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3806), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3808), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [82917] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_when, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4274), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4690), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4276), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [83026] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_COMMA, + STATE(2530), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [83097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3676), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3678), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [83164] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [83247] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3816), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3818), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [83316] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [83421] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [83524] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + [83623] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [83704] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [83785] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_when, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [83892] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + [83987] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [84080] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 23, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [84171] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [84260] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [84347] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [84426] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [84501] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [84574] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4680), 1, + anon_sym_PIPE, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4708), 1, + anon_sym_when, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [84681] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3942), 1, + anon_sym_DOT, + ACTIONS(3970), 1, + anon_sym_LBRACK2, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(4684), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4686), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4688), 1, + anon_sym_STAR_STAR, + ACTIONS(4710), 1, + anon_sym_EQ_GT, + ACTIONS(4712), 1, + anon_sym_in, + ACTIONS(4716), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4706), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4692), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4694), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4698), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4696), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4702), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4700), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + [84782] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4880), 1, + anon_sym_COMMA, + STATE(2498), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [84853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3732), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3734), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [84920] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3662), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3664), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [84987] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4883), 1, + anon_sym_COMMA, + STATE(2521), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [85058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [85125] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3820), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3822), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85194] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3824), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3826), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85263] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [85330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3978), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3980), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3982), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3984), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85464] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3990), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3992), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3998), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4000), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85598] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4886), 1, + anon_sym_COMMA, + STATE(2530), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [85669] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4008), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85736] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4889), 1, + anon_sym_COMMA, + STATE(2532), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3880), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [85807] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4014), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4016), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [85874] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [85941] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [86008] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3664), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86075] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3732), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3734), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86142] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_COMMA, + STATE(2532), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [86213] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4894), 1, + anon_sym_COMMA, + STATE(2542), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [86284] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4633), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4615), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4276), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [86393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3676), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3678), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86460] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4897), 1, + anon_sym_COMMA, + STATE(2521), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [86531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3698), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3700), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86598] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4936), 1, + anon_sym_COMMA, + ACTIONS(4938), 1, + sym__not_in, + STATE(2538), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4912), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3928), 3, + anon_sym_SEMI, + anon_sym_do, + anon_sym_end, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [86711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4020), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86778] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4022), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4024), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4028), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [86912] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [86995] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [87100] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [87203] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + [87302] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [87383] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [87464] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3702), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3704), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [87531] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4633), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [87638] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + [87733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4030), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4032), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [87800] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 18, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [87893] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 23, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [87984] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3698), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3700), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [88051] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 27, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [88140] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [88227] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 39, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [88306] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [88381] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 49, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [88454] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4603), 1, + anon_sym_COLON_COLON, + ACTIONS(4605), 1, + anon_sym_PIPE, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4633), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [88561] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4607), 1, + anon_sym_EQ, + ACTIONS(4609), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4611), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4613), 1, + anon_sym_STAR_STAR, + ACTIONS(4635), 1, + anon_sym_EQ_GT, + ACTIONS(4637), 1, + anon_sym_in, + ACTIONS(4641), 1, + sym__not_in, + ACTIONS(4629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4631), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4617), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4619), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4623), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4621), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4627), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4625), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + [88662] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + ACTIONS(4940), 1, + sym__newline_before_do, + STATE(3592), 1, + sym_do_block, + ACTIONS(3690), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3692), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [88735] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + ACTIONS(4942), 1, + sym__newline_before_do, + STATE(3601), 1, + sym_do_block, + ACTIONS(3684), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3686), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [88808] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + ACTIONS(4944), 1, + sym__newline_before_do, + STATE(3625), 1, + sym_do_block, + ACTIONS(3680), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3682), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [88881] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3926), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + anon_sym_when, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4984), 1, + anon_sym_COMMA, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + STATE(2479), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4960), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3928), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [88994] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4084), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4086), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [89061] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [89128] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [89195] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3790), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3792), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [89262] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2748), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3680), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3682), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89331] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2697), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3684), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3686), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89400] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4034), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4036), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [89467] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89534] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89601] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2752), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3690), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3692), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3694), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3696), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4040), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [89804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [89938] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3694), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3696), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [90005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3786), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3788), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [90072] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90610] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90677] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90744] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90878] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [90945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91146] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91347] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91414] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91548] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91615] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91682] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [91950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [92017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [92084] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [92151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [92218] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [92285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4042), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4044), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92352] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4046), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4048), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92419] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3782), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3784), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3760), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3762), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3846), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3848), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92620] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4050), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4052), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4056), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4260), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4256), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92888] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4060), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [92955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4072), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4074), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [93022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4076), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4078), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [93089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4206), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [93156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4202), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [93223] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4340), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93292] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93359] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93426] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93627] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93761] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93828] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93895] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [93962] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94364] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94632] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94766] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94833] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94900] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [94967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95235] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95302] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95369] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 4, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 51, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [95436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4080), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4082), 52, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [95503] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4208), 1, + sym__newline_before_do, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4210), 4, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [95573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [95639] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [95721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4184), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4186), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [95787] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4188), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4190), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [95853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4116), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4118), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [95919] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [95985] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [96051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4100), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [96117] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4990), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4108), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [96185] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [96251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 4, + sym__keyword_end, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [96317] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4108), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [96383] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4090), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4092), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [96449] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4192), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4194), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [96515] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4196), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4198), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [96581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [96647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [96713] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [96779] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4840), 1, + anon_sym_when, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4270), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4822), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4272), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [96887] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4992), 1, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [96957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4218), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4220), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97023] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4222), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97159] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [97357] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4226), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4228), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97423] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4168), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4170), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97489] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [97555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4232), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4234), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97621] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + [97719] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4242), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4244), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97785] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4246), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4248), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97851] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4250), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4252), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97917] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [97997] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_LPAREN, + STATE(2569), 1, + sym__anonymous_arguments, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [98067] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(3842), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98137] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98269] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + anon_sym_when, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4960), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4276), 4, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [98377] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98443] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4995), 1, + anon_sym_COMMA, + STATE(2689), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [98513] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1702), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4088), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [98579] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4102), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98645] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3926), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_when, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5034), 1, + anon_sym_COMMA, + ACTIONS(5036), 1, + sym__not_in, + STATE(2715), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3928), 2, + anon_sym_LBRACE, + anon_sym_do, + ACTIONS(5010), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [98757] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5038), 1, + anon_sym_COMMA, + STATE(2727), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [98827] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4104), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [98973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4262), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4264), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [99039] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [99109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4180), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4182), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [99175] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + anon_sym_when, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [99281] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5040), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3926), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3928), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [99349] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + [99443] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 17, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [99535] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 22, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [99625] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5042), 1, + anon_sym_COMMA, + STATE(2726), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [99695] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5045), 1, + anon_sym_COMMA, + STATE(2727), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3878), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3880), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [99765] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5048), 1, + anon_sym_COMMA, + STATE(2737), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3871), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [99835] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4266), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4268), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [99901] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3650), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [99967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3806), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3808), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3812), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3814), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3816), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3818), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100165] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3820), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3822), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3824), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3826), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3832), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3834), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [100363] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5051), 1, + anon_sym_COMMA, + STATE(2726), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3860), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [100433] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5054), 1, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [100503] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3742), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3744), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [100569] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [100657] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [100743] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100821] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100895] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [100967] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + anon_sym_when, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [101073] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101139] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [101239] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4176), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4178), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101371] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3906), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3908), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [101437] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4164), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4166), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101503] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4160), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4162), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101569] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4156), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4158), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101635] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [101701] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5057), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_keywords_repeat1, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 49, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [101771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4152), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4154), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4148), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4150), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [101903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4112), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4114), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [101969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4122), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4124), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4126), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102101] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3806), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3808), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [102169] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3812), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3814), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [102237] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3816), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3818), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [102305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4140), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4142), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [102371] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3820), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3822), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [102439] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3824), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3826), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [102507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4128), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4130), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4132), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4134), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4136), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4138), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3820), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3822), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102771] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4840), 1, + anon_sym_when, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4822), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3880), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [102879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3816), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3818), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [102945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4104), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [103011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4136), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4138), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [103077] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3878), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4912), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3880), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [103185] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4132), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4134), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [103251] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [103355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4084), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4086), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4080), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4082), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4076), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4078), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4072), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4074), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4058), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4060), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4056), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103751] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4050), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4052), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3846), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3848), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4046), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4048), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [103949] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4042), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4044), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4040), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104081] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4036), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4032), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4028), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104279] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4022), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4024), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104345] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4018), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4020), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [104411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4124), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4126), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [104477] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4270), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4912), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4272), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [104585] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4120), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4122), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [104651] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4274), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4912), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4276), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [104759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4116), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4118), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [104825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4112), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4114), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [104891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4144), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4146), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [104957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4014), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4016), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105023] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4006), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4008), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3998), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4000), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105155] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4777), 1, + anon_sym_when, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4759), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4270), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4272), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [105263] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4242), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4244), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [105329] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3990), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3992), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105395] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5060), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4064), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4066), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [105463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3982), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3984), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [105595] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [105661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3978), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3980), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105727] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [105795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [105861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [105927] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3974), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3976), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [105993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3922), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3924), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [106059] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3666), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3668), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [106127] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3918), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3920), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [106193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3914), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3916), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [106259] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [106325] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_RPAREN, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5062), 1, + anon_sym_LF, + ACTIONS(5065), 1, + anon_sym_SEMI, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5098), 1, + anon_sym_when, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + STATE(460), 1, + sym__terminator, + STATE(1319), 1, + aux_sym__terminator_repeat1, + STATE(4810), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5080), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [106441] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4418), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [106509] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3850), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3852), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [106575] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3910), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3912), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [106641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [106707] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3902), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3904), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [106773] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [106839] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [106905] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3666), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3668), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [106973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3896), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3898), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [107039] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [107105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [107171] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3662), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3664), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [107239] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3892), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3894), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [107305] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5106), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4066), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [107373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4108), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [107439] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5108), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4108), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [107507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3867), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3869), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [107573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4140), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4142), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [107639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4128), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4130), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [107705] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4777), 1, + anon_sym_when, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4759), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3878), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3880), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [107813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4148), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4150), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [107879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4100), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [107945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4090), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4092), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [108011] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [108111] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4840), 1, + anon_sym_when, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [108217] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [108289] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [108363] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [108441] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [108527] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [108615] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [108705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4260), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [108771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4256), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [108837] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [108929] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + [109023] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4206), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [109089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4202), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [109155] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4840), 1, + anon_sym_when, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [109261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4152), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4154), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [109327] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [109407] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [109487] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + [109585] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4156), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4158), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [109651] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [109753] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [109857] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4144), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4146), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [109923] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [110005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4160), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4162), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110071] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5110), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3854), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3856), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [110139] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4164), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4166), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110205] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4168), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4170), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4176), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4178), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110469] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [110571] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5112), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 49, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [110641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(1702), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4088), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [110707] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110773] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110839] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [110971] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + ACTIONS(5115), 1, + sym__newline_before_do, + STATE(3868), 1, + sym_do_block, + ACTIONS(3680), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3682), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [111043] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + ACTIONS(5117), 1, + sym__newline_before_do, + STATE(3775), 1, + sym_do_block, + ACTIONS(3684), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3686), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [111115] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [111181] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + ACTIONS(5119), 1, + sym__newline_before_do, + STATE(3782), 1, + sym_do_block, + ACTIONS(3690), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3692), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [111253] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3926), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_when, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5159), 1, + anon_sym_COMMA, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + STATE(2914), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3928), 2, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5135), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [111365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [111431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [111497] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [111597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [111663] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [111729] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [111795] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [111901] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [111967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [112033] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112105] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112179] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112257] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4260), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [112409] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112497] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 22, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112587] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 17, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112679] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112773] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4930), 1, + anon_sym_when, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [112879] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [112959] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [113039] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [113137] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113239] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4900), 1, + anon_sym_COLON_COLON, + ACTIONS(4902), 1, + anon_sym_PIPE, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(4932), 1, + anon_sym_EQ_GT, + ACTIONS(4934), 1, + anon_sym_in, + ACTIONS(4938), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4914), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4916), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4920), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4918), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4922), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113343] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4906), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4908), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4910), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4928), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LF, + ACTIONS(4924), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + [113425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3828), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3830), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [113491] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5165), 1, + anon_sym_COMMA, + STATE(3081), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [113561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4256), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [113627] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [113693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [113759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [113825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [113891] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3421), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3680), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3682), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [113959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [114025] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3084), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3684), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3686), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [114093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3802), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3804), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [114159] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [114225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [114291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [114357] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [114423] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4266), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4268), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [114489] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4262), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4264), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [114555] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3091), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3690), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3692), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [114623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [114689] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + anon_sym_when, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4960), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4272), 4, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114797] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5167), 1, + anon_sym_COMMA, + STATE(3061), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3860), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [114867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3694), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3696), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [114933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [114999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [115065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [115131] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5170), 1, + anon_sym_COMMA, + STATE(2933), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3871), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [115201] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [115267] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4777), 1, + anon_sym_when, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4759), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4274), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4276), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [115375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [115441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [115507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [115573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [115639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [115705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [115771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [115837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [115903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [115969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 50, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [116035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1702), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4088), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [116101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [116167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [116233] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3878), 1, + sym__newline_before_do, + ACTIONS(4946), 1, + anon_sym_COLON_COLON, + ACTIONS(4948), 1, + anon_sym_PIPE, + ACTIONS(4950), 1, + anon_sym_EQ, + ACTIONS(4952), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4954), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4956), 1, + anon_sym_STAR_STAR, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(4978), 1, + anon_sym_when, + ACTIONS(4980), 1, + anon_sym_EQ_GT, + ACTIONS(4982), 1, + anon_sym_in, + ACTIONS(4986), 1, + anon_sym_LBRACK2, + ACTIONS(4988), 1, + sym__not_in, + ACTIONS(4960), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4974), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4976), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4962), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4964), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3880), 4, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4968), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4966), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4972), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4970), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [116341] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116407] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4206), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [116539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116803] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4180), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4182), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116869] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [116939] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3844), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [117009] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [117075] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4090), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4092), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [117141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [117207] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LF, + ACTIONS(2328), 1, + ts_builtin_sym_end, + ACTIONS(5177), 1, + anon_sym_SEMI, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + anon_sym_when, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + STATE(496), 1, + sym__terminator, + STATE(1317), 1, + aux_sym__terminator_repeat1, + STATE(4751), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5193), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [117323] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4290), 1, + anon_sym_DOT, + ACTIONS(4318), 1, + anon_sym_LBRACK2, + ACTIONS(4810), 1, + anon_sym_COLON_COLON, + ACTIONS(4812), 1, + anon_sym_PIPE, + ACTIONS(4814), 1, + anon_sym_EQ, + ACTIONS(4816), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4818), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4820), 1, + anon_sym_STAR_STAR, + ACTIONS(4840), 1, + anon_sym_when, + ACTIONS(4842), 1, + anon_sym_EQ_GT, + ACTIONS(4844), 1, + anon_sym_in, + ACTIONS(4848), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4274), 2, + sym__newline_before_do, + anon_sym_LF, + ACTIONS(4822), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4836), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4838), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4824), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4826), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4276), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4830), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4828), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4834), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4832), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [117431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4098), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4100), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [117497] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [117563] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_COMMA, + STATE(2877), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 49, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [117633] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [117699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4184), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4186), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [117765] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4188), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4190), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [117831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [117897] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4192), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4194), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [117963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4250), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4252), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [118029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4246), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4248), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [118095] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4242), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4244), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [118161] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_LPAREN, + STATE(2326), 1, + sym__anonymous_arguments, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4196), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4198), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4202), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118363] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4206), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118429] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4232), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4234), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [118495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3330), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3346), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118627] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3824), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3826), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3812), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3814), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [118957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4112), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4114), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119023] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3806), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3808), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [119089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [119155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4116), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4118), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4226), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4228), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119287] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4210), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [119355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119487] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4224), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4218), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4220), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4266), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4268), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [119689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4218), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4220), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [119755] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4208), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4210), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [119825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4120), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4122), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [119957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3698), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3700), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [120023] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4124), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4126), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3790), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3792), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [120155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4128), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4130), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120287] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4196), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4198), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120353] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_end, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5224), 1, + anon_sym_LF, + ACTIONS(5227), 1, + anon_sym_SEMI, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5260), 1, + anon_sym_when, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + STATE(432), 1, + sym__terminator, + STATE(1327), 1, + aux_sym__terminator_repeat1, + STATE(4754), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5242), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [120469] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3786), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3788), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [120535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4192), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4194), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3782), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3784), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [120667] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4188), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4190), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4264), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [120799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4132), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4134), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120865] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4184), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4186), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4136), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4138), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [120997] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [121079] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [121183] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [121285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [121351] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [121449] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [121529] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [121609] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [121679] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4180), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4182), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [121745] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4777), 1, + anon_sym_when, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [121851] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + [121945] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [122037] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [122127] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [122215] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LF, + ACTIONS(2290), 1, + ts_builtin_sym_end, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + anon_sym_when, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(5268), 1, + anon_sym_SEMI, + STATE(595), 1, + sym__terminator, + STATE(1317), 1, + aux_sym__terminator_repeat1, + STATE(4779), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5193), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3760), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3762), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [122397] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [122483] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [122553] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [122631] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [122705] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [122777] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4745), 1, + anon_sym_COLON_COLON, + ACTIONS(4747), 1, + anon_sym_PIPE, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4777), 1, + anon_sym_when, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [122949] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(4751), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4753), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4755), 1, + anon_sym_STAR_STAR, + ACTIONS(4757), 1, + anon_sym_DOT, + ACTIONS(4779), 1, + anon_sym_EQ_GT, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_LBRACK2, + ACTIONS(4787), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4773), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4775), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__newline_before_do, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4761), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4763), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4767), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4765), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4771), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4769), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [123049] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [123115] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123181] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [123247] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4176), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4178), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123313] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3676), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3678), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [123445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [123511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4168), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4170), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123577] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4164), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4166), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123643] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_end, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5260), 1, + anon_sym_when, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(5270), 1, + anon_sym_LF, + ACTIONS(5273), 1, + anon_sym_SEMI, + STATE(436), 1, + sym__terminator, + STATE(1327), 1, + aux_sym__terminator_repeat1, + STATE(4757), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5242), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [123759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4202), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123825] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [123891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4160), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4162), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [123957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4156), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4158), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [124023] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5276), 1, + anon_sym_COMMA, + STATE(3061), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [124093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4152), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4154), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [124159] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4148), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4150), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [124225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3732), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3734), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [124291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3662), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3664), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [124357] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1764), 1, + anon_sym_RPAREN, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5098), 1, + anon_sym_when, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(5279), 1, + anon_sym_LF, + ACTIONS(5282), 1, + anon_sym_SEMI, + STATE(438), 1, + sym__terminator, + STATE(1319), 1, + aux_sym__terminator_repeat1, + STATE(4791), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5080), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [124473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [124539] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 50, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [124609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3338), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [124675] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5285), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3926), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3928), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + [124743] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4226), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4228), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [124809] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [124875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3342), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [124941] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4140), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4142), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [125007] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4232), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4234), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125073] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4260), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125139] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3702), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3704), 50, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [125205] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4256), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4250), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4252), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4246), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4248), 51, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125403] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5287), 1, + anon_sym_COMMA, + STATE(3081), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3878), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3880), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [125473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3732), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3734), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3990), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3992), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125603] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4168), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4170), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [125668] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5290), 1, + anon_sym_COMMA, + STATE(3085), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [125737] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5293), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [125806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3694), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3696), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [125871] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5293), 1, + anon_sym_COMMA, + STATE(3085), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [125940] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5295), 1, + anon_sym_COMMA, + STATE(3093), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [126009] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4164), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4166), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126074] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4160), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4162), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126139] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4156), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4158), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126204] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5298), 1, + anon_sym_COMMA, + STATE(3085), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [126273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3676), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3678), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [126338] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5301), 1, + anon_sym_COMMA, + STATE(3095), 1, + aux_sym_keywords_repeat1, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [126407] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [126472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [126537] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4152), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4154), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [126667] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [126734] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4148), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4150), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4140), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4142), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126864] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [126929] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4136), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4138), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [126994] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127059] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3662), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3664), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127124] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3885), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3887), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [127254] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127319] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5304), 1, + aux_sym_sigil_token3, + ACTIONS(3854), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3856), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127386] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [127581] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5306), 1, + anon_sym_COMMA, + STATE(3431), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [127650] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_when, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5010), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4276), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [127757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4132), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4134), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [127822] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4128), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4130), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [127887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4124), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4126), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [127952] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4120), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4122), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [128017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4116), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4118), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [128082] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_when, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5135), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4272), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128254] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3742), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3744), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128384] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3806), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3808), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128516] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3812), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3814), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128583] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3832), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3834), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128648] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5308), 1, + anon_sym_COMMA, + STATE(3383), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [128717] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3816), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3818), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128784] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3820), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3822), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128851] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [128916] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5349), 1, + anon_sym_COMMA, + ACTIONS(5351), 1, + sym__not_in, + STATE(4949), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(5323), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5341), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [129025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129090] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129220] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129350] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5353), 1, + anon_sym_COMMA, + STATE(3129), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [129419] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3824), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3826), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4112), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4114), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [129551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4100), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [129616] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4090), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4092), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [129681] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129746] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [129876] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [129975] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [130040] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [130105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [130170] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_when, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130275] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [130346] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [130419] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [130496] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [130581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [130646] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [130711] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [130798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [130863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [130928] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [131017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [131082] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [131173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [131238] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [131331] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131432] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(1702), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4088), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [131596] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_when, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131701] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4180), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4182), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [131766] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131869] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [131938] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [132017] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [132096] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [132258] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132359] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132462] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [132543] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132646] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4184), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4186), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [132711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4188), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4190), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [132776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3698), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3700), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [132841] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [132906] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [132971] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4192), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4194), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [133036] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4196), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4198), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [133101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4260), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [133166] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4256), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [133231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [133296] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_when, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5010), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4272), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [133403] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5323), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3880), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [133508] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3878), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_when, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5010), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3880), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [133615] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [133680] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [133745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [133810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [133875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [133940] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [134017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [134082] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4439), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [134149] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [134222] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4208), 1, + sym__newline_before_do, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4210), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [134291] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4270), 1, + anon_sym_LF, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(5356), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4272), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [134398] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5358), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [134467] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4218), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4220), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [134532] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(4222), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [134601] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4477), 1, + anon_sym_when, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(5360), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3527), 2, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5362), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [134710] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [134775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4144), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4146), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [134840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3702), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3704), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [134905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [134970] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5364), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4108), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [135037] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4108), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [135167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3832), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3834), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [135232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4224), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135362] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4226), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4228), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4232), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4234), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135492] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4242), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4244), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4246), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4248), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4250), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4252), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4172), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4174), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3698), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3700), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [135817] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(3842), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [135951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [136016] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_when, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5135), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4276), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3842), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3844), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [136188] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5358), 1, + anon_sym_COMMA, + STATE(3205), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [136257] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4104), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [136393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3702), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3704), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3694), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3696), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3869), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [136978] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3892), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3894), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137043] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5306), 1, + anon_sym_COMMA, + STATE(3114), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [137112] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3896), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3898), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 5, + sym__keyword_end, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137242] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3902), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3904), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137307] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3906), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3908), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137372] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3910), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3912), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137437] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4262), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4264), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [137502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4266), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4268), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [137567] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4204), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4206), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [137632] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137697] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4200), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4202), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [137762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3742), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3744), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 5, + sym__keyword_end, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [137892] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5366), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4064), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4066), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [137959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3650), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [138024] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5368), 1, + anon_sym_COMMA, + STATE(3431), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [138093] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3662), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3664), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [138160] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3806), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3808), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [138225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3812), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3814), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [138290] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3914), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3916), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3918), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3920), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3922), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3924), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138485] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3974), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3976), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3978), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3980), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138615] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3982), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3984), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138680] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3338), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3998), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4000), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4008), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4014), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4016), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [138940] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3816), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3818), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [139005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139070] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3664), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139265] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3732), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3734), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3676), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3678), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139395] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3820), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3822), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [139460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3824), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3826), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [139590] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [139655] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139819] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [139884] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(5356), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [140054] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [140119] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4020), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [140184] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [140249] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [140314] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [140379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4022), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4024), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [140444] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [140525] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [140628] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [140729] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [140826] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [140905] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [140984] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_when, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [141089] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_do, + [141182] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [141273] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [141362] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [141449] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_do, + [141534] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [141611] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [141684] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(4172), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + [141755] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(4998), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_PIPE, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5028), 1, + anon_sym_when, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [141860] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__newline_before_do, + ACTIONS(4490), 1, + anon_sym_DOT, + ACTIONS(4492), 1, + anon_sym_LBRACK2, + ACTIONS(5002), 1, + anon_sym_EQ, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5008), 1, + anon_sym_STAR_STAR, + ACTIONS(5030), 1, + anon_sym_EQ_GT, + ACTIONS(5032), 1, + anon_sym_in, + ACTIONS(5036), 1, + sym__not_in, + ACTIONS(5024), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5012), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5014), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5018), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5016), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5022), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(5020), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [141959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [142024] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [142089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [142154] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4028), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [142219] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3850), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3852), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [142284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3346), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [142349] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [142414] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3666), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3668), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [142481] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [142554] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [142631] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [142716] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [142803] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [142892] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [142983] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + [143076] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(5356), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [143181] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [143260] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [143339] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + [143436] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [143537] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [143640] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [143721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4030), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4032), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [143786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [143851] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [143916] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [143981] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4038), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4040), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [144046] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5323), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4272), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [144151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4034), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4036), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [144216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4030), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4032), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [144281] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4026), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4028), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [144346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4022), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4024), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [144411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4034), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4036), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [144476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4040), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [144541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4042), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4044), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [144606] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4046), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4048), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [144671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3846), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3848), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [144736] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3541), 1, + anon_sym_DOT, + ACTIONS(3570), 1, + anon_sym_LBRACK2, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_PIPE, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4455), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4457), 1, + anon_sym_STAR_STAR, + ACTIONS(4480), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + sym__not_in, + ACTIONS(5356), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4459), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4473), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4475), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4461), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4463), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4276), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4467), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4465), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4471), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4469), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [144843] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4018), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4020), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [144908] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4050), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4052), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [144973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145038] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4006), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4008), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145103] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3998), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4000), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3990), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3992), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145298] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145363] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5371), 1, + anon_sym_COMMA, + STATE(3364), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [145432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [145497] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [145562] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145627] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4056), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [145692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [145757] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5374), 1, + anon_sym_COMMA, + STATE(3095), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [145826] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3790), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3792), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [145891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4060), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [145956] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4072), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4074), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146021] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3786), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3788), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146086] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3782), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3784), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4076), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4078), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146281] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [146346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4080), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4082), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4084), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4086), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3760), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3762), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [146606] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [146671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3982), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3984), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146736] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [146801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [146866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3978), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3980), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [146931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [146996] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5377), 1, + anon_sym_COMMA, + STATE(3383), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [147065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147130] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [147195] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147260] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3974), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3976), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147325] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [147390] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147471] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3922), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3924), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147536] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [147601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3918), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3920), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [147731] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [147796] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3914), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3916), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [147861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 50, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [147926] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [148009] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 26, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [148094] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 22, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [148181] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 17, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [148270] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3910), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3912), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148335] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3906), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3908), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148400] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5380), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148467] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3902), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3904), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148532] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3896), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3898), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148662] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3892), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3894), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148727] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [148824] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [148895] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5382), 1, + anon_sym_COMMA, + STATE(3411), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [148964] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5382), 1, + anon_sym_COMMA, + STATE(3383), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3860), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3862), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [149033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149098] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3782), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3784), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4260), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149228] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4256), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3867), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3869), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3330), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149423] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3786), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3788), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149488] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3790), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3792), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4202), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4176), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4178), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + [149683] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4439), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3854), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3856), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [149750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149815] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_LPAREN, + STATE(2884), 1, + sym__anonymous_arguments, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [149884] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 5, + sym__keyword_end, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [149949] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150014] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150079] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3878), 1, + sym__newline_before_do, + ACTIONS(5121), 1, + anon_sym_COLON_COLON, + ACTIONS(5123), 1, + anon_sym_PIPE, + ACTIONS(5125), 1, + anon_sym_EQ, + ACTIONS(5127), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5129), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5131), 1, + anon_sym_STAR_STAR, + ACTIONS(5133), 1, + anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_when, + ACTIONS(5155), 1, + anon_sym_EQ_GT, + ACTIONS(5157), 1, + anon_sym_in, + ACTIONS(5161), 1, + anon_sym_LBRACK2, + ACTIONS(5163), 1, + sym__not_in, + ACTIONS(5135), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5149), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5151), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3880), 3, + anon_sym_COMMA, + anon_sym_do, + anon_sym_GT_GT, + ACTIONS(5137), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5139), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5143), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5141), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5147), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5145), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [150186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3760), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3762), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150251] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + [150342] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5384), 1, + anon_sym_COMMA, + STATE(3431), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [150411] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150490] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 5, + sym__keyword_end, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150555] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5387), 1, + anon_sym_COMMA, + STATE(3259), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3871), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3873), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [150624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4042), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4044), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150689] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150756] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4084), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4086), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150888] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [150955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4046), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4048), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4080), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4082), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151150] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151217] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4076), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4078), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151347] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4072), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4074), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151412] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5390), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3926), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3928), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_do, + anon_sym_GT_GT, + [151479] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4014), 3, + sym__not_in, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4016), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4058), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4060), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4054), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4056), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151674] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 10, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + [151769] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4050), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4052), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151834] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4206), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151899] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [151978] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3846), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3848), 49, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152043] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5323), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4276), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3342), 50, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3342), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152341] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3824), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3826), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [152407] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3820), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3822), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [152473] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3816), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3818), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [152539] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3812), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3814), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [152605] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3806), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3808), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [152671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4112), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4114), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152799] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON_COLON, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5424), 1, + anon_sym_when, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5406), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4276), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [152967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153031] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3330), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [153163] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5434), 1, + anon_sym_COLON_COLON, + ACTIONS(5436), 1, + anon_sym_PIPE, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_when, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4274), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4276), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(5446), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [153269] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4264), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4266), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4268), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4180), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4182), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153525] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153593] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3806), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3808), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [153657] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_PIPE, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5500), 1, + anon_sym_when, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [153761] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_PIPE, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5500), 1, + anon_sym_when, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [153865] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5474), 1, + anon_sym_PIPE, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [153965] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3812), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3814), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3885), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3887), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154093] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4098), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4100), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3824), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3826), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154285] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1702), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4088), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154349] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_PIPE, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [154451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4260), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154515] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5434), 1, + anon_sym_COLON_COLON, + ACTIONS(5436), 1, + anon_sym_PIPE, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_when, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4270), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4272), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(5446), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [154621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3694), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3696), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [154685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4250), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4252), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4246), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4248), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4242), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4244), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3816), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3818), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [154941] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3820), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3822), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4260), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [155069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4184), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4186), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3742), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3744), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [155197] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4090), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4092), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155261] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_COMMA, + STATE(3095), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [155329] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4090), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4092), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155393] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_COMMA, + STATE(3501), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 47, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [155461] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5510), 1, + anon_sym_COMMA, + STATE(3539), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_GT_GT, + [155529] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5513), 1, + anon_sym_COMMA, + STATE(3504), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_GT_GT, + [155597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4188), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4190), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155661] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155741] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155837] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155915] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [155993] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + [156085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3824), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3826), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [156149] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [156239] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [156327] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [156413] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [156497] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [156573] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 45, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [156645] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [156715] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4192), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4194), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [156877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4196), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4198), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [156941] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4100), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [157005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4200), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4202), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [157069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4204), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4206), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [157133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3332), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3330), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [157197] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3348), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3346), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [157261] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5546), 1, + aux_sym_sigil_token3, + ACTIONS(3854), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3856), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [157327] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(5548), 1, + anon_sym_COLON_COLON, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(5554), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5552), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4272), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [157433] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4208), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4210), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [157501] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3832), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3834), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [157565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3338), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [157629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3342), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [157693] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5341), 1, + anon_sym_GT_GT, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_when, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + STATE(5239), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(5570), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [157801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3346), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [157865] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4056), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [157929] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_PIPE, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5500), 1, + anon_sym_when, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5600), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4272), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [158035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3698), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3700), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158099] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5602), 1, + anon_sym_COMMA, + STATE(3539), 1, + aux_sym_keywords_repeat1, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_GT_GT, + [158167] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON_COLON, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5424), 1, + anon_sym_when, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [158269] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4116), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4118), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [158333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4122), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [158397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3702), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3704), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158461] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4124), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4126), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [158525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4128), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4130), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [158589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3869), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3892), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3894), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158717] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3896), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3898), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3902), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3904), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3906), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3908), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [158909] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4132), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4134), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [158973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4136), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4138), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [159037] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3910), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3912), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3914), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3916), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159165] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3918), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3920), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159229] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3922), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3924), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3974), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3976), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159357] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3978), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3980), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3982), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3984), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159485] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3990), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3992), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159549] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3998), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4000), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159613] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4006), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4008), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159677] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4256), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4140), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4142), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [159805] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4014), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4016), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4232), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4234), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [159933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3664), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [159997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3732), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3734), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160061] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3676), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3678), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4020), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4022), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4024), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4028), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160317] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4030), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4032), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4034), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4036), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4042), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4044), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160509] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4046), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4048), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [160573] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4148), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4150), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [160735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4152), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4154), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [160799] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [160869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4156), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4158), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [160933] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 44, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [161005] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [161081] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [161165] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [161251] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [161339] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [161429] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4226), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4228), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [161493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3846), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3848), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [161557] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + [161649] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [161727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4160), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4162), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [161791] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [161869] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [161965] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4050), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4052), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162029] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3760), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3762), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4058), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4060), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4164), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4166), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162301] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4072), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4074), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4168), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4170), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162429] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4076), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4078), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162493] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON_COLON, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5424), 1, + anon_sym_when, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5406), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4272), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [162597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4080), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4082), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4084), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4086), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [162789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4176), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4178), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4174), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162917] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3338), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [162981] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4168), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4170), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4164), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4166), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163109] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [163187] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4160), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4162), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4206), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [163315] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3782), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3784), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [163379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4156), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4158), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163443] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3786), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3788), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [163507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4202), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [163571] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3790), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3792), 49, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [163635] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3346), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3330), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163763] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4152), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4154), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4148), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4150), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3820), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3822), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [163955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4176), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4178), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3816), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3818), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164083] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3340), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3338), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [164147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3344), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [164211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3812), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3814), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3806), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3808), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3650), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3652), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164403] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3928), 1, + anon_sym_RPAREN, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5311), 1, + anon_sym_COLON_COLON, + ACTIONS(5313), 1, + anon_sym_PIPE, + ACTIONS(5315), 1, + anon_sym_EQ, + ACTIONS(5317), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5319), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5321), 1, + anon_sym_STAR_STAR, + ACTIONS(5343), 1, + anon_sym_when, + ACTIONS(5345), 1, + anon_sym_EQ_GT, + ACTIONS(5347), 1, + anon_sym_in, + ACTIONS(5351), 1, + sym__not_in, + ACTIONS(5605), 1, + anon_sym_COMMA, + STATE(5247), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(5323), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5339), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5325), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5327), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5331), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5329), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5335), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5333), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4262), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4264), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164575] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1702), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4088), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4102), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4104), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164767] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4140), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4142), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [164831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4040), 49, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [164895] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3348), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [164959] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_PIPE, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5500), 1, + anon_sym_when, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5600), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4276), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [165065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3332), 3, + sym__keyword_end, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3330), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [165129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3844), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165257] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(5548), 1, + anon_sym_COLON_COLON, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(5554), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5552), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4276), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [165363] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3842), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3844), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165431] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4416), 1, + anon_sym_LPAREN, + ACTIONS(5607), 1, + anon_sym_LBRACE, + STATE(1958), 1, + sym__anonymous_arguments, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [165501] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3338), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(3342), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4258), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4260), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4254), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4256), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4136), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4138), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4132), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4134), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165885] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4250), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4252), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [165949] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4246), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4248), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [166013] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON_COLON, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5609), 1, + anon_sym_when, + ACTIONS(5406), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3527), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166117] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4242), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4244), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [166181] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4232), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4234), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [166245] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5434), 1, + anon_sym_COLON_COLON, + ACTIONS(5436), 1, + anon_sym_PIPE, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166347] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5436), 1, + anon_sym_PIPE, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166447] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [166607] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [166679] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5434), 1, + anon_sym_COLON_COLON, + ACTIONS(5436), 1, + anon_sym_PIPE, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_when, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166783] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5434), 1, + anon_sym_COLON_COLON, + ACTIONS(5436), 1, + anon_sym_PIPE, + ACTIONS(5438), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5442), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5444), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_when, + ACTIONS(5466), 1, + anon_sym_EQ_GT, + ACTIONS(5468), 1, + anon_sym_in, + ACTIONS(5470), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5460), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5462), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(5454), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5458), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5456), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [166951] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5502), 1, + anon_sym_EQ_GT, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [167049] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [167119] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [167189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4256), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [167253] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [167329] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [167411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [167475] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 45, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [167547] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [167611] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [167679] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [167763] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [167849] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [167937] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + [168027] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON_COLON, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5424), 1, + anon_sym_when, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168129] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(5548), 1, + anon_sym_COLON_COLON, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168231] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168331] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(5548), 1, + anon_sym_COLON_COLON, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(5554), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168435] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5516), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5518), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5520), 1, + anon_sym_STAR_STAR, + ACTIONS(5528), 1, + anon_sym_EQ, + ACTIONS(5540), 1, + anon_sym_in, + ACTIONS(5542), 1, + sym__not_in, + ACTIONS(5544), 1, + anon_sym_EQ_GT, + ACTIONS(5548), 1, + anon_sym_COLON_COLON, + ACTIONS(5550), 1, + anon_sym_PIPE, + ACTIONS(5554), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5526), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5530), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5532), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5536), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + ACTIONS(5534), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5522), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5538), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4180), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4182), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [168603] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [168671] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [168749] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [168827] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168921] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 37, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [168997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [169061] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169159] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5392), 1, + anon_sym_COLON_COLON, + ACTIONS(5394), 1, + anon_sym_PIPE, + ACTIONS(5396), 1, + anon_sym_EQ, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_EQ_GT, + ACTIONS(5428), 1, + anon_sym_in, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5432), 1, + sym__not_in, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5408), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5410), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5414), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5412), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5416), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169259] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5398), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5400), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5402), 1, + anon_sym_STAR_STAR, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5420), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5422), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5418), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [169339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4184), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4186), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [169403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4188), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4190), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [169467] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_end, + [169551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4192), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4194), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [169615] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 25, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_end, + [169701] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 21, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_end, + [169789] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 16, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_end, + [169879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4196), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4198), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [169943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4202), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170007] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4206), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170071] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 13, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_end, + [170163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4266), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4268), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170227] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [170305] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_end, + [170385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4218), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4220), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170449] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4210), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COMMA, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [170515] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5476), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5480), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5482), 1, + anon_sym_STAR_STAR, + ACTIONS(5504), 1, + anon_sym_in, + ACTIONS(5506), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5496), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5498), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5484), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5486), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5490), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5488), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5494), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 9, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(5492), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4128), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4130), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170675] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4218), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4220), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4124), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4126), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170803] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4224), 47, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4120), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4122), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170935] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4116), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4118), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [170999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4112), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4114), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171063] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171127] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171191] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171255] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4222), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4224), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4226), 4, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_LBRACK2, + ACTIONS(4228), 48, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171383] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5612), 1, + anon_sym_COMMA, + STATE(3729), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [171451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4104), 49, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [171515] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5615), 1, + anon_sym_COMMA, + STATE(3724), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [171583] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5618), 1, + anon_sym_COMMA, + STATE(3729), 1, + aux_sym_keywords_repeat1, + ACTIONS(3860), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [171651] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5618), 1, + anon_sym_COMMA, + STATE(3727), 1, + aux_sym_keywords_repeat1, + ACTIONS(3871), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [171719] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5620), 1, + anon_sym_COMMA, + STATE(3729), 1, + aux_sym_keywords_repeat1, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [171787] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171884] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171983] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(4276), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172086] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172181] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + [172270] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [172339] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 44, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [172410] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [172568] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_when, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172669] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [172738] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 44, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [172809] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [172884] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_GT_GT, + [172965] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_GT_GT, + [173048] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 44, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [173119] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_GT_GT, + [173204] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + anon_sym_GT_GT, + [173291] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_COMMA, + anon_sym_GT_GT, + [173380] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5691), 1, + anon_sym_COLON_COLON, + ACTIONS(5693), 1, + anon_sym_PIPE, + ACTIONS(5695), 1, + anon_sym_when, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [173481] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_when, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [173582] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4104), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [173645] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5691), 1, + anon_sym_COLON_COLON, + ACTIONS(5693), 1, + anon_sym_PIPE, + ACTIONS(5695), 1, + anon_sym_when, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [173746] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5693), 1, + anon_sym_PIPE, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [173843] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5691), 1, + anon_sym_COLON_COLON, + ACTIONS(5693), 1, + anon_sym_PIPE, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_COMMA, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [173942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4180), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4182), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [174005] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [174072] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5098), 1, + anon_sym_when, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [174175] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_when, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(4272), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5570), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [174278] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + [174369] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_end, + [174456] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4276), 1, + anon_sym_SEMI, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + anon_sym_when, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4274), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5193), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [174561] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [174648] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(4392), 2, + anon_sym_DASH_GT, + anon_sym_when, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4104), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [174713] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5691), 1, + anon_sym_COLON_COLON, + ACTIONS(5693), 1, + anon_sym_PIPE, + ACTIONS(5695), 1, + anon_sym_when, + ACTIONS(4276), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5697), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [174816] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5260), 1, + anon_sym_when, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4276), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(5242), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [174921] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [174996] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [175081] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [175144] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [175207] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [175290] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [175365] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [175434] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5098), 1, + anon_sym_when, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [175537] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [175624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4168), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4170), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [175687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4250), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4252), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [175750] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [175847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4164), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4166), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [175910] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [175995] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [176072] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [176155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4160), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4162), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [176218] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4156), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4158), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [176281] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4875), 1, + anon_sym_SEMI, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + anon_sym_when, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4873), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5193), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [176386] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [176463] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [176540] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [176603] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4148), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4150), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [176666] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_COMMA, + [176747] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [176844] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [176921] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [177000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3824), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3826), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177063] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3812), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3814), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177126] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3806), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3808), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177252] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [177351] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4266), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4268), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177414] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4264), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177477] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177540] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_when, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(4276), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5570), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [177643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177706] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [177783] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [177876] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4140), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4142), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [177939] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + [178018] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [178111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178174] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3842), 1, + sym__not_in, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3844), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178241] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4260), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178304] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4256), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178367] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4242), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4244), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4246), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4248), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4192), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4194), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [178556] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5098), 1, + anon_sym_when, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4276), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(5080), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [178661] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [178758] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [178851] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [178928] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [179005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4232), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4234), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [179068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4136), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4138), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [179131] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4873), 1, + anon_sym_LF, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5260), 1, + anon_sym_when, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4875), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(5242), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179236] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5661), 1, + anon_sym_EQ, + ACTIONS(5663), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5665), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5667), 1, + anon_sym_STAR_STAR, + ACTIONS(5685), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_in, + ACTIONS(5689), 1, + sym__not_in, + ACTIONS(5691), 1, + anon_sym_COLON_COLON, + ACTIONS(5693), 1, + anon_sym_PIPE, + ACTIONS(5695), 1, + anon_sym_when, + ACTIONS(4272), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5697), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5669), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5671), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5675), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5673), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5679), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5677), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [179402] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179503] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + [179592] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [179679] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(4873), 1, + anon_sym_LF, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5098), 1, + anon_sym_when, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4875), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(5080), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179784] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179883] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + anon_sym_when, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 3, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [179986] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [180055] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4174), 43, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [180126] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [180201] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 32, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [180284] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 23, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [180369] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 19, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [180456] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [180545] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + [180636] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [180715] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5211), 1, + anon_sym_when, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 3, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [180818] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [180895] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [180972] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [181067] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4184), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4186), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [181130] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4188), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4190), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [181193] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1702), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4088), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [181256] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [181335] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5068), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [181436] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5070), 1, + anon_sym_PIPE, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5100), 1, + anon_sym_EQ_GT, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [181535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3816), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3818), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [181598] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [181687] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4132), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4134), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [181750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3820), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3822), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [181813] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5072), 1, + anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(5102), 1, + anon_sym_in, + ACTIONS(5104), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5082), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5084), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5088), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + ACTIONS(5090), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [181908] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 20, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [181993] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [182072] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [182155] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [182236] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [182311] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4196), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4198), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [182374] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5076), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5078), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5094), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5096), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5092), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [182451] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [182550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4128), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4130), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [182613] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5179), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_PIPE, + ACTIONS(5183), 1, + anon_sym_EQ, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5213), 1, + anon_sym_EQ_GT, + ACTIONS(5215), 1, + anon_sym_in, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(5219), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5195), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5197), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5201), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5199), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5203), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [182714] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5185), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5187), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5189), 1, + anon_sym_STAR_STAR, + ACTIONS(5191), 1, + anon_sym_DOT, + ACTIONS(5217), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5207), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5209), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4172), 3, + sym__not_in, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(5205), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [182793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4124), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4126), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [182856] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [182957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4176), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4178), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [183020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4226), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4228), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [183083] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 8, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_end, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [183178] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [183255] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [183332] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4202), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [183395] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5260), 1, + anon_sym_when, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [183498] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 12, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_end, + [183589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4206), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [183652] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 15, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_end, + [183741] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4210), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4215), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4212), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [183806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4090), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4092), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [183869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4218), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4220), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [183932] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 24, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_end, + [184017] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_end, + [184100] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 36, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [184175] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 1, + sym__not_in, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 47, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [184242] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [184305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4224), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [184368] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4120), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4122), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [184431] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4174), 44, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [184502] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4172), 2, + sym__not_in, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_end, + [184571] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5230), 1, + anon_sym_COLON_COLON, + ACTIONS(5232), 1, + anon_sym_PIPE, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5260), 1, + anon_sym_when, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_SEMI, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [184674] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5556), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, + anon_sym_PIPE, + ACTIONS(5560), 1, + anon_sym_EQ, + ACTIONS(5562), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5564), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5566), 1, + anon_sym_STAR_STAR, + ACTIONS(5568), 1, + anon_sym_DOT, + ACTIONS(5588), 1, + anon_sym_when, + ACTIONS(5590), 1, + anon_sym_EQ_GT, + ACTIONS(5592), 1, + anon_sym_in, + ACTIONS(5596), 1, + anon_sym_LBRACK2, + ACTIONS(5598), 1, + sym__not_in, + ACTIONS(3880), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(5570), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5584), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5586), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5572), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5574), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5578), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5576), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5582), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5580), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [184777] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 44, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [184848] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LF, + ACTIONS(4362), 1, + anon_sym_DOT, + ACTIONS(4388), 1, + anon_sym_LBRACK2, + ACTIONS(5234), 1, + anon_sym_EQ, + ACTIONS(5236), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5238), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5240), 1, + anon_sym_STAR_STAR, + ACTIONS(5262), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, + anon_sym_in, + ACTIONS(5266), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5256), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5258), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5244), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5246), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5250), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5254), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(5252), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [184945] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3338), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185008] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [185077] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [185178] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3342), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185241] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4116), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4118), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185304] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3346), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185367] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3330), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4100), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4152), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4154), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4112), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4114), 48, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + anon_sym_COMMA, + anon_sym_GT_GT, + [185619] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [185714] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5699), 1, + anon_sym_DASH_GT, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_when, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5713), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [185816] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_when, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5739), 1, + anon_sym_DASH_GT, + ACTIONS(5713), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [185918] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [186004] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [186080] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5741), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [186182] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 19, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [186266] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 23, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [186348] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5743), 1, + anon_sym_PIPE, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5769), 1, + anon_sym_EQ_GT, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [186444] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [186518] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 43, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [186588] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5775), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [186690] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [186758] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5777), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [186860] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5779), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [186962] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4276), 1, + anon_sym_LBRACE, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5743), 1, + anon_sym_PIPE, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5769), 1, + anon_sym_EQ_GT, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5781), 1, + anon_sym_COLON_COLON, + ACTIONS(5785), 1, + anon_sym_when, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5783), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187064] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5787), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187166] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187260] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5789), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187362] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5743), 1, + anon_sym_PIPE, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5769), 1, + anon_sym_EQ_GT, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5781), 1, + anon_sym_COLON_COLON, + ACTIONS(5785), 1, + anon_sym_when, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187462] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_LBRACE, + ACTIONS(3650), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3652), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [187526] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5791), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187628] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5793), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187730] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_EQ_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187822] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5795), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [187924] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5797), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188026] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1071), 1, + anon_sym_LBRACE, + ACTIONS(502), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(485), 46, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [188090] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5799), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188192] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [188270] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 33, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [188348] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5743), 1, + anon_sym_PIPE, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5769), 1, + anon_sym_EQ_GT, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5781), 1, + anon_sym_COLON_COLON, + ACTIONS(5785), 1, + anon_sym_when, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 3, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188448] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5801), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188550] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5803), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188652] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5805), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [188754] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [188830] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + [188918] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 7, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189010] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5807), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189112] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [189188] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 34, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [189264] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5809), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189366] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_when, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 3, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189466] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5811), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189568] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_when, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 3, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189668] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4276), 1, + anon_sym_DASH_GT, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_when, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5713), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189770] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5813), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189872] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4174), 5, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [189968] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5701), 1, + anon_sym_COLON_COLON, + ACTIONS(5703), 1, + anon_sym_PIPE, + ACTIONS(5705), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5733), 1, + anon_sym_EQ_GT, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5715), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5717), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_DASH_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(5721), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5719), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5723), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190066] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5743), 1, + anon_sym_PIPE, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5769), 1, + anon_sym_EQ_GT, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5781), 1, + anon_sym_COLON_COLON, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4174), 4, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190164] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_DOT, + ACTIONS(5430), 1, + anon_sym_LBRACK2, + ACTIONS(5707), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5709), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5711), 1, + anon_sym_STAR_STAR, + ACTIONS(5735), 1, + anon_sym_in, + ACTIONS(5737), 1, + sym__not_in, + ACTIONS(5727), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5729), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5725), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 32, + anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [190244] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 11, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + [190332] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5815), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190434] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5817), 1, + anon_sym_RBRACE, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190536] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5745), 1, + anon_sym_EQ, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5769), 1, + anon_sym_EQ_GT, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5753), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5755), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4174), 6, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_LBRACE, + anon_sym_when, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190630] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 45, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [190698] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5819), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [190800] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(4174), 43, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [190870] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + sym__not_in, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 35, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_in, + [190944] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4174), 32, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [191024] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5821), 1, + anon_sym_RBRACK, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191126] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 23, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [191208] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5757), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 14, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [191294] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5747), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5749), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5751), 1, + anon_sym_STAR_STAR, + ACTIONS(5771), 1, + anon_sym_in, + ACTIONS(5773), 1, + sym__not_in, + ACTIONS(5765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5767), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5759), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5763), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5761), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(4174), 19, + anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LBRACE, + anon_sym_when, + anon_sym_EQ_GT, + anon_sym_or, + anon_sym_and, + [191378] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5173), 1, + anon_sym_DOT, + ACTIONS(5175), 1, + anon_sym_LBRACK2, + ACTIONS(5623), 1, + anon_sym_COLON_COLON, + ACTIONS(5625), 1, + anon_sym_PIPE, + ACTIONS(5627), 1, + anon_sym_EQ, + ACTIONS(5629), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5631), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5633), 1, + anon_sym_STAR_STAR, + ACTIONS(5653), 1, + anon_sym_when, + ACTIONS(5655), 1, + anon_sym_EQ_GT, + ACTIONS(5657), 1, + anon_sym_in, + ACTIONS(5659), 1, + sym__not_in, + ACTIONS(5635), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(5649), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5651), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5637), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(5639), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(5643), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5641), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5647), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(5645), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191477] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5823), 1, + anon_sym_LPAREN, + ACTIONS(5825), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_LT, + ACTIONS(5829), 1, + anon_sym_SLASH, + ACTIONS(5831), 1, + anon_sym_DQUOTE, + ACTIONS(5833), 1, + anon_sym_SQUOTE, + ACTIONS(5835), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5837), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5839), 1, + anon_sym_LBRACE, + ACTIONS(5841), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2096), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [191528] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5843), 1, + anon_sym_LPAREN, + ACTIONS(5845), 1, + anon_sym_PIPE, + ACTIONS(5847), 1, + anon_sym_LT, + ACTIONS(5849), 1, + anon_sym_SLASH, + ACTIONS(5851), 1, + anon_sym_DQUOTE, + ACTIONS(5853), 1, + anon_sym_SQUOTE, + ACTIONS(5855), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5857), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5859), 1, + anon_sym_LBRACE, + ACTIONS(5861), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2822), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [191579] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_LPAREN, + ACTIONS(5865), 1, + anon_sym_PIPE, + ACTIONS(5867), 1, + anon_sym_LT, + ACTIONS(5869), 1, + anon_sym_SLASH, + ACTIONS(5871), 1, + anon_sym_DQUOTE, + ACTIONS(5873), 1, + anon_sym_SQUOTE, + ACTIONS(5875), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5877), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5879), 1, + anon_sym_LBRACE, + ACTIONS(5881), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2353), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [191630] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5883), 1, + anon_sym_LPAREN, + ACTIONS(5885), 1, + anon_sym_PIPE, + ACTIONS(5887), 1, + anon_sym_LT, + ACTIONS(5889), 1, + anon_sym_SLASH, + ACTIONS(5891), 1, + anon_sym_DQUOTE, + ACTIONS(5893), 1, + anon_sym_SQUOTE, + ACTIONS(5895), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5897), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5899), 1, + anon_sym_LBRACE, + ACTIONS(5901), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2588), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [191681] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5903), 1, + anon_sym_LPAREN, + ACTIONS(5905), 1, + anon_sym_PIPE, + ACTIONS(5907), 1, + anon_sym_LT, + ACTIONS(5909), 1, + anon_sym_SLASH, + ACTIONS(5911), 1, + anon_sym_DQUOTE, + ACTIONS(5913), 1, + anon_sym_SQUOTE, + ACTIONS(5915), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5917), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5919), 1, + anon_sym_LBRACE, + ACTIONS(5921), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1718), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [191732] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5923), 1, + anon_sym_LPAREN, + ACTIONS(5925), 1, + anon_sym_PIPE, + ACTIONS(5927), 1, + anon_sym_LT, + ACTIONS(5929), 1, + anon_sym_SLASH, + ACTIONS(5931), 1, + anon_sym_DQUOTE, + ACTIONS(5933), 1, + anon_sym_SQUOTE, + ACTIONS(5935), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5937), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5939), 1, + anon_sym_LBRACE, + ACTIONS(5941), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1718), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [191783] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5943), 1, + anon_sym_LPAREN, + ACTIONS(5945), 1, + anon_sym_PIPE, + ACTIONS(5947), 1, + anon_sym_LT, + ACTIONS(5949), 1, + anon_sym_SLASH, + ACTIONS(5951), 1, + anon_sym_DQUOTE, + ACTIONS(5953), 1, + anon_sym_SQUOTE, + ACTIONS(5955), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5957), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5959), 1, + anon_sym_LBRACE, + ACTIONS(5961), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1885), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [191834] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5963), 1, + anon_sym_LPAREN, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5967), 1, + anon_sym_LT, + ACTIONS(5969), 1, + anon_sym_SLASH, + ACTIONS(5971), 1, + anon_sym_DQUOTE, + ACTIONS(5973), 1, + anon_sym_SQUOTE, + ACTIONS(5975), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5977), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5979), 1, + anon_sym_LBRACE, + ACTIONS(5981), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3201), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [191885] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5983), 1, + anon_sym_LPAREN, + ACTIONS(5985), 1, + anon_sym_PIPE, + ACTIONS(5987), 1, + anon_sym_LT, + ACTIONS(5989), 1, + anon_sym_SLASH, + ACTIONS(5991), 1, + anon_sym_DQUOTE, + ACTIONS(5993), 1, + anon_sym_SQUOTE, + ACTIONS(5995), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5997), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5999), 1, + anon_sym_LBRACE, + ACTIONS(6001), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3201), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [191936] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6003), 1, + anon_sym_LPAREN, + ACTIONS(6005), 1, + anon_sym_PIPE, + ACTIONS(6007), 1, + anon_sym_LT, + ACTIONS(6009), 1, + anon_sym_SLASH, + ACTIONS(6011), 1, + anon_sym_DQUOTE, + ACTIONS(6013), 1, + anon_sym_SQUOTE, + ACTIONS(6015), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6017), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6019), 1, + anon_sym_LBRACE, + ACTIONS(6021), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1885), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [191987] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6023), 1, + anon_sym_LPAREN, + ACTIONS(6025), 1, + anon_sym_PIPE, + ACTIONS(6027), 1, + anon_sym_LT, + ACTIONS(6029), 1, + anon_sym_SLASH, + ACTIONS(6031), 1, + anon_sym_DQUOTE, + ACTIONS(6033), 1, + anon_sym_SQUOTE, + ACTIONS(6035), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6037), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6039), 1, + anon_sym_LBRACE, + ACTIONS(6041), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1446), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192038] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6043), 1, + anon_sym_LPAREN, + ACTIONS(6045), 1, + anon_sym_PIPE, + ACTIONS(6047), 1, + anon_sym_LT, + ACTIONS(6049), 1, + anon_sym_SLASH, + ACTIONS(6051), 1, + anon_sym_DQUOTE, + ACTIONS(6053), 1, + anon_sym_SQUOTE, + ACTIONS(6055), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6057), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6059), 1, + anon_sym_LBRACE, + ACTIONS(6061), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1446), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192089] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6063), 1, + anon_sym_LPAREN, + ACTIONS(6065), 1, + anon_sym_PIPE, + ACTIONS(6067), 1, + anon_sym_LT, + ACTIONS(6069), 1, + anon_sym_SLASH, + ACTIONS(6071), 1, + anon_sym_DQUOTE, + ACTIONS(6073), 1, + anon_sym_SQUOTE, + ACTIONS(6075), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6077), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6079), 1, + anon_sym_LBRACE, + ACTIONS(6081), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2202), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192140] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6083), 1, + anon_sym_LPAREN, + ACTIONS(6085), 1, + anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_LT, + ACTIONS(6089), 1, + anon_sym_SLASH, + ACTIONS(6091), 1, + anon_sym_DQUOTE, + ACTIONS(6093), 1, + anon_sym_SQUOTE, + ACTIONS(6095), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6097), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6099), 1, + anon_sym_LBRACE, + ACTIONS(6101), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2376), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192191] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6103), 1, + anon_sym_LPAREN, + ACTIONS(6105), 1, + anon_sym_PIPE, + ACTIONS(6107), 1, + anon_sym_LT, + ACTIONS(6109), 1, + anon_sym_SLASH, + ACTIONS(6111), 1, + anon_sym_DQUOTE, + ACTIONS(6113), 1, + anon_sym_SQUOTE, + ACTIONS(6115), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6117), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6119), 1, + anon_sym_LBRACE, + ACTIONS(6121), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1931), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192242] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6123), 1, + anon_sym_LPAREN, + ACTIONS(6125), 1, + anon_sym_PIPE, + ACTIONS(6127), 1, + anon_sym_LT, + ACTIONS(6129), 1, + anon_sym_SLASH, + ACTIONS(6131), 1, + anon_sym_DQUOTE, + ACTIONS(6133), 1, + anon_sym_SQUOTE, + ACTIONS(6135), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6137), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6139), 1, + anon_sym_LBRACE, + ACTIONS(6141), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(1931), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192293] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6143), 1, + anon_sym_LPAREN, + ACTIONS(6145), 1, + anon_sym_PIPE, + ACTIONS(6147), 1, + anon_sym_LT, + ACTIONS(6149), 1, + anon_sym_SLASH, + ACTIONS(6151), 1, + anon_sym_DQUOTE, + ACTIONS(6153), 1, + anon_sym_SQUOTE, + ACTIONS(6155), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6157), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6159), 1, + anon_sym_LBRACE, + ACTIONS(6161), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2353), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192344] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6163), 1, + anon_sym_LPAREN, + ACTIONS(6165), 1, + anon_sym_PIPE, + ACTIONS(6167), 1, + anon_sym_LT, + ACTIONS(6169), 1, + anon_sym_SLASH, + ACTIONS(6171), 1, + anon_sym_DQUOTE, + ACTIONS(6173), 1, + anon_sym_SQUOTE, + ACTIONS(6175), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6177), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6179), 1, + anon_sym_LBRACE, + ACTIONS(6181), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2385), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192395] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6183), 1, + anon_sym_LPAREN, + ACTIONS(6185), 1, + anon_sym_PIPE, + ACTIONS(6187), 1, + anon_sym_LT, + ACTIONS(6189), 1, + anon_sym_SLASH, + ACTIONS(6191), 1, + anon_sym_DQUOTE, + ACTIONS(6193), 1, + anon_sym_SQUOTE, + ACTIONS(6195), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6197), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6199), 1, + anon_sym_LBRACE, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2822), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192446] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6203), 1, + anon_sym_LPAREN, + ACTIONS(6205), 1, + anon_sym_PIPE, + ACTIONS(6207), 1, + anon_sym_LT, + ACTIONS(6209), 1, + anon_sym_SLASH, + ACTIONS(6211), 1, + anon_sym_DQUOTE, + ACTIONS(6213), 1, + anon_sym_SQUOTE, + ACTIONS(6215), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6217), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6219), 1, + anon_sym_LBRACE, + ACTIONS(6221), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3110), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192497] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6223), 1, + anon_sym_LPAREN, + ACTIONS(6225), 1, + anon_sym_PIPE, + ACTIONS(6227), 1, + anon_sym_LT, + ACTIONS(6229), 1, + anon_sym_SLASH, + ACTIONS(6231), 1, + anon_sym_DQUOTE, + ACTIONS(6233), 1, + anon_sym_SQUOTE, + ACTIONS(6235), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6237), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6239), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3110), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192548] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6243), 1, + anon_sym_LPAREN, + ACTIONS(6245), 1, + anon_sym_PIPE, + ACTIONS(6247), 1, + anon_sym_LT, + ACTIONS(6249), 1, + anon_sym_SLASH, + ACTIONS(6251), 1, + anon_sym_DQUOTE, + ACTIONS(6253), 1, + anon_sym_SQUOTE, + ACTIONS(6255), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6257), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(6261), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2870), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192599] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6263), 1, + anon_sym_LPAREN, + ACTIONS(6265), 1, + anon_sym_PIPE, + ACTIONS(6267), 1, + anon_sym_LT, + ACTIONS(6269), 1, + anon_sym_SLASH, + ACTIONS(6271), 1, + anon_sym_DQUOTE, + ACTIONS(6273), 1, + anon_sym_SQUOTE, + ACTIONS(6275), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6277), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6279), 1, + anon_sym_LBRACE, + ACTIONS(6281), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2870), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192650] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6283), 1, + anon_sym_LPAREN, + ACTIONS(6285), 1, + anon_sym_PIPE, + ACTIONS(6287), 1, + anon_sym_LT, + ACTIONS(6289), 1, + anon_sym_SLASH, + ACTIONS(6291), 1, + anon_sym_DQUOTE, + ACTIONS(6293), 1, + anon_sym_SQUOTE, + ACTIONS(6295), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6297), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6299), 1, + anon_sym_LBRACE, + ACTIONS(6301), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2376), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192701] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6303), 1, + anon_sym_LPAREN, + ACTIONS(6305), 1, + anon_sym_PIPE, + ACTIONS(6307), 1, + anon_sym_LT, + ACTIONS(6309), 1, + anon_sym_SLASH, + ACTIONS(6311), 1, + anon_sym_DQUOTE, + ACTIONS(6313), 1, + anon_sym_SQUOTE, + ACTIONS(6315), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6317), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6319), 1, + anon_sym_LBRACE, + ACTIONS(6321), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2096), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192752] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6323), 1, + anon_sym_LPAREN, + ACTIONS(6325), 1, + anon_sym_PIPE, + ACTIONS(6327), 1, + anon_sym_LT, + ACTIONS(6329), 1, + anon_sym_SLASH, + ACTIONS(6331), 1, + anon_sym_DQUOTE, + ACTIONS(6333), 1, + anon_sym_SQUOTE, + ACTIONS(6335), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6337), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6339), 1, + anon_sym_LBRACE, + ACTIONS(6341), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3422), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192803] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6343), 1, + anon_sym_LPAREN, + ACTIONS(6345), 1, + anon_sym_PIPE, + ACTIONS(6347), 1, + anon_sym_LT, + ACTIONS(6349), 1, + anon_sym_SLASH, + ACTIONS(6351), 1, + anon_sym_DQUOTE, + ACTIONS(6353), 1, + anon_sym_SQUOTE, + ACTIONS(6355), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6357), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6359), 1, + anon_sym_LBRACE, + ACTIONS(6361), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2635), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192854] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6363), 1, + anon_sym_LPAREN, + ACTIONS(6365), 1, + anon_sym_PIPE, + ACTIONS(6367), 1, + anon_sym_LT, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6371), 1, + anon_sym_DQUOTE, + ACTIONS(6373), 1, + anon_sym_SQUOTE, + ACTIONS(6375), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6377), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6379), 1, + anon_sym_LBRACE, + ACTIONS(6381), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2635), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [192905] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6383), 1, + anon_sym_LPAREN, + ACTIONS(6385), 1, + anon_sym_PIPE, + ACTIONS(6387), 1, + anon_sym_LT, + ACTIONS(6389), 1, + anon_sym_SLASH, + ACTIONS(6391), 1, + anon_sym_DQUOTE, + ACTIONS(6393), 1, + anon_sym_SQUOTE, + ACTIONS(6395), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6397), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6399), 1, + anon_sym_LBRACE, + ACTIONS(6401), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2202), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [192956] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6403), 1, + anon_sym_LPAREN, + ACTIONS(6405), 1, + anon_sym_PIPE, + ACTIONS(6407), 1, + anon_sym_LT, + ACTIONS(6409), 1, + anon_sym_SLASH, + ACTIONS(6411), 1, + anon_sym_DQUOTE, + ACTIONS(6413), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6417), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6419), 1, + anon_sym_LBRACE, + ACTIONS(6421), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3528), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [193007] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6423), 1, + anon_sym_LPAREN, + ACTIONS(6425), 1, + anon_sym_PIPE, + ACTIONS(6427), 1, + anon_sym_LT, + ACTIONS(6429), 1, + anon_sym_SLASH, + ACTIONS(6431), 1, + anon_sym_DQUOTE, + ACTIONS(6433), 1, + anon_sym_SQUOTE, + ACTIONS(6435), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6437), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6439), 1, + anon_sym_LBRACE, + ACTIONS(6441), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3528), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [193058] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6443), 1, + anon_sym_LPAREN, + ACTIONS(6445), 1, + anon_sym_PIPE, + ACTIONS(6447), 1, + anon_sym_LT, + ACTIONS(6449), 1, + anon_sym_SLASH, + ACTIONS(6451), 1, + anon_sym_DQUOTE, + ACTIONS(6453), 1, + anon_sym_SQUOTE, + ACTIONS(6455), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6457), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6459), 1, + anon_sym_LBRACE, + ACTIONS(6461), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3403), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [193109] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6463), 1, + anon_sym_LPAREN, + ACTIONS(6465), 1, + anon_sym_PIPE, + ACTIONS(6467), 1, + anon_sym_LT, + ACTIONS(6469), 1, + anon_sym_SLASH, + ACTIONS(6471), 1, + anon_sym_DQUOTE, + ACTIONS(6473), 1, + anon_sym_SQUOTE, + ACTIONS(6475), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6477), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6479), 1, + anon_sym_LBRACE, + ACTIONS(6481), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3403), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [193160] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6483), 1, + anon_sym_LPAREN, + ACTIONS(6485), 1, + anon_sym_PIPE, + ACTIONS(6487), 1, + anon_sym_LT, + ACTIONS(6489), 1, + anon_sym_SLASH, + ACTIONS(6491), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + anon_sym_SQUOTE, + ACTIONS(6495), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6497), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6499), 1, + anon_sym_LBRACE, + ACTIONS(6501), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2588), 10, + sym__quoted_i_double, + sym__quoted_i_single, + sym__quoted_i_heredoc_single, + sym__quoted_i_heredoc_double, + sym__quoted_i_parenthesis, + sym__quoted_i_curly, + sym__quoted_i_square, + sym__quoted_i_angle, + sym__quoted_i_bar, + sym__quoted_i_slash, + [193211] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6503), 1, + anon_sym_LPAREN, + ACTIONS(6505), 1, + anon_sym_PIPE, + ACTIONS(6507), 1, + anon_sym_LT, + ACTIONS(6509), 1, + anon_sym_SLASH, + ACTIONS(6511), 1, + anon_sym_DQUOTE, + ACTIONS(6513), 1, + anon_sym_SQUOTE, + ACTIONS(6515), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6517), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6519), 1, + anon_sym_LBRACE, + ACTIONS(6521), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(3422), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [193262] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6523), 1, + anon_sym_LPAREN, + ACTIONS(6525), 1, + anon_sym_PIPE, + ACTIONS(6527), 1, + anon_sym_LT, + ACTIONS(6529), 1, + anon_sym_SLASH, + ACTIONS(6531), 1, + anon_sym_DQUOTE, + ACTIONS(6533), 1, + anon_sym_SQUOTE, + ACTIONS(6535), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6537), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6539), 1, + anon_sym_LBRACE, + ACTIONS(6541), 1, + anon_sym_LBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(2385), 10, + sym__quoted_double, + sym__quoted_single, + sym__quoted_heredoc_single, + sym__quoted_heredoc_double, + sym__quoted_parenthesis, + sym__quoted_curly, + sym__quoted_square, + sym__quoted_angle, + sym__quoted_bar, + sym__quoted_slash, + [193313] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1728), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3600), 1, + anon_sym_SEMI, + STATE(382), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4105), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193358] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1689), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4070), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4097), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193403] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1714), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4015), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4078), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193448] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1714), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3640), 1, + anon_sym_SEMI, + STATE(373), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4078), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193493] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1714), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4078), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193538] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1671), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4119), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193583] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1744), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4023), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4095), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193628] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3576), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4008), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4103), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193673] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3586), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4025), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4092), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193718] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1687), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6545), 1, + anon_sym_SEMI, + STATE(372), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4081), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193763] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1675), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6547), 1, + anon_sym_SEMI, + STATE(369), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4086), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193808] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1687), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4081), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193853] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1744), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3604), 1, + anon_sym_SEMI, + STATE(395), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4095), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193898] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1744), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4095), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193943] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1675), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4086), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [193988] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1728), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4032), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4105), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194033] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1740), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4018), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4084), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194078] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3598), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4017), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4080), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194123] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1742), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6549), 1, + anon_sym_SEMI, + STATE(386), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4099), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194168] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1742), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4099), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194213] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3580), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4072), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4093), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194258] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1728), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4105), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194303] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1738), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4075), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4085), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194348] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1738), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3602), 1, + anon_sym_SEMI, + STATE(392), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4085), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194393] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1716), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6551), 1, + anon_sym_SEMI, + STATE(380), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4110), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194438] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1738), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4085), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194483] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1720), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4102), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194528] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3594), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4046), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4133), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194573] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1716), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4110), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194618] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1720), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6553), 1, + anon_sym_SEMI, + STATE(378), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4102), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194663] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1710), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4114), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194708] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1710), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6555), 1, + anon_sym_SEMI, + STATE(368), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4114), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194753] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1706), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4116), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194798] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1740), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3618), 1, + anon_sym_SEMI, + STATE(367), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4084), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194843] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1706), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3636), 1, + anon_sym_SEMI, + STATE(379), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4116), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194888] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1706), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4034), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4116), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194933] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1750), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4106), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [194978] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1750), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3616), 1, + anon_sym_SEMI, + STATE(384), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4106), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195023] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3630), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4036), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4125), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195068] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1750), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4030), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4106), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195113] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1752), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4050), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4077), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195158] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1752), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3610), 1, + anon_sym_SEMI, + STATE(398), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4077), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195203] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1752), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4077), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195248] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3634), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4029), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4104), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195293] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3614), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4040), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4128), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195338] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1748), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6557), 1, + anon_sym_SEMI, + STATE(397), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4135), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195383] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1748), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4135), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195428] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3568), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4067), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4076), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195473] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1726), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4129), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195518] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1726), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6559), 1, + anon_sym_SEMI, + STATE(364), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4129), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195563] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1681), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4120), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195608] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1732), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4121), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195653] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1681), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6561), 1, + anon_sym_SEMI, + STATE(376), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4120), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195698] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1732), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6563), 1, + anon_sym_SEMI, + STATE(391), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4121), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195743] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3622), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4009), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4117), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195788] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1671), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3626), 1, + anon_sym_SEMI, + STATE(390), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4119), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195833] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1718), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4123), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195878] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1671), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4055), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4119), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195923] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1718), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3638), 1, + anon_sym_SEMI, + STATE(387), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4123), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [195968] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1673), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4118), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196013] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1673), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3582), 1, + anon_sym_SEMI, + STATE(370), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4118), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196058] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1718), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4052), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4123), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196103] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1673), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4054), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4118), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196148] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1689), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4097), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196193] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1736), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6565), 1, + anon_sym_SEMI, + STATE(385), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4136), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196238] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3590), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4060), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4113), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196283] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1683), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4096), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196328] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1689), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(3624), 1, + anon_sym_SEMI, + STATE(371), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4097), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196373] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1740), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4084), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196418] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1683), 1, + anon_sym_end, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6567), 1, + anon_sym_SEMI, + STATE(389), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4096), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196463] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3608), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4063), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4109), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196508] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1736), 1, + anon_sym_end, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + STATE(4136), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196553] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1689), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196584] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1748), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196615] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1687), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196646] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3590), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196677] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1744), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196708] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1685), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196739] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3586), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196770] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6569), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196801] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1675), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196832] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1736), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196863] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1679), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196894] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3622), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196925] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6571), 1, + anon_sym_after, + ACTIONS(6574), 1, + anon_sym_catch, + ACTIONS(6577), 1, + anon_sym_else, + ACTIONS(6580), 1, + anon_sym_end, + ACTIONS(6582), 1, + anon_sym_rescue, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196956] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6585), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [196987] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3608), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197018] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3598), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197049] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1728), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197080] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1740), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197111] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6587), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197142] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1742), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197173] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1730), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197204] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1683), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197235] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6589), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197266] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1724), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197297] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3580), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197328] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6591), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197359] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1708), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197390] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1714), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197421] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1738), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197452] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1716), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197483] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1720), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197514] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3634), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197545] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3576), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197576] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1673), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197607] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1712), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197638] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3594), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197669] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6593), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197700] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1718), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197731] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1677), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197762] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6595), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197793] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1710), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197824] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1671), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197855] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1681), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197886] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1732), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197917] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1704), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197948] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1734), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [197979] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6597), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198010] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1726), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198041] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6599), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198072] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1706), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198103] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6601), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198134] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3568), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198165] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1750), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198196] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1665), 1, + anon_sym_end, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198227] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6603), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198258] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3630), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198289] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(3614), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198320] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1752), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198351] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(6605), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198382] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1746), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198413] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1659), 1, + anon_sym_after, + ACTIONS(1661), 1, + anon_sym_catch, + ACTIONS(1663), 1, + anon_sym_else, + ACTIONS(1669), 1, + anon_sym_rescue, + ACTIONS(1722), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + STATE(4088), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat3, + [198444] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4162), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1808), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198474] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6607), 1, + anon_sym_LF, + ACTIONS(6610), 1, + anon_sym_SEMI, + STATE(1148), 1, + sym__terminator, + STATE(1332), 1, + aux_sym__terminator_repeat1, + STATE(4138), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4875), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198504] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6613), 1, + anon_sym_SEMI, + STATE(421), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1810), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198534] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1810), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198564] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6615), 1, + anon_sym_LF, + ACTIONS(6618), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(6621), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198594] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(4070), 1, + anon_sym_SEMI, + STATE(419), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1822), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198624] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4344), 1, + anon_sym_LF, + ACTIONS(4347), 1, + anon_sym_SEMI, + STATE(404), 1, + sym__terminator, + STATE(1310), 1, + aux_sym__terminator_repeat1, + STATE(4138), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1768), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198654] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1816), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198684] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(4096), 1, + anon_sym_SEMI, + STATE(409), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1816), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198714] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1816), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198744] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6623), 1, + anon_sym_LF, + ACTIONS(6626), 1, + anon_sym_SEMI, + STATE(830), 1, + sym__terminator, + STATE(1332), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4734), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198774] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1820), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198804] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4155), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4012), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198834] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1818), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198864] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(4094), 1, + anon_sym_SEMI, + STATE(414), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1820), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198894] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4150), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1820), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198924] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1822), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198954] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4164), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1822), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [198984] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1808), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199014] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4153), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(4004), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199044] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4148), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3996), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199074] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6629), 1, + anon_sym_LF, + ACTIONS(6632), 1, + anon_sym_SEMI, + STATE(405), 1, + sym__terminator, + STATE(1310), 1, + aux_sym__terminator_repeat1, + STATE(4138), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1774), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199104] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(4062), 1, + anon_sym_SEMI, + STATE(411), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1808), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199134] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4144), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3988), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199164] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6635), 1, + anon_sym_SEMI, + STATE(417), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1814), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199194] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1814), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199224] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6637), 1, + anon_sym_SEMI, + STATE(410), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1818), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199254] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(6543), 1, + anon_sym_SEMI, + STATE(183), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4141), 1, + aux_sym_do_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1828), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199284] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3523), 1, + anon_sym_LF, + ACTIONS(6639), 1, + anon_sym_SEMI, + STATE(418), 1, + sym__terminator, + STATE(1309), 1, + aux_sym__terminator_repeat1, + STATE(4147), 1, + aux_sym_do_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1828), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199314] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6641), 1, + anon_sym_AMP, + ACTIONS(6643), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6645), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199337] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6647), 1, + anon_sym_AMP, + ACTIONS(6649), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6651), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199360] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6653), 1, + anon_sym_AMP, + ACTIONS(6655), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6657), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199383] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6659), 1, + anon_sym_AMP, + ACTIONS(6661), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6663), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199406] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6665), 1, + anon_sym_AMP, + ACTIONS(6667), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6669), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199429] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6675), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199452] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6677), 1, + anon_sym_AMP, + ACTIONS(6679), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6681), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199475] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6683), 1, + anon_sym_LF, + STATE(4173), 1, + aux_sym__terminator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3377), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199498] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6686), 1, + anon_sym_AMP, + ACTIONS(6688), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6690), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199521] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6692), 1, + anon_sym_AMP, + ACTIONS(6694), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6696), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199544] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6698), 1, + anon_sym_LF, + ACTIONS(6700), 1, + anon_sym_SEMI, + STATE(4173), 1, + aux_sym__terminator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3370), 6, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [199569] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6702), 1, + anon_sym_AMP, + ACTIONS(6704), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6706), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199592] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6708), 1, + anon_sym_AMP, + ACTIONS(6710), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6712), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199615] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6714), 1, + anon_sym_AMP, + ACTIONS(6716), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6718), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199638] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6720), 1, + anon_sym_AMP, + ACTIONS(6722), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6724), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199661] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6726), 1, + anon_sym_AMP, + ACTIONS(6728), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6730), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199684] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6732), 1, + anon_sym_AMP, + ACTIONS(6734), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6736), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199707] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6738), 1, + anon_sym_AMP, + ACTIONS(6740), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6742), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199730] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6744), 1, + anon_sym_AMP, + ACTIONS(6746), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6748), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199753] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6750), 1, + anon_sym_AMP, + ACTIONS(6752), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6754), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199776] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6756), 1, + anon_sym_AMP, + ACTIONS(6758), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6760), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199799] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6762), 1, + anon_sym_AMP, + ACTIONS(6764), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6766), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199822] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6768), 1, + anon_sym_AMP, + ACTIONS(6770), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6772), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199845] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6774), 1, + anon_sym_AMP, + ACTIONS(6776), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6778), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199868] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6780), 1, + anon_sym_AMP, + ACTIONS(6782), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6784), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199891] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6786), 1, + anon_sym_AMP, + ACTIONS(6788), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6790), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199914] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6792), 1, + anon_sym_AMP, + ACTIONS(6794), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6796), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199937] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6798), 1, + anon_sym_AMP, + ACTIONS(6800), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6802), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199960] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6804), 1, + anon_sym_AMP, + ACTIONS(6806), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(6808), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [199983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1766), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1768), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [200003] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6810), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(1754), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [200023] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 7, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_when, + anon_sym_COMMA, + anon_sym_GT_GT, + [200041] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(3381), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [200061] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(6812), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(6814), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [200081] = 7, + ACTIONS(6816), 1, + anon_sym_SLASH, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [200106] = 7, + ACTIONS(6824), 1, + anon_sym_RBRACK, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [200131] = 7, + ACTIONS(6832), 1, + anon_sym_DQUOTE, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6836), 1, + sym_escape_sequence, + ACTIONS(6838), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4223), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [200156] = 7, + ACTIONS(6840), 1, + anon_sym_SQUOTE, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6844), 1, + sym_escape_sequence, + ACTIONS(6846), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4225), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [200181] = 7, + ACTIONS(6848), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6852), 1, + sym_escape_sequence, + ACTIONS(6854), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4227), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [200206] = 7, + ACTIONS(6856), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6860), 1, + sym_escape_sequence, + ACTIONS(6862), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4229), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [200231] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6864), 1, + anon_sym_DQUOTE, + ACTIONS(6866), 1, + sym_escape_sequence, + ACTIONS(6868), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4210), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [200256] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6870), 1, + anon_sym_SQUOTE, + ACTIONS(6872), 1, + sym_escape_sequence, + ACTIONS(6874), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4211), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [200281] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6876), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6878), 1, + sym_escape_sequence, + ACTIONS(6880), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4212), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [200306] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6882), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6884), 1, + sym_escape_sequence, + ACTIONS(6886), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4219), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [200331] = 7, + ACTIONS(6834), 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_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [200356] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6894), 1, + anon_sym_SQUOTE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [200381] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6900), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [200406] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(6906), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [200431] = 7, + ACTIONS(6908), 1, + anon_sym_RBRACE, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [200456] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(6916), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [200481] = 7, + ACTIONS(6918), 1, + anon_sym_GT, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [200506] = 7, + ACTIONS(6926), 1, + anon_sym_PIPE, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [200531] = 7, + ACTIONS(6934), 1, + anon_sym_RPAREN, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [200556] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6942), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [200581] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6948), 1, + anon_sym_RPAREN, + ACTIONS(6950), 1, + sym_escape_sequence, + ACTIONS(6952), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4230), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [200606] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6954), 1, + anon_sym_PIPE, + ACTIONS(6956), 1, + sym_escape_sequence, + ACTIONS(6958), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4235), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [200631] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6960), 1, + anon_sym_GT, + ACTIONS(6962), 1, + sym_escape_sequence, + ACTIONS(6964), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4236), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [200656] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(6966), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [200681] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6968), 1, + anon_sym_SLASH, + ACTIONS(6970), 1, + sym_escape_sequence, + ACTIONS(6972), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4237), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [200706] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(6974), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [200731] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6976), 1, + anon_sym_RBRACE, + ACTIONS(6978), 1, + sym_escape_sequence, + ACTIONS(6980), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4238), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [200756] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6982), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [200781] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6984), 1, + anon_sym_RBRACK, + ACTIONS(6986), 1, + sym_escape_sequence, + ACTIONS(6988), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4245), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [200806] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6990), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [200831] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6992), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [200856] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6994), 1, + anon_sym_DQUOTE, + ACTIONS(6996), 1, + sym_escape_sequence, + ACTIONS(6998), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4248), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [200881] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7000), 1, + anon_sym_SQUOTE, + ACTIONS(7002), 1, + sym_escape_sequence, + ACTIONS(7004), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4249), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [200906] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7006), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7008), 1, + sym_escape_sequence, + ACTIONS(7010), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4250), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [200931] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7012), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7014), 1, + sym_escape_sequence, + ACTIONS(7016), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4251), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [200956] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7018), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [200981] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7020), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [201006] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7022), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [201031] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7024), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [201056] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7026), 1, + anon_sym_RBRACK, + ACTIONS(7028), 1, + sym_escape_sequence, + ACTIONS(7030), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4213), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [201081] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7032), 1, + anon_sym_RBRACE, + ACTIONS(7034), 1, + sym_escape_sequence, + ACTIONS(7036), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4214), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [201106] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7038), 1, + anon_sym_SLASH, + ACTIONS(7040), 1, + sym_escape_sequence, + ACTIONS(7042), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4215), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [201131] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7044), 1, + anon_sym_GT, + ACTIONS(7046), 1, + sym_escape_sequence, + ACTIONS(7048), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4216), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [201156] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7050), 1, + anon_sym_PIPE, + ACTIONS(7052), 1, + sym_escape_sequence, + ACTIONS(7054), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4217), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [201181] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7056), 1, + anon_sym_RPAREN, + ACTIONS(7058), 1, + sym_escape_sequence, + ACTIONS(7060), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4218), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [201206] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7062), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [201231] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7064), 1, + anon_sym_DQUOTE, + ACTIONS(7066), 1, + sym_escape_sequence, + ACTIONS(7068), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4253), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [201256] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7070), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7072), 1, + sym_escape_sequence, + ACTIONS(7074), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4257), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [201281] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7076), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [201306] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7078), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [201331] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7080), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [201356] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7082), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [201381] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7084), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7086), 1, + sym_escape_sequence, + ACTIONS(7088), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4259), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [201406] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7090), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [201431] = 7, + ACTIONS(7092), 1, + anon_sym_DQUOTE, + ACTIONS(7094), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7097), 1, + sym_escape_sequence, + ACTIONS(7100), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [201456] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7103), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [201481] = 7, + ACTIONS(7105), 1, + anon_sym_SQUOTE, + ACTIONS(7107), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7110), 1, + sym_escape_sequence, + ACTIONS(7113), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [201506] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7116), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [201531] = 7, + ACTIONS(7118), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7123), 1, + sym_escape_sequence, + ACTIONS(7126), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [201556] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7129), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [201581] = 7, + ACTIONS(7131), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7133), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7136), 1, + sym_escape_sequence, + ACTIONS(7139), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [201606] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7142), 1, + anon_sym_RPAREN, + ACTIONS(7144), 1, + sym_escape_sequence, + ACTIONS(7146), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4314), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [201631] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + sym_escape_sequence, + ACTIONS(7152), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4315), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [201656] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7154), 1, + anon_sym_RPAREN, + ACTIONS(7156), 1, + sym_escape_sequence, + ACTIONS(7158), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4283), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [201681] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7160), 1, + anon_sym_PIPE, + ACTIONS(7162), 1, + sym_escape_sequence, + ACTIONS(7164), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4284), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [201706] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7166), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [201731] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7168), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [201756] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7170), 1, + anon_sym_GT, + ACTIONS(7172), 1, + sym_escape_sequence, + ACTIONS(7174), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4285), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [201781] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7176), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [201806] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7178), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [201831] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7180), 1, + anon_sym_RPAREN, + ACTIONS(7182), 1, + sym_escape_sequence, + ACTIONS(7184), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4298), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [201856] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7186), 1, + anon_sym_PIPE, + ACTIONS(7188), 1, + sym_escape_sequence, + ACTIONS(7190), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4299), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [201881] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7192), 1, + anon_sym_GT, + ACTIONS(7194), 1, + sym_escape_sequence, + ACTIONS(7196), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4300), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [201906] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7198), 1, + anon_sym_SLASH, + ACTIONS(7200), 1, + sym_escape_sequence, + ACTIONS(7202), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4301), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [201931] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7204), 1, + anon_sym_RBRACE, + ACTIONS(7206), 1, + sym_escape_sequence, + ACTIONS(7208), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4302), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [201956] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7210), 1, + anon_sym_RBRACK, + ACTIONS(7212), 1, + sym_escape_sequence, + ACTIONS(7214), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4303), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [201981] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7216), 1, + anon_sym_SLASH, + ACTIONS(7218), 1, + sym_escape_sequence, + ACTIONS(7220), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4286), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [202006] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7222), 1, + anon_sym_RBRACE, + ACTIONS(7224), 1, + sym_escape_sequence, + ACTIONS(7226), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4287), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [202031] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7228), 1, + anon_sym_RBRACK, + ACTIONS(7230), 1, + sym_escape_sequence, + ACTIONS(7232), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4288), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [202056] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7234), 1, + anon_sym_GT, + ACTIONS(7236), 1, + sym_escape_sequence, + ACTIONS(7238), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4316), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [202081] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7240), 1, + anon_sym_SLASH, + ACTIONS(7242), 1, + sym_escape_sequence, + ACTIONS(7244), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4317), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [202106] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7246), 1, + anon_sym_RBRACE, + ACTIONS(7248), 1, + sym_escape_sequence, + ACTIONS(7250), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4319), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [202131] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7252), 1, + anon_sym_RBRACK, + ACTIONS(7254), 1, + sym_escape_sequence, + ACTIONS(7256), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4201), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [202156] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7258), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [202181] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7260), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [202206] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7262), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [202231] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7264), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [202256] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7266), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [202281] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7268), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [202306] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7270), 1, + anon_sym_SQUOTE, + ACTIONS(7272), 1, + sym_escape_sequence, + ACTIONS(7274), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4255), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [202331] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7276), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7278), 1, + sym_escape_sequence, + ACTIONS(7280), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4265), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [202356] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7282), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7284), 1, + sym_escape_sequence, + ACTIONS(7286), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4266), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [202381] = 7, + ACTIONS(6842), 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_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4268), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [202406] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7294), 1, + anon_sym_DQUOTE, + ACTIONS(7296), 1, + sym_escape_sequence, + ACTIONS(7298), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4269), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [202431] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7300), 1, + anon_sym_DQUOTE, + ACTIONS(7302), 1, + sym_escape_sequence, + ACTIONS(7304), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4304), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [202456] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7306), 1, + anon_sym_SQUOTE, + ACTIONS(7308), 1, + sym_escape_sequence, + ACTIONS(7310), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4305), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [202481] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7312), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7314), 1, + sym_escape_sequence, + ACTIONS(7316), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4306), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [202506] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7318), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7320), 1, + sym_escape_sequence, + ACTIONS(7322), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4307), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [202531] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7324), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [202556] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7326), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [202581] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7328), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [202606] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7330), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [202631] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7332), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [202656] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7334), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [202681] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7336), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [202706] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7338), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [202731] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7340), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [202756] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7342), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [202781] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7344), 1, + anon_sym_RPAREN, + ACTIONS(7346), 1, + sym_escape_sequence, + ACTIONS(7348), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4318), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [202806] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7350), 1, + anon_sym_PIPE, + ACTIONS(7352), 1, + sym_escape_sequence, + ACTIONS(7354), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4320), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [202831] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7356), 1, + anon_sym_GT, + ACTIONS(7358), 1, + sym_escape_sequence, + ACTIONS(7360), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4321), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [202856] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7362), 1, + anon_sym_SLASH, + ACTIONS(7364), 1, + sym_escape_sequence, + ACTIONS(7366), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4322), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [202881] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7368), 1, + anon_sym_RBRACE, + ACTIONS(7370), 1, + sym_escape_sequence, + ACTIONS(7372), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4323), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [202906] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7374), 1, + anon_sym_RBRACK, + ACTIONS(7376), 1, + sym_escape_sequence, + ACTIONS(7378), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4324), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [202931] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7380), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [202956] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7382), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [202981] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7384), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [203006] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7386), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [203031] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7388), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [203056] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7390), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [203081] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7392), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [203106] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7394), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [203131] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7396), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [203156] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7398), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [203181] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7400), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [203206] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7402), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [203231] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7404), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [203256] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7406), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [203281] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7408), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [203306] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7410), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [203331] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7412), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [203356] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7414), 1, + anon_sym_DQUOTE, + ACTIONS(7416), 1, + sym_escape_sequence, + ACTIONS(7418), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4340), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [203381] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7420), 1, + anon_sym_SQUOTE, + ACTIONS(7422), 1, + sym_escape_sequence, + ACTIONS(7424), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4341), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [203406] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7426), 1, + anon_sym_DQUOTE, + ACTIONS(7428), 1, + sym_escape_sequence, + ACTIONS(7430), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4424), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [203431] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7432), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7434), 1, + sym_escape_sequence, + ACTIONS(7436), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4342), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [203456] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7438), 1, + anon_sym_DQUOTE, + ACTIONS(7440), 1, + sym_escape_sequence, + ACTIONS(7442), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4352), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [203481] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7444), 1, + anon_sym_SQUOTE, + ACTIONS(7446), 1, + sym_escape_sequence, + ACTIONS(7448), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4353), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [203506] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7450), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7452), 1, + sym_escape_sequence, + ACTIONS(7454), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4354), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [203531] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7456), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7458), 1, + sym_escape_sequence, + ACTIONS(7460), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4355), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [203556] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7462), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7464), 1, + sym_escape_sequence, + ACTIONS(7466), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4343), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [203581] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7468), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [203606] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7470), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [203631] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7472), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [203656] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7474), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [203681] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7476), 1, + anon_sym_RPAREN, + ACTIONS(7478), 1, + sym_escape_sequence, + ACTIONS(7480), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4351), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [203706] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7482), 1, + anon_sym_PIPE, + ACTIONS(7484), 1, + sym_escape_sequence, + ACTIONS(7486), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4356), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [203731] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7488), 1, + anon_sym_GT, + ACTIONS(7490), 1, + sym_escape_sequence, + ACTIONS(7492), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4357), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [203756] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7494), 1, + anon_sym_SLASH, + ACTIONS(7496), 1, + sym_escape_sequence, + ACTIONS(7498), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4361), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [203781] = 7, + ACTIONS(6910), 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_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4363), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [203806] = 7, + ACTIONS(6826), 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_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4366), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [203831] = 7, + ACTIONS(7512), 1, + anon_sym_RPAREN, + ACTIONS(7514), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7517), 1, + sym_escape_sequence, + ACTIONS(7520), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [203856] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7523), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [203881] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7525), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [203906] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7527), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [203931] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7529), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [203956] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7531), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [203981] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7533), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [204006] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7535), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [204031] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7537), 1, + anon_sym_RBRACK, + ACTIONS(7539), 1, + sym_escape_sequence, + ACTIONS(7541), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4325), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [204056] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7543), 1, + anon_sym_RBRACE, + ACTIONS(7545), 1, + sym_escape_sequence, + ACTIONS(7547), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4326), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [204081] = 7, + ACTIONS(7549), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7554), 1, + sym_escape_sequence, + ACTIONS(7557), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [204106] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7560), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [204131] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7562), 1, + anon_sym_SLASH, + ACTIONS(7564), 1, + sym_escape_sequence, + ACTIONS(7566), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4327), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [204156] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7568), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [204181] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7570), 1, + anon_sym_GT, + ACTIONS(7572), 1, + sym_escape_sequence, + ACTIONS(7574), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4328), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [204206] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7576), 1, + anon_sym_PIPE, + ACTIONS(7578), 1, + sym_escape_sequence, + ACTIONS(7580), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4329), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [204231] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7582), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [204256] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7584), 1, + anon_sym_RPAREN, + ACTIONS(7586), 1, + sym_escape_sequence, + ACTIONS(7588), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4330), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [204281] = 7, + ACTIONS(7590), 1, + anon_sym_GT, + ACTIONS(7592), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7595), 1, + sym_escape_sequence, + ACTIONS(7598), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [204306] = 7, + ACTIONS(7601), 1, + anon_sym_SLASH, + ACTIONS(7603), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7606), 1, + sym_escape_sequence, + ACTIONS(7609), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [204331] = 7, + ACTIONS(7612), 1, + anon_sym_RBRACE, + ACTIONS(7614), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7617), 1, + sym_escape_sequence, + ACTIONS(7620), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [204356] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7623), 1, + anon_sym_DQUOTE, + ACTIONS(7625), 1, + sym_escape_sequence, + ACTIONS(7627), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4382), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204381] = 7, + ACTIONS(7629), 1, + anon_sym_RBRACK, + ACTIONS(7631), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7634), 1, + sym_escape_sequence, + ACTIONS(7637), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [204406] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7640), 1, + anon_sym_RPAREN, + ACTIONS(7642), 1, + sym_escape_sequence, + ACTIONS(7644), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4401), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [204431] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7646), 1, + anon_sym_PIPE, + ACTIONS(7648), 1, + sym_escape_sequence, + ACTIONS(7650), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4402), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [204456] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7652), 1, + anon_sym_GT, + ACTIONS(7654), 1, + sym_escape_sequence, + ACTIONS(7656), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4403), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [204481] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7658), 1, + anon_sym_SLASH, + ACTIONS(7660), 1, + sym_escape_sequence, + ACTIONS(7662), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4404), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [204506] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7664), 1, + anon_sym_RBRACE, + ACTIONS(7666), 1, + sym_escape_sequence, + ACTIONS(7668), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4405), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [204531] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7670), 1, + anon_sym_RBRACK, + ACTIONS(7672), 1, + sym_escape_sequence, + ACTIONS(7674), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4406), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [204556] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7676), 1, + anon_sym_SQUOTE, + ACTIONS(7678), 1, + sym_escape_sequence, + ACTIONS(7680), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4383), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204581] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7682), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7684), 1, + sym_escape_sequence, + ACTIONS(7686), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4384), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [204606] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7688), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7690), 1, + sym_escape_sequence, + ACTIONS(7692), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4385), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [204631] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7694), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204656] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7696), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204681] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7698), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [204706] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7700), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [204731] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7702), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204756] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7704), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204781] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7706), 1, + anon_sym_SQUOTE, + ACTIONS(7708), 1, + sym_escape_sequence, + ACTIONS(7710), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4386), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204806] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7712), 1, + anon_sym_DQUOTE, + ACTIONS(7714), 1, + sym_escape_sequence, + ACTIONS(7716), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4387), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204831] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7718), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204856] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7720), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204881] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7722), 1, + anon_sym_SQUOTE, + ACTIONS(7724), 1, + sym_escape_sequence, + ACTIONS(7726), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4390), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204906] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7728), 1, + anon_sym_DQUOTE, + ACTIONS(7730), 1, + sym_escape_sequence, + ACTIONS(7732), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4391), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204931] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7734), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [204956] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7736), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [204981] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7738), 1, + anon_sym_SQUOTE, + ACTIONS(7740), 1, + sym_escape_sequence, + ACTIONS(7742), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4394), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205006] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7744), 1, + anon_sym_DQUOTE, + ACTIONS(7746), 1, + sym_escape_sequence, + ACTIONS(7748), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4395), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205031] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7750), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205056] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7752), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205081] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7754), 1, + anon_sym_SQUOTE, + ACTIONS(7756), 1, + sym_escape_sequence, + ACTIONS(7758), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4398), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205106] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7760), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [205131] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(7762), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [205156] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(7764), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [205181] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7766), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [205206] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7768), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [205231] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7770), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [205256] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7772), 1, + anon_sym_DQUOTE, + ACTIONS(7774), 1, + sym_escape_sequence, + ACTIONS(7776), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4399), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205281] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7778), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205306] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7780), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205331] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7782), 1, + anon_sym_SQUOTE, + ACTIONS(7784), 1, + sym_escape_sequence, + ACTIONS(7786), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4408), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205356] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7788), 1, + anon_sym_DQUOTE, + ACTIONS(7790), 1, + sym_escape_sequence, + ACTIONS(7792), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4409), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205381] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7794), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205406] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7796), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205431] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7798), 1, + anon_sym_SQUOTE, + ACTIONS(7800), 1, + sym_escape_sequence, + ACTIONS(7802), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4412), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205456] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7804), 1, + anon_sym_DQUOTE, + ACTIONS(7806), 1, + sym_escape_sequence, + ACTIONS(7808), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4413), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205481] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7810), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205506] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7812), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205531] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7814), 1, + anon_sym_SQUOTE, + ACTIONS(7816), 1, + sym_escape_sequence, + ACTIONS(7818), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4416), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205556] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7820), 1, + anon_sym_DQUOTE, + ACTIONS(7822), 1, + sym_escape_sequence, + ACTIONS(7824), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4417), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205581] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7826), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [205606] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7828), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205631] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7830), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [205656] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7832), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205681] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7834), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205706] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7836), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205731] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7838), 1, + anon_sym_SQUOTE, + ACTIONS(7840), 1, + sym_escape_sequence, + ACTIONS(7842), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4421), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205756] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7844), 1, + anon_sym_DQUOTE, + ACTIONS(7846), 1, + sym_escape_sequence, + ACTIONS(7848), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4425), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205781] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7850), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205806] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7852), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205831] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7854), 1, + anon_sym_SQUOTE, + ACTIONS(7856), 1, + sym_escape_sequence, + ACTIONS(7858), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4428), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205856] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7860), 1, + anon_sym_DQUOTE, + ACTIONS(7862), 1, + sym_escape_sequence, + ACTIONS(7864), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4429), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [205881] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7866), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7868), 1, + sym_escape_sequence, + ACTIONS(7870), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4420), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [205906] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7872), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7874), 1, + sym_escape_sequence, + ACTIONS(7876), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4422), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [205931] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7878), 1, + anon_sym_SQUOTE, + ACTIONS(7880), 1, + sym_escape_sequence, + ACTIONS(7882), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4423), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [205956] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7884), 1, + anon_sym_RPAREN, + ACTIONS(7886), 1, + sym_escape_sequence, + ACTIONS(7888), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4469), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [205981] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7890), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206006] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7892), 1, + anon_sym_DQUOTE, + ACTIONS(7894), 1, + sym_escape_sequence, + ACTIONS(7896), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4454), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206031] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7898), 1, + anon_sym_SQUOTE, + ACTIONS(7900), 1, + sym_escape_sequence, + ACTIONS(7902), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4455), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206056] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7904), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7906), 1, + sym_escape_sequence, + ACTIONS(7908), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4456), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [206081] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7910), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7912), 1, + sym_escape_sequence, + ACTIONS(7914), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4457), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [206106] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7916), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206131] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7918), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 1, + sym_escape_sequence, + ACTIONS(7922), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4436), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206156] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7924), 1, + anon_sym_DQUOTE, + ACTIONS(7926), 1, + sym_escape_sequence, + ACTIONS(7928), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4441), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206181] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7930), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206206] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7932), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206231] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7934), 1, + anon_sym_SQUOTE, + ACTIONS(7936), 1, + sym_escape_sequence, + ACTIONS(7938), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4444), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206256] = 7, + ACTIONS(6834), 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_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4445), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206281] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7946), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206306] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7948), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206331] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7950), 1, + anon_sym_SQUOTE, + ACTIONS(7952), 1, + sym_escape_sequence, + ACTIONS(7954), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4448), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206356] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7956), 1, + anon_sym_DQUOTE, + ACTIONS(7958), 1, + sym_escape_sequence, + ACTIONS(7960), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4449), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206381] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7962), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206406] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7964), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206431] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7966), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206456] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7968), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206481] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7970), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [206506] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7972), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [206531] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7974), 1, + anon_sym_SQUOTE, + ACTIONS(7976), 1, + sym_escape_sequence, + ACTIONS(7978), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4452), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206556] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7980), 1, + anon_sym_DQUOTE, + ACTIONS(7982), 1, + sym_escape_sequence, + ACTIONS(7984), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4453), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206581] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(7986), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [206606] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(7988), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [206631] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(7990), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206656] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(7992), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206681] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(7994), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [206706] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7996), 1, + anon_sym_SQUOTE, + ACTIONS(7998), 1, + sym_escape_sequence, + ACTIONS(8000), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4462), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206731] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8002), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [206756] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8004), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [206781] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8006), 1, + anon_sym_DQUOTE, + ACTIONS(8008), 1, + sym_escape_sequence, + ACTIONS(8010), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4463), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206806] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8012), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [206831] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8014), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206856] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8016), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206881] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8018), 1, + anon_sym_SQUOTE, + ACTIONS(8020), 1, + sym_escape_sequence, + ACTIONS(8022), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4470), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206906] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8024), 1, + anon_sym_DQUOTE, + ACTIONS(8026), 1, + sym_escape_sequence, + ACTIONS(8028), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4471), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [206931] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8030), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [206956] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8032), 1, + anon_sym_RPAREN, + ACTIONS(8034), 1, + sym_escape_sequence, + ACTIONS(8036), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4502), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [206981] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8038), 1, + anon_sym_PIPE, + ACTIONS(8040), 1, + sym_escape_sequence, + ACTIONS(8042), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4503), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [207006] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8044), 1, + anon_sym_GT, + ACTIONS(8046), 1, + sym_escape_sequence, + ACTIONS(8048), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4504), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [207031] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8050), 1, + anon_sym_SLASH, + ACTIONS(8052), 1, + sym_escape_sequence, + ACTIONS(8054), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4505), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [207056] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8056), 1, + anon_sym_RBRACE, + ACTIONS(8058), 1, + sym_escape_sequence, + ACTIONS(8060), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4506), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [207081] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8062), 1, + anon_sym_RBRACK, + ACTIONS(8064), 1, + sym_escape_sequence, + ACTIONS(8066), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4507), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [207106] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8068), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207131] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8070), 1, + anon_sym_SQUOTE, + ACTIONS(8072), 1, + sym_escape_sequence, + ACTIONS(8074), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4474), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207156] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8076), 1, + anon_sym_DQUOTE, + ACTIONS(8078), 1, + sym_escape_sequence, + ACTIONS(8080), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4481), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207181] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8082), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207206] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8084), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207231] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8086), 1, + anon_sym_SQUOTE, + ACTIONS(8088), 1, + sym_escape_sequence, + ACTIONS(8090), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4484), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207256] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8092), 1, + anon_sym_DQUOTE, + ACTIONS(8094), 1, + sym_escape_sequence, + ACTIONS(8096), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4485), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207281] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8098), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [207306] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8100), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [207331] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8102), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207356] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8104), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207381] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8106), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8108), 1, + sym_escape_sequence, + ACTIONS(8110), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4488), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [207406] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8112), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8114), 1, + sym_escape_sequence, + ACTIONS(8116), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4489), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [207431] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8118), 1, + anon_sym_SQUOTE, + ACTIONS(8120), 1, + sym_escape_sequence, + ACTIONS(8122), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4490), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207456] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8124), 1, + anon_sym_DQUOTE, + ACTIONS(8126), 1, + sym_escape_sequence, + ACTIONS(8128), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4491), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207481] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8130), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [207506] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8132), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [207531] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8134), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207556] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8136), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207581] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8138), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8140), 1, + sym_escape_sequence, + ACTIONS(8142), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4496), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [207606] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8144), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8146), 1, + sym_escape_sequence, + ACTIONS(8148), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4497), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [207631] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8150), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [207656] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8152), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [207681] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8154), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [207706] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [207731] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8158), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [207756] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8160), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [207781] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8162), 1, + anon_sym_SQUOTE, + ACTIONS(8164), 1, + sym_escape_sequence, + ACTIONS(8166), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4498), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207806] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8168), 1, + anon_sym_DQUOTE, + ACTIONS(8170), 1, + sym_escape_sequence, + ACTIONS(8172), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4499), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207831] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8174), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [207856] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8176), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [207881] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8178), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [207906] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8180), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [207931] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8182), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8184), 1, + sym_escape_sequence, + ACTIONS(8186), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4510), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [207956] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8188), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8190), 1, + sym_escape_sequence, + ACTIONS(8192), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4511), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [207981] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8194), 1, + anon_sym_SQUOTE, + ACTIONS(8196), 1, + sym_escape_sequence, + ACTIONS(8198), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4512), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208006] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8200), 1, + anon_sym_DQUOTE, + ACTIONS(8202), 1, + sym_escape_sequence, + ACTIONS(8204), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4513), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208031] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8206), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208056] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8208), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208081] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8210), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208106] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8212), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208131] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8214), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8216), 1, + sym_escape_sequence, + ACTIONS(8218), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4518), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208156] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8220), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8222), 1, + sym_escape_sequence, + ACTIONS(8224), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4519), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208181] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8226), 1, + anon_sym_SQUOTE, + ACTIONS(8228), 1, + sym_escape_sequence, + ACTIONS(8230), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4520), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208206] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8232), 1, + anon_sym_DQUOTE, + ACTIONS(8234), 1, + sym_escape_sequence, + ACTIONS(8236), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4521), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208231] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8238), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208256] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8240), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208281] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8242), 1, + anon_sym_RBRACK, + ACTIONS(8244), 1, + sym_escape_sequence, + ACTIONS(8246), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4460), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [208306] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8248), 1, + anon_sym_RBRACE, + ACTIONS(8250), 1, + sym_escape_sequence, + ACTIONS(8252), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4461), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [208331] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8254), 1, + anon_sym_SLASH, + ACTIONS(8256), 1, + sym_escape_sequence, + ACTIONS(8258), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4464), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [208356] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8260), 1, + anon_sym_GT, + ACTIONS(8262), 1, + sym_escape_sequence, + ACTIONS(8264), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4466), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [208381] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8266), 1, + anon_sym_PIPE, + ACTIONS(8268), 1, + sym_escape_sequence, + ACTIONS(8270), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4467), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [208406] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8272), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208431] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8274), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208456] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8276), 1, + anon_sym_DQUOTE, + ACTIONS(8278), 1, + sym_escape_sequence, + ACTIONS(8280), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4544), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208481] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8282), 1, + anon_sym_SQUOTE, + ACTIONS(8284), 1, + sym_escape_sequence, + ACTIONS(8286), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4545), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208506] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8288), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4546), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208531] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8294), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8296), 1, + sym_escape_sequence, + ACTIONS(8298), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4547), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208556] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8300), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8302), 1, + sym_escape_sequence, + ACTIONS(8304), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4526), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208581] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8306), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8308), 1, + sym_escape_sequence, + ACTIONS(8310), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4527), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208606] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8312), 1, + anon_sym_SQUOTE, + ACTIONS(8314), 1, + sym_escape_sequence, + ACTIONS(8316), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4533), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208631] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8318), 1, + anon_sym_DQUOTE, + ACTIONS(8320), 1, + sym_escape_sequence, + ACTIONS(8322), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4534), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208656] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8324), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208681] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8326), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208706] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8328), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208731] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8330), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208756] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8332), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [208781] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8334), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [208806] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8336), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [208831] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8338), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [208856] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8340), 1, + anon_sym_RPAREN, + ACTIONS(8342), 1, + sym_escape_sequence, + ACTIONS(8344), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4567), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [208881] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8346), 1, + anon_sym_PIPE, + ACTIONS(8348), 1, + sym_escape_sequence, + ACTIONS(8350), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4568), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [208906] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8352), 1, + anon_sym_GT, + ACTIONS(8354), 1, + sym_escape_sequence, + ACTIONS(8356), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4569), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [208931] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8358), 1, + anon_sym_SLASH, + ACTIONS(8360), 1, + sym_escape_sequence, + ACTIONS(8362), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4570), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [208956] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8364), 1, + anon_sym_RBRACE, + ACTIONS(8366), 1, + sym_escape_sequence, + ACTIONS(8368), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4571), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [208981] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8370), 1, + anon_sym_RBRACK, + ACTIONS(8372), 1, + sym_escape_sequence, + ACTIONS(8374), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4572), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [209006] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8376), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8378), 1, + sym_escape_sequence, + ACTIONS(8380), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4543), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209031] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8382), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8384), 1, + sym_escape_sequence, + ACTIONS(8386), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4548), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209056] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8388), 1, + anon_sym_SQUOTE, + ACTIONS(8390), 1, + sym_escape_sequence, + ACTIONS(8392), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4549), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209081] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8394), 1, + anon_sym_DQUOTE, + ACTIONS(8396), 1, + sym_escape_sequence, + ACTIONS(8398), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4550), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209106] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8400), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209131] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8402), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209156] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8404), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209181] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8406), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209206] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8408), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8410), 1, + sym_escape_sequence, + ACTIONS(8412), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209231] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8414), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8416), 1, + sym_escape_sequence, + ACTIONS(8418), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4562), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209256] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8420), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [209281] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8422), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [209306] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8424), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [209331] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(8426), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [209356] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8428), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [209381] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8430), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [209406] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8432), 1, + anon_sym_SQUOTE, + ACTIONS(8434), 1, + sym_escape_sequence, + ACTIONS(8436), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4563), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209431] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8438), 1, + anon_sym_DQUOTE, + ACTIONS(8440), 1, + sym_escape_sequence, + ACTIONS(8442), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4564), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209456] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8444), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209481] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8446), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209506] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8448), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209531] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8450), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209556] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8452), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8454), 1, + sym_escape_sequence, + ACTIONS(8456), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4575), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209581] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8458), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8460), 1, + sym_escape_sequence, + ACTIONS(8462), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4576), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209606] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8464), 1, + anon_sym_SQUOTE, + ACTIONS(8466), 1, + sym_escape_sequence, + ACTIONS(8468), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4577), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209631] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8470), 1, + anon_sym_DQUOTE, + ACTIONS(8472), 1, + sym_escape_sequence, + ACTIONS(8474), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4578), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209656] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8476), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [209681] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8478), 1, + anon_sym_DQUOTE, + ACTIONS(8480), 1, + sym_escape_sequence, + ACTIONS(8482), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4593), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209706] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8484), 1, + anon_sym_SQUOTE, + ACTIONS(8486), 1, + sym_escape_sequence, + ACTIONS(8488), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4594), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209731] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8490), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8492), 1, + sym_escape_sequence, + ACTIONS(8494), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4595), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209756] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8496), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8498), 1, + sym_escape_sequence, + ACTIONS(8500), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4596), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209781] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8502), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209806] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8504), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209831] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8506), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209856] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8508), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209881] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8510), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [209906] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8512), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [209931] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8514), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [209956] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8516), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [209981] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8518), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210006] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8520), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210031] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8522), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8524), 1, + sym_escape_sequence, + ACTIONS(8526), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4588), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210056] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8528), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8530), 1, + sym_escape_sequence, + ACTIONS(8532), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4589), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210081] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8534), 1, + anon_sym_RPAREN, + ACTIONS(8536), 1, + sym_escape_sequence, + ACTIONS(8538), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4616), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [210106] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8540), 1, + anon_sym_PIPE, + ACTIONS(8542), 1, + sym_escape_sequence, + ACTIONS(8544), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4617), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [210131] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8546), 1, + anon_sym_GT, + ACTIONS(8548), 1, + sym_escape_sequence, + ACTIONS(8550), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4618), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [210156] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8552), 1, + anon_sym_SLASH, + ACTIONS(8554), 1, + sym_escape_sequence, + ACTIONS(8556), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4619), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [210181] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8558), 1, + anon_sym_RBRACE, + ACTIONS(8560), 1, + sym_escape_sequence, + ACTIONS(8562), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4620), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [210206] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8564), 1, + anon_sym_RBRACK, + ACTIONS(8566), 1, + sym_escape_sequence, + ACTIONS(8568), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4621), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [210231] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8570), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210256] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8572), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [210281] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8574), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8576), 1, + sym_escape_sequence, + ACTIONS(8578), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4592), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210306] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8580), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8582), 1, + sym_escape_sequence, + ACTIONS(8584), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4597), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210331] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8586), 1, + anon_sym_SQUOTE, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4606), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210356] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8592), 1, + anon_sym_DQUOTE, + ACTIONS(8594), 1, + sym_escape_sequence, + ACTIONS(8596), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4607), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [210381] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8598), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210406] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8600), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210431] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8602), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210456] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8604), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [210481] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8606), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [210506] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8608), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [210531] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8610), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [210556] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(8612), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [210581] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8614), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [210606] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8616), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [210631] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8618), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8620), 1, + sym_escape_sequence, + ACTIONS(8622), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4612), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210656] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8624), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8626), 1, + sym_escape_sequence, + ACTIONS(8628), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4613), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210681] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8630), 1, + anon_sym_SQUOTE, + ACTIONS(8632), 1, + sym_escape_sequence, + ACTIONS(8634), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4614), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210706] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8636), 1, + anon_sym_DQUOTE, + ACTIONS(8638), 1, + sym_escape_sequence, + ACTIONS(8640), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4615), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [210731] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8642), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210756] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8644), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210781] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8646), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210806] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8648), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [210831] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8650), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8652), 1, + sym_escape_sequence, + ACTIONS(8654), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4626), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [210856] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8656), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8658), 1, + sym_escape_sequence, + ACTIONS(8660), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4627), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210881] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8662), 1, + anon_sym_SQUOTE, + ACTIONS(8664), 1, + sym_escape_sequence, + ACTIONS(8666), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4590), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210906] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8668), 1, + anon_sym_DQUOTE, + ACTIONS(8670), 1, + sym_escape_sequence, + ACTIONS(8672), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4642), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [210931] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8674), 1, + anon_sym_SQUOTE, + ACTIONS(8676), 1, + sym_escape_sequence, + ACTIONS(8678), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4643), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [210956] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8680), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8682), 1, + sym_escape_sequence, + ACTIONS(8684), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4644), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [210981] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8686), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8688), 1, + sym_escape_sequence, + ACTIONS(8690), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4645), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [211006] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8692), 1, + anon_sym_DQUOTE, + ACTIONS(8694), 1, + sym_escape_sequence, + ACTIONS(8696), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4591), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [211031] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8698), 1, + anon_sym_SQUOTE, + ACTIONS(8700), 1, + sym_escape_sequence, + ACTIONS(8702), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4628), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [211056] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8704), 1, + anon_sym_DQUOTE, + ACTIONS(8706), 1, + sym_escape_sequence, + ACTIONS(8708), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4629), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [211081] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8710), 1, + anon_sym_RPAREN, + ACTIONS(8712), 1, + sym_escape_sequence, + ACTIONS(8714), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4729), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [211106] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8716), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [211131] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8718), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [211156] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8720), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [211181] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8722), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [211206] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8724), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [211231] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8726), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [211256] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8728), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [211281] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8730), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [211306] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8732), 1, + anon_sym_RPAREN, + ACTIONS(8734), 1, + sym_escape_sequence, + ACTIONS(8736), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4665), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [211331] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8738), 1, + anon_sym_PIPE, + ACTIONS(8740), 1, + sym_escape_sequence, + ACTIONS(8742), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4666), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [211356] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8744), 1, + anon_sym_GT, + ACTIONS(8746), 1, + sym_escape_sequence, + ACTIONS(8748), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4667), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [211381] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8750), 1, + anon_sym_SLASH, + ACTIONS(8752), 1, + sym_escape_sequence, + ACTIONS(8754), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4668), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [211406] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8756), 1, + anon_sym_RBRACE, + ACTIONS(8758), 1, + sym_escape_sequence, + ACTIONS(8760), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4669), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [211431] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8762), 1, + anon_sym_RBRACK, + ACTIONS(8764), 1, + sym_escape_sequence, + ACTIONS(8766), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4670), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [211456] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8768), 1, + anon_sym_PIPE, + ACTIONS(8770), 1, + sym_escape_sequence, + ACTIONS(8772), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4730), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [211481] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8774), 1, + anon_sym_GT, + ACTIONS(8776), 1, + sym_escape_sequence, + ACTIONS(8778), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4697), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [211506] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8780), 1, + anon_sym_SLASH, + ACTIONS(8782), 1, + sym_escape_sequence, + ACTIONS(8784), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4200), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [211531] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8786), 1, + anon_sym_RBRACE, + ACTIONS(8788), 1, + sym_escape_sequence, + ACTIONS(8790), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4696), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [211556] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8792), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8794), 1, + sym_escape_sequence, + ACTIONS(8796), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4641), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [211581] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8798), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8800), 1, + sym_escape_sequence, + ACTIONS(8802), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4646), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [211606] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8804), 1, + anon_sym_SQUOTE, + ACTIONS(8806), 1, + sym_escape_sequence, + ACTIONS(8808), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4647), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [211631] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8810), 1, + anon_sym_DQUOTE, + ACTIONS(8812), 1, + sym_escape_sequence, + ACTIONS(8814), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4648), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [211656] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8816), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [211681] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8818), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [211706] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8820), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [211731] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8822), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [211756] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8824), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [211781] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(8826), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [211806] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8828), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [211831] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8830), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [211856] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(8832), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [211881] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8834), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [211906] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8836), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [211931] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8838), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [211956] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8840), 1, + anon_sym_RBRACK, + ACTIONS(8842), 1, + sym_escape_sequence, + ACTIONS(8844), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4663), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [211981] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8846), 1, + anon_sym_RBRACE, + ACTIONS(8848), 1, + sym_escape_sequence, + ACTIONS(8850), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4664), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [212006] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8852), 1, + anon_sym_SLASH, + ACTIONS(8854), 1, + sym_escape_sequence, + ACTIONS(8856), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4671), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [212031] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8858), 1, + anon_sym_GT, + ACTIONS(8860), 1, + sym_escape_sequence, + ACTIONS(8862), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4672), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [212056] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8864), 1, + anon_sym_PIPE, + ACTIONS(8866), 1, + sym_escape_sequence, + ACTIONS(8868), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4673), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [212081] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8870), 1, + anon_sym_RPAREN, + ACTIONS(8872), 1, + sym_escape_sequence, + ACTIONS(8874), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4674), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [212106] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8876), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [212131] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8878), 1, + anon_sym_DQUOTE, + ACTIONS(8880), 1, + sym_escape_sequence, + ACTIONS(8882), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4691), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [212156] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8884), 1, + anon_sym_SQUOTE, + ACTIONS(8886), 1, + sym_escape_sequence, + ACTIONS(8888), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4692), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [212181] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8890), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8892), 1, + sym_escape_sequence, + ACTIONS(8894), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4693), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [212206] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8896), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8898), 1, + sym_escape_sequence, + ACTIONS(8900), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4694), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [212231] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8902), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [212256] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8904), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [212281] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8906), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [212306] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8908), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8910), 1, + sym_escape_sequence, + ACTIONS(8912), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [212331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8914), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(6621), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [212350] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(8916), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [212375] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(8918), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [212400] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(8920), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [212425] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(8922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [212450] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8924), 1, + anon_sym_RBRACK, + ACTIONS(8926), 1, + sym_escape_sequence, + ACTIONS(8928), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4583), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [212475] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8930), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [212500] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8932), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [212525] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8934), 1, + anon_sym_RPAREN, + ACTIONS(8936), 1, + sym_escape_sequence, + ACTIONS(8938), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4714), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [212550] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8940), 1, + anon_sym_PIPE, + ACTIONS(8942), 1, + sym_escape_sequence, + ACTIONS(8944), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4715), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [212575] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8946), 1, + anon_sym_GT, + ACTIONS(8948), 1, + sym_escape_sequence, + ACTIONS(8950), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4716), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [212600] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8952), 1, + anon_sym_SLASH, + ACTIONS(8954), 1, + sym_escape_sequence, + ACTIONS(8956), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4717), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [212625] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8958), 1, + anon_sym_RBRACE, + ACTIONS(8960), 1, + sym_escape_sequence, + ACTIONS(8962), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4718), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [212650] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8964), 1, + anon_sym_RBRACK, + ACTIONS(8966), 1, + sym_escape_sequence, + ACTIONS(8968), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4719), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [212675] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8970), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8972), 1, + sym_escape_sequence, + ACTIONS(8974), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4686), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [212700] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8976), 1, + anon_sym_SQUOTE, + ACTIONS(8978), 1, + sym_escape_sequence, + ACTIONS(8980), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4687), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [212725] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8982), 1, + anon_sym_DQUOTE, + ACTIONS(8984), 1, + sym_escape_sequence, + ACTIONS(8986), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4688), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [212750] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(8988), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [212775] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(8990), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [212800] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(8992), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [212825] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(8994), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [212850] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(8996), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [212875] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8998), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [212900] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9000), 1, + anon_sym_RBRACK, + ACTIONS(9002), 1, + sym_escape_sequence, + ACTIONS(9004), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4707), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [212925] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(9006), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [212950] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(9008), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [212975] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6922), 1, + sym_escape_sequence, + ACTIONS(6924), 1, + sym__quoted_content_i_angle, + ACTIONS(9010), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4368), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [213000] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 1, + sym__quoted_content_i_slash, + ACTIONS(9012), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4369), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [213025] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6912), 1, + sym_escape_sequence, + ACTIONS(6914), 1, + sym__quoted_content_i_curly, + ACTIONS(9014), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4370), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [213050] = 7, + ACTIONS(6826), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6828), 1, + sym_escape_sequence, + ACTIONS(6830), 1, + sym__quoted_content_i_square, + ACTIONS(9016), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4372), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [213075] = 7, + ACTIONS(6910), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9018), 1, + anon_sym_RBRACE, + ACTIONS(9020), 1, + sym_escape_sequence, + ACTIONS(9022), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4708), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [213100] = 7, + ACTIONS(6818), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9024), 1, + anon_sym_SLASH, + ACTIONS(9026), 1, + sym_escape_sequence, + ACTIONS(9028), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4709), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [213125] = 7, + ACTIONS(6920), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9030), 1, + anon_sym_GT, + ACTIONS(9032), 1, + sym_escape_sequence, + ACTIONS(9034), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4710), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [213150] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9036), 1, + anon_sym_PIPE, + ACTIONS(9038), 1, + sym_escape_sequence, + ACTIONS(9040), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4711), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [213175] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9042), 1, + anon_sym_RPAREN, + ACTIONS(9044), 1, + sym_escape_sequence, + ACTIONS(9046), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4712), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [213200] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6944), 1, + sym_escape_sequence, + ACTIONS(6946), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(9048), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4260), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [213225] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6902), 1, + sym_escape_sequence, + ACTIONS(6904), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(9050), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4258), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [213250] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6896), 1, + sym_escape_sequence, + ACTIONS(6898), 1, + sym__quoted_content_i_single, + ACTIONS(9052), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4256), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [213275] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 1, + sym__quoted_content_i_double, + ACTIONS(9054), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4254), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [213300] = 7, + ACTIONS(6936), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(9056), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4350), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [213325] = 7, + ACTIONS(6928), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + sym_escape_sequence, + ACTIONS(6932), 1, + sym__quoted_content_i_bar, + ACTIONS(9058), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4360), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [213350] = 7, + ACTIONS(6834), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9060), 1, + anon_sym_DQUOTE, + ACTIONS(9062), 1, + sym_escape_sequence, + ACTIONS(9064), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4728), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [213375] = 7, + ACTIONS(6842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9066), 1, + anon_sym_SQUOTE, + ACTIONS(9068), 1, + sym_escape_sequence, + ACTIONS(9070), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4727), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [213400] = 7, + ACTIONS(6850), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9072), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9074), 1, + sym_escape_sequence, + ACTIONS(9076), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4726), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [213425] = 7, + ACTIONS(6858), 1, + anon_sym_POUND_LBRACE, + ACTIONS(9078), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9080), 1, + sym_escape_sequence, + ACTIONS(9082), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + STATE(4725), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [213450] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(921), 1, + anon_sym_RPAREN, + ACTIONS(4597), 1, + anon_sym_SEMI, + STATE(162), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213476] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(915), 1, + anon_sym_RPAREN, + ACTIONS(4443), 1, + anon_sym_SEMI, + STATE(127), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4746), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213502] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(997), 1, + anon_sym_RPAREN, + ACTIONS(9084), 1, + anon_sym_SEMI, + STATE(171), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213528] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9088), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213554] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_COMMA, + STATE(4760), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [213574] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(989), 1, + anon_sym_RPAREN, + ACTIONS(4488), 1, + anon_sym_SEMI, + STATE(158), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4759), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213600] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9094), 1, + anon_sym_COMMA, + STATE(4764), 1, + aux_sym__stab_clause_arguments_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(9092), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [213620] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9096), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4753), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213646] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(911), 1, + anon_sym_RPAREN, + ACTIONS(4526), 1, + anon_sym_SEMI, + STATE(166), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4761), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213672] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9098), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213698] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9098), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4845), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213724] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(911), 1, + anon_sym_RPAREN, + ACTIONS(4526), 1, + anon_sym_SEMI, + STATE(166), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213750] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1003), 1, + anon_sym_RPAREN, + ACTIONS(9100), 1, + anon_sym_SEMI, + STATE(167), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213776] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9102), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213802] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9102), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4738), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213828] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9104), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4777), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213854] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LF, + ACTIONS(2290), 1, + ts_builtin_sym_end, + ACTIONS(5268), 1, + anon_sym_SEMI, + STATE(595), 1, + sym__terminator, + STATE(1317), 1, + aux_sym__terminator_repeat1, + STATE(4786), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213880] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9106), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4756), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213906] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9106), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213932] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_end, + ACTIONS(5270), 1, + anon_sym_LF, + ACTIONS(5273), 1, + anon_sym_SEMI, + STATE(436), 1, + sym__terminator, + STATE(1327), 1, + aux_sym__terminator_repeat1, + STATE(4823), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [213958] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_COMMA, + STATE(4755), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [213978] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9111), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214004] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1774), 1, + anon_sym_end, + ACTIONS(9113), 1, + anon_sym_LF, + ACTIONS(9116), 1, + anon_sym_SEMI, + STATE(441), 1, + sym__terminator, + STATE(1327), 1, + aux_sym__terminator_repeat1, + STATE(4823), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214030] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(987), 1, + anon_sym_RPAREN, + ACTIONS(4539), 1, + anon_sym_SEMI, + STATE(175), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4792), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214056] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(987), 1, + anon_sym_RPAREN, + ACTIONS(4539), 1, + anon_sym_SEMI, + STATE(175), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214082] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9090), 1, + anon_sym_COMMA, + STATE(4794), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [214102] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1005), 1, + anon_sym_RPAREN, + ACTIONS(9119), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214128] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1033), 1, + anon_sym_RPAREN, + ACTIONS(4676), 1, + anon_sym_SEMI, + STATE(182), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4773), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214154] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(4668), 1, + anon_sym_SEMI, + STATE(165), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214180] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9123), 1, + anon_sym_COMMA, + STATE(4796), 1, + aux_sym__stab_clause_arguments_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(9121), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [214200] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1045), 1, + anon_sym_RPAREN, + ACTIONS(4524), 1, + anon_sym_SEMI, + STATE(161), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4772), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214226] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(999), 1, + anon_sym_RPAREN, + ACTIONS(4668), 1, + anon_sym_SEMI, + STATE(165), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4747), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214252] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9125), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4781), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214278] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9127), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4748), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214304] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(4718), 1, + anon_sym_SEMI, + STATE(147), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4785), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214330] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9129), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4776), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214356] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(995), 1, + anon_sym_RPAREN, + ACTIONS(4555), 1, + anon_sym_SEMI, + STATE(149), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4778), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214382] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(995), 1, + anon_sym_RPAREN, + ACTIONS(4555), 1, + anon_sym_SEMI, + STATE(149), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214408] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1049), 1, + anon_sym_RPAREN, + ACTIONS(4718), 1, + anon_sym_SEMI, + STATE(147), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214434] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9131), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4802), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214460] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9133), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4783), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214486] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9133), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214512] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9131), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214538] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(967), 1, + anon_sym_RPAREN, + ACTIONS(9135), 1, + anon_sym_SEMI, + STATE(139), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214564] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + anon_sym_LF, + ACTIONS(2342), 1, + ts_builtin_sym_end, + ACTIONS(9137), 1, + anon_sym_SEMI, + STATE(517), 1, + sym__terminator, + STATE(1317), 1, + aux_sym__terminator_repeat1, + STATE(4786), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214590] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9139), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4799), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214616] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9139), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214642] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(973), 1, + anon_sym_RPAREN, + ACTIONS(4666), 1, + anon_sym_SEMI, + STATE(163), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4763), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214668] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9141), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214694] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9143), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214720] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(963), 1, + anon_sym_RPAREN, + ACTIONS(9145), 1, + anon_sym_SEMI, + STATE(142), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214746] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4873), 1, + ts_builtin_sym_end, + ACTIONS(6607), 1, + anon_sym_LF, + ACTIONS(9147), 1, + anon_sym_SEMI, + STATE(940), 1, + sym__terminator, + STATE(1332), 1, + aux_sym__terminator_repeat1, + STATE(4786), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214772] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(983), 1, + anon_sym_RPAREN, + ACTIONS(4534), 1, + anon_sym_SEMI, + STATE(180), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4790), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214798] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9150), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4797), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214824] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1043), 1, + anon_sym_RPAREN, + ACTIONS(4577), 1, + anon_sym_SEMI, + STATE(173), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4800), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214850] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1043), 1, + anon_sym_RPAREN, + ACTIONS(4577), 1, + anon_sym_SEMI, + STATE(173), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214876] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1768), 1, + anon_sym_RPAREN, + ACTIONS(5062), 1, + anon_sym_LF, + ACTIONS(5065), 1, + anon_sym_SEMI, + STATE(460), 1, + sym__terminator, + STATE(1319), 1, + aux_sym__terminator_repeat1, + STATE(4830), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214902] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1029), 1, + anon_sym_RPAREN, + ACTIONS(9152), 1, + anon_sym_SEMI, + STATE(154), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214928] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5362), 1, + anon_sym_RPAREN, + ACTIONS(9154), 1, + anon_sym_LF, + ACTIONS(9157), 1, + anon_sym_SEMI, + STATE(191), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [214954] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9160), 1, + anon_sym_COMMA, + STATE(4794), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3887), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [214974] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9163), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4801), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215000] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9167), 1, + anon_sym_COMMA, + STATE(4796), 1, + aux_sym__stab_clause_arguments_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(9165), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [215020] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9163), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215046] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9170), 1, + anon_sym_COMMA, + STATE(4798), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3880), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [215066] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9173), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215092] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(9175), 1, + anon_sym_SEMI, + STATE(174), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215118] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9177), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215144] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9179), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215170] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9181), 1, + anon_sym_LF, + ACTIONS(9184), 1, + anon_sym_SEMI, + ACTIONS(9187), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215196] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(945), 1, + anon_sym_RPAREN, + ACTIONS(9189), 1, + anon_sym_SEMI, + STATE(140), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215222] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9191), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215248] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9191), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4784), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215274] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9193), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4813), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215300] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(993), 1, + anon_sym_RPAREN, + ACTIONS(4581), 1, + anon_sym_SEMI, + STATE(150), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4815), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215326] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(993), 1, + anon_sym_RPAREN, + ACTIONS(4581), 1, + anon_sym_SEMI, + STATE(150), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215352] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1774), 1, + anon_sym_RPAREN, + ACTIONS(9195), 1, + anon_sym_LF, + ACTIONS(9198), 1, + anon_sym_SEMI, + STATE(458), 1, + sym__terminator, + STATE(1319), 1, + aux_sym__terminator_repeat1, + STATE(4830), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215378] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(4550), 1, + anon_sym_SEMI, + STATE(160), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4809), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215404] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9201), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4820), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215430] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9201), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215456] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1039), 1, + anon_sym_RPAREN, + ACTIONS(4726), 1, + anon_sym_SEMI, + STATE(178), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4818), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215482] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(969), 1, + anon_sym_RPAREN, + ACTIONS(9203), 1, + anon_sym_SEMI, + STATE(145), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215508] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9205), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4826), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215534] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1037), 1, + anon_sym_RPAREN, + ACTIONS(4728), 1, + anon_sym_SEMI, + STATE(156), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4828), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215560] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1037), 1, + anon_sym_RPAREN, + ACTIONS(4728), 1, + anon_sym_SEMI, + STATE(156), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215586] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(4659), 1, + anon_sym_SEMI, + STATE(136), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215612] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9207), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215638] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(4659), 1, + anon_sym_SEMI, + STATE(136), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4804), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215664] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(947), 1, + anon_sym_RPAREN, + ACTIONS(4572), 1, + anon_sym_SEMI, + STATE(131), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4735), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215690] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4875), 1, + anon_sym_end, + ACTIONS(6607), 1, + anon_sym_LF, + ACTIONS(9209), 1, + anon_sym_SEMI, + STATE(959), 1, + sym__terminator, + STATE(1332), 1, + aux_sym__terminator_repeat1, + STATE(4823), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215716] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9212), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4744), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215742] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9214), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4829), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215768] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9214), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215794] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9216), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4805), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215820] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(981), 1, + anon_sym_RPAREN, + ACTIONS(9218), 1, + anon_sym_SEMI, + STATE(164), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215846] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9220), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215872] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4875), 1, + anon_sym_RPAREN, + ACTIONS(6607), 1, + anon_sym_LF, + ACTIONS(9222), 1, + anon_sym_SEMI, + STATE(662), 1, + sym__terminator, + STATE(1332), 1, + aux_sym__terminator_repeat1, + STATE(4830), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215898] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(935), 1, + anon_sym_RPAREN, + ACTIONS(4645), 1, + anon_sym_SEMI, + STATE(144), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4819), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215924] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9225), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215950] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1009), 1, + anon_sym_RPAREN, + ACTIONS(4528), 1, + anon_sym_SEMI, + STATE(169), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4836), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [215976] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9227), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4840), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216002] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1013), 1, + anon_sym_RPAREN, + ACTIONS(4724), 1, + anon_sym_SEMI, + STATE(155), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4844), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216028] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1013), 1, + anon_sym_RPAREN, + ACTIONS(4724), 1, + anon_sym_SEMI, + STATE(155), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216054] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9229), 1, + anon_sym_COMMA, + STATE(4755), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3862), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [216074] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(971), 1, + anon_sym_RPAREN, + ACTIONS(9232), 1, + anon_sym_SEMI, + STATE(138), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216100] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9234), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4846), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216126] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9234), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216152] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9236), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216178] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9236), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4832), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216204] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9238), 1, + anon_sym_COMMA, + STATE(4837), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(3873), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [216224] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(979), 1, + anon_sym_RPAREN, + ACTIONS(9241), 1, + anon_sym_SEMI, + STATE(148), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216250] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9243), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216276] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9245), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4803), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216302] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1031), 1, + anon_sym_RPAREN, + ACTIONS(4647), 1, + anon_sym_SEMI, + STATE(151), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4793), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216328] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1031), 1, + anon_sym_RPAREN, + ACTIONS(4647), 1, + anon_sym_SEMI, + STATE(151), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4838), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216354] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(9086), 1, + anon_sym_SEMI, + ACTIONS(9247), 1, + anon_sym_end, + STATE(193), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4841), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216380] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(921), 1, + anon_sym_RPAREN, + ACTIONS(4597), 1, + anon_sym_SEMI, + STATE(162), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4737), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216406] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(63), 1, + anon_sym_LF, + ACTIONS(1021), 1, + anon_sym_RPAREN, + ACTIONS(4579), 1, + anon_sym_SEMI, + STATE(176), 1, + sym__terminator, + STATE(1306), 1, + aux_sym__terminator_repeat1, + STATE(4847), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + [216432] = 6, + ACTIONS(9249), 1, + anon_sym_RBRACE, + ACTIONS(9251), 1, + sym_escape_sequence, + ACTIONS(9253), 1, + sym__quoted_content_curly, + STATE(5152), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216453] = 6, + ACTIONS(9255), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9257), 1, + sym_escape_sequence, + ACTIONS(9259), 1, + sym__quoted_content_heredoc_single, + STATE(5204), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216474] = 6, + ACTIONS(9261), 1, + anon_sym_SLASH, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216495] = 6, + ACTIONS(9267), 1, + anon_sym_GT, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216516] = 6, + ACTIONS(9273), 1, + anon_sym_PIPE, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216537] = 6, + ACTIONS(9279), 1, + anon_sym_RPAREN, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216558] = 6, + ACTIONS(9285), 1, + anon_sym_RBRACK, + ACTIONS(9287), 1, + sym_escape_sequence, + ACTIONS(9289), 1, + sym__quoted_content_square, + STATE(4869), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216579] = 6, + ACTIONS(9291), 1, + anon_sym_RBRACE, + ACTIONS(9293), 1, + sym_escape_sequence, + ACTIONS(9295), 1, + sym__quoted_content_curly, + STATE(4911), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216600] = 6, + ACTIONS(9297), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9299), 1, + sym_escape_sequence, + ACTIONS(9301), 1, + sym__quoted_content_heredoc_double, + STATE(4898), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216621] = 6, + ACTIONS(9303), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9305), 1, + sym_escape_sequence, + ACTIONS(9307), 1, + sym__quoted_content_heredoc_single, + STATE(4897), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216642] = 6, + ACTIONS(9309), 1, + anon_sym_SQUOTE, + ACTIONS(9311), 1, + sym_escape_sequence, + ACTIONS(9313), 1, + sym__quoted_content_single, + STATE(4893), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216663] = 6, + ACTIONS(9315), 1, + anon_sym_DQUOTE, + ACTIONS(9317), 1, + sym_escape_sequence, + ACTIONS(9319), 1, + sym__quoted_content_double, + STATE(4879), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216684] = 6, + ACTIONS(9321), 1, + anon_sym_SLASH, + ACTIONS(9323), 1, + sym_escape_sequence, + ACTIONS(9325), 1, + sym__quoted_content_slash, + STATE(4854), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216705] = 6, + ACTIONS(9327), 1, + anon_sym_GT, + ACTIONS(9329), 1, + sym_escape_sequence, + ACTIONS(9331), 1, + sym__quoted_content_angle, + STATE(4855), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216726] = 6, + ACTIONS(9333), 1, + anon_sym_PIPE, + ACTIONS(9335), 1, + sym_escape_sequence, + ACTIONS(9337), 1, + sym__quoted_content_bar, + STATE(4856), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216747] = 6, + ACTIONS(9339), 1, + anon_sym_RPAREN, + ACTIONS(9341), 1, + sym_escape_sequence, + ACTIONS(9343), 1, + sym__quoted_content_parenthesis, + STATE(4857), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216768] = 6, + ACTIONS(9345), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9347), 1, + sym_escape_sequence, + ACTIONS(9349), 1, + sym__quoted_content_heredoc_single, + STATE(5039), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216789] = 6, + ACTIONS(9351), 1, + anon_sym_RBRACK, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216810] = 6, + ACTIONS(9357), 1, + anon_sym_RBRACE, + ACTIONS(9359), 1, + sym_escape_sequence, + ACTIONS(9362), 1, + sym__quoted_content_curly, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216831] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9365), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216852] = 6, + ACTIONS(9367), 1, + anon_sym_RBRACE, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216873] = 6, + ACTIONS(9373), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216894] = 6, + ACTIONS(9379), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216915] = 6, + ACTIONS(9385), 1, + anon_sym_SQUOTE, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216936] = 6, + ACTIONS(9391), 1, + anon_sym_DQUOTE, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216957] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(9397), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216978] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(9399), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [216999] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(9401), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217020] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(9403), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217041] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(9405), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217062] = 6, + ACTIONS(9407), 1, + anon_sym_RBRACK, + ACTIONS(9409), 1, + sym_escape_sequence, + ACTIONS(9411), 1, + sym__quoted_content_square, + STATE(4871), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217083] = 6, + ACTIONS(9413), 1, + anon_sym_RBRACE, + ACTIONS(9415), 1, + sym_escape_sequence, + ACTIONS(9417), 1, + sym__quoted_content_curly, + STATE(4872), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217104] = 6, + ACTIONS(9419), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9421), 1, + sym_escape_sequence, + ACTIONS(9423), 1, + sym__quoted_content_heredoc_double, + STATE(4873), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217125] = 6, + ACTIONS(9425), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9427), 1, + sym_escape_sequence, + ACTIONS(9429), 1, + sym__quoted_content_heredoc_single, + STATE(4874), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217146] = 6, + ACTIONS(9431), 1, + anon_sym_SQUOTE, + ACTIONS(9433), 1, + sym_escape_sequence, + ACTIONS(9435), 1, + sym__quoted_content_single, + STATE(4875), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217167] = 6, + ACTIONS(9437), 1, + anon_sym_DQUOTE, + ACTIONS(9439), 1, + sym_escape_sequence, + ACTIONS(9441), 1, + sym__quoted_content_double, + STATE(4876), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217188] = 6, + ACTIONS(9443), 1, + anon_sym_SLASH, + ACTIONS(9445), 1, + sym_escape_sequence, + ACTIONS(9447), 1, + sym__quoted_content_slash, + STATE(4877), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217209] = 6, + ACTIONS(9449), 1, + anon_sym_GT, + ACTIONS(9451), 1, + sym_escape_sequence, + ACTIONS(9453), 1, + sym__quoted_content_angle, + STATE(4878), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217230] = 6, + ACTIONS(9455), 1, + anon_sym_PIPE, + ACTIONS(9457), 1, + sym_escape_sequence, + ACTIONS(9459), 1, + sym__quoted_content_bar, + STATE(4880), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217251] = 6, + ACTIONS(9461), 1, + anon_sym_RPAREN, + ACTIONS(9463), 1, + sym_escape_sequence, + ACTIONS(9465), 1, + sym__quoted_content_parenthesis, + STATE(4881), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217272] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(9467), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217293] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9469), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217314] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(9471), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217335] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(9473), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217356] = 6, + ACTIONS(9475), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9477), 1, + sym_escape_sequence, + ACTIONS(9479), 1, + sym__quoted_content_heredoc_double, + STATE(5010), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217377] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9481), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217398] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9483), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217419] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [217436] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [217453] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [217470] = 6, + ACTIONS(9489), 1, + anon_sym_RPAREN, + ACTIONS(9491), 1, + sym_escape_sequence, + ACTIONS(9493), 1, + sym__quoted_content_parenthesis, + STATE(4954), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217491] = 6, + ACTIONS(9495), 1, + anon_sym_PIPE, + ACTIONS(9497), 1, + sym_escape_sequence, + ACTIONS(9499), 1, + sym__quoted_content_bar, + STATE(4956), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217512] = 6, + ACTIONS(9501), 1, + anon_sym_GT, + ACTIONS(9503), 1, + sym_escape_sequence, + ACTIONS(9505), 1, + sym__quoted_content_angle, + STATE(4957), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217533] = 6, + ACTIONS(9507), 1, + anon_sym_SLASH, + ACTIONS(9509), 1, + sym_escape_sequence, + ACTIONS(9511), 1, + sym__quoted_content_slash, + STATE(4958), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217554] = 6, + ACTIONS(9513), 1, + anon_sym_DQUOTE, + ACTIONS(9515), 1, + sym_escape_sequence, + ACTIONS(9517), 1, + sym__quoted_content_double, + STATE(4959), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217575] = 6, + ACTIONS(9519), 1, + anon_sym_SQUOTE, + ACTIONS(9521), 1, + sym_escape_sequence, + ACTIONS(9523), 1, + sym__quoted_content_single, + STATE(4960), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217596] = 6, + ACTIONS(9525), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9527), 1, + sym_escape_sequence, + ACTIONS(9529), 1, + sym__quoted_content_heredoc_single, + STATE(4961), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217617] = 6, + ACTIONS(9531), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9533), 1, + sym_escape_sequence, + ACTIONS(9535), 1, + sym__quoted_content_heredoc_double, + STATE(4962), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217638] = 6, + ACTIONS(9537), 1, + anon_sym_RBRACE, + ACTIONS(9539), 1, + sym_escape_sequence, + ACTIONS(9541), 1, + sym__quoted_content_curly, + STATE(4964), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217659] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9543), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217680] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9545), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217701] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9547), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217722] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9549), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217743] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9551), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217764] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9553), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217785] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(9555), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217806] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(9557), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217827] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(9559), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217848] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(9561), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217869] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(9563), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217890] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [217907] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(9565), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217928] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9567), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217949] = 6, + ACTIONS(9569), 1, + anon_sym_RBRACE, + ACTIONS(9571), 1, + sym_escape_sequence, + ACTIONS(9573), 1, + sym__quoted_content_curly, + STATE(5009), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217970] = 6, + ACTIONS(9575), 1, + anon_sym_RBRACK, + ACTIONS(9577), 1, + sym_escape_sequence, + ACTIONS(9579), 1, + sym__quoted_content_square, + STATE(4965), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [217991] = 6, + ACTIONS(9581), 1, + anon_sym_DQUOTE, + ACTIONS(9583), 1, + sym_escape_sequence, + ACTIONS(9585), 1, + sym__quoted_content_double, + STATE(5056), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218012] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9587), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218033] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [218050] = 6, + ACTIONS(9589), 1, + anon_sym_SLASH, + ACTIONS(9591), 1, + sym_escape_sequence, + ACTIONS(9593), 1, + sym__quoted_content_slash, + STATE(5061), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218071] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9595), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218092] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9597), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218113] = 6, + ACTIONS(9599), 1, + anon_sym_RBRACK, + ACTIONS(9601), 1, + sym_escape_sequence, + ACTIONS(9603), 1, + sym__quoted_content_square, + STATE(4912), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218134] = 6, + ACTIONS(9605), 1, + anon_sym_RBRACE, + ACTIONS(9607), 1, + sym_escape_sequence, + ACTIONS(9609), 1, + sym__quoted_content_curly, + STATE(4913), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218155] = 6, + ACTIONS(9611), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9613), 1, + sym_escape_sequence, + ACTIONS(9615), 1, + sym__quoted_content_heredoc_double, + STATE(4914), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218176] = 6, + ACTIONS(9617), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9619), 1, + sym_escape_sequence, + ACTIONS(9621), 1, + sym__quoted_content_heredoc_single, + STATE(4915), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218197] = 6, + ACTIONS(9623), 1, + anon_sym_SQUOTE, + ACTIONS(9625), 1, + sym_escape_sequence, + ACTIONS(9627), 1, + sym__quoted_content_single, + STATE(4916), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218218] = 6, + ACTIONS(9629), 1, + anon_sym_DQUOTE, + ACTIONS(9631), 1, + sym_escape_sequence, + ACTIONS(9633), 1, + sym__quoted_content_double, + STATE(4917), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218239] = 6, + ACTIONS(9635), 1, + anon_sym_SLASH, + ACTIONS(9637), 1, + sym_escape_sequence, + ACTIONS(9639), 1, + sym__quoted_content_slash, + STATE(4918), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218260] = 6, + ACTIONS(9641), 1, + anon_sym_GT, + ACTIONS(9643), 1, + sym_escape_sequence, + ACTIONS(9645), 1, + sym__quoted_content_angle, + STATE(4919), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218281] = 6, + ACTIONS(9647), 1, + anon_sym_PIPE, + ACTIONS(9649), 1, + sym_escape_sequence, + ACTIONS(9651), 1, + sym__quoted_content_bar, + STATE(4920), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218302] = 6, + ACTIONS(9653), 1, + anon_sym_RPAREN, + ACTIONS(9655), 1, + sym_escape_sequence, + ACTIONS(9657), 1, + sym__quoted_content_parenthesis, + STATE(4921), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218323] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9659), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218344] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(9661), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218365] = 6, + ACTIONS(9663), 1, + anon_sym_DQUOTE, + ACTIONS(9665), 1, + sym_escape_sequence, + ACTIONS(9667), 1, + sym__quoted_content_double, + STATE(5177), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218386] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9669), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218407] = 6, + ACTIONS(9671), 1, + anon_sym_RPAREN, + ACTIONS(9673), 1, + sym_escape_sequence, + ACTIONS(9675), 1, + sym__quoted_content_parenthesis, + STATE(5059), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218428] = 6, + ACTIONS(9677), 1, + anon_sym_PIPE, + ACTIONS(9679), 1, + sym_escape_sequence, + ACTIONS(9681), 1, + sym__quoted_content_bar, + STATE(5062), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218449] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9683), 1, + anon_sym_COMMA, + STATE(4798), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(1261), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [218468] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9685), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218489] = 6, + ACTIONS(9687), 1, + anon_sym_GT, + ACTIONS(9689), 1, + sym_escape_sequence, + ACTIONS(9691), 1, + sym__quoted_content_angle, + STATE(5063), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218510] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9693), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218531] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9695), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218552] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(9697), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218573] = 6, + ACTIONS(9699), 1, + anon_sym_SLASH, + ACTIONS(9701), 1, + sym_escape_sequence, + ACTIONS(9703), 1, + sym__quoted_content_slash, + STATE(5075), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218594] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(9705), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218615] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(9707), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218636] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(9709), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218657] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(9711), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218678] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9713), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218699] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9715), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218720] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9717), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218741] = 6, + ACTIONS(9719), 1, + anon_sym_RBRACK, + ACTIONS(9721), 1, + sym_escape_sequence, + ACTIONS(9723), 1, + sym__quoted_content_square, + STATE(4971), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218762] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9725), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218783] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9727), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218804] = 6, + ACTIONS(9729), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9731), 1, + sym_escape_sequence, + ACTIONS(9734), 1, + sym__quoted_content_heredoc_double, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218825] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [218842] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(9737), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218863] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(9739), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218884] = 6, + ACTIONS(9741), 1, + anon_sym_SQUOTE, + ACTIONS(9743), 1, + sym_escape_sequence, + ACTIONS(9745), 1, + sym__quoted_content_single, + STATE(5050), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218905] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9747), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218926] = 6, + ACTIONS(9749), 1, + anon_sym_DQUOTE, + ACTIONS(9751), 1, + sym_escape_sequence, + ACTIONS(9753), 1, + sym__quoted_content_double, + STATE(5153), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218947] = 6, + ACTIONS(9755), 1, + anon_sym_SQUOTE, + ACTIONS(9757), 1, + sym_escape_sequence, + ACTIONS(9759), 1, + sym__quoted_content_single, + STATE(5157), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [218968] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [218985] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(9761), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219006] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9763), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219027] = 6, + ACTIONS(9765), 1, + anon_sym_RBRACE, + ACTIONS(9767), 1, + sym_escape_sequence, + ACTIONS(9769), 1, + sym__quoted_content_curly, + STATE(5051), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219048] = 6, + ACTIONS(9771), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9773), 1, + sym_escape_sequence, + ACTIONS(9775), 1, + sym__quoted_content_heredoc_single, + STATE(5161), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219069] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9777), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219090] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9779), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219111] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9781), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219132] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9783), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219153] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9785), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219174] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(9787), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219195] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(9789), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219216] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(9791), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219237] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(9793), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219258] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(9795), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219279] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9797), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219300] = 6, + ACTIONS(9799), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9801), 1, + sym_escape_sequence, + ACTIONS(9803), 1, + sym__quoted_content_heredoc_double, + STATE(5171), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219321] = 6, + ACTIONS(9805), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9807), 1, + sym_escape_sequence, + ACTIONS(9809), 1, + sym__quoted_content_heredoc_double, + STATE(5193), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219342] = 6, + ACTIONS(9811), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9813), 1, + sym_escape_sequence, + ACTIONS(9815), 1, + sym__quoted_content_heredoc_single, + STATE(5147), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219363] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9817), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219384] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9819), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219405] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(9821), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219426] = 6, + ACTIONS(9823), 1, + anon_sym_SQUOTE, + ACTIONS(9825), 1, + sym_escape_sequence, + ACTIONS(9827), 1, + sym__quoted_content_single, + STATE(4993), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219447] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [219464] = 6, + ACTIONS(9829), 1, + anon_sym_RPAREN, + ACTIONS(9831), 1, + sym_escape_sequence, + ACTIONS(9833), 1, + sym__quoted_content_parenthesis, + STATE(5218), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219485] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(9835), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219506] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9837), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219527] = 6, + ACTIONS(9839), 1, + anon_sym_RBRACK, + ACTIONS(9841), 1, + sym_escape_sequence, + ACTIONS(9843), 1, + sym__quoted_content_square, + STATE(4979), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219548] = 6, + ACTIONS(9845), 1, + anon_sym_RBRACE, + ACTIONS(9847), 1, + sym_escape_sequence, + ACTIONS(9849), 1, + sym__quoted_content_curly, + STATE(4980), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219569] = 6, + ACTIONS(9851), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9853), 1, + sym_escape_sequence, + ACTIONS(9855), 1, + sym__quoted_content_heredoc_double, + STATE(4981), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219590] = 6, + ACTIONS(9857), 1, + anon_sym_RBRACE, + ACTIONS(9859), 1, + sym_escape_sequence, + ACTIONS(9861), 1, + sym__quoted_content_curly, + STATE(4928), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219611] = 6, + ACTIONS(9863), 1, + anon_sym_PIPE, + ACTIONS(9865), 1, + sym_escape_sequence, + ACTIONS(9867), 1, + sym__quoted_content_bar, + STATE(5217), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219632] = 6, + ACTIONS(9869), 1, + anon_sym_GT, + ACTIONS(9871), 1, + sym_escape_sequence, + ACTIONS(9873), 1, + sym__quoted_content_angle, + STATE(5216), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219653] = 6, + ACTIONS(9875), 1, + anon_sym_GT, + ACTIONS(9877), 1, + sym_escape_sequence, + ACTIONS(9879), 1, + sym__quoted_content_angle, + STATE(5084), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219674] = 6, + ACTIONS(9881), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9883), 1, + sym_escape_sequence, + ACTIONS(9886), 1, + sym__quoted_content_heredoc_single, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219695] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(9889), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219716] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9891), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219737] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9893), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219758] = 6, + ACTIONS(9895), 1, + anon_sym_SQUOTE, + ACTIONS(9897), 1, + sym_escape_sequence, + ACTIONS(9900), 1, + sym__quoted_content_single, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219779] = 6, + ACTIONS(9903), 1, + anon_sym_RPAREN, + ACTIONS(9905), 1, + sym_escape_sequence, + ACTIONS(9907), 1, + sym__quoted_content_parenthesis, + STATE(5048), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219800] = 6, + ACTIONS(9909), 1, + anon_sym_DQUOTE, + ACTIONS(9911), 1, + sym_escape_sequence, + ACTIONS(9914), 1, + sym__quoted_content_double, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219821] = 6, + ACTIONS(9917), 1, + anon_sym_SLASH, + ACTIONS(9919), 1, + sym_escape_sequence, + ACTIONS(9921), 1, + sym__quoted_content_slash, + STATE(5215), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219842] = 6, + ACTIONS(9923), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9925), 1, + sym_escape_sequence, + ACTIONS(9927), 1, + sym__quoted_content_heredoc_double, + STATE(5203), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219863] = 6, + ACTIONS(9929), 1, + anon_sym_SLASH, + ACTIONS(9931), 1, + sym_escape_sequence, + ACTIONS(9934), 1, + sym__quoted_content_slash, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219884] = 6, + ACTIONS(9937), 1, + anon_sym_RBRACE, + ACTIONS(9939), 1, + sym_escape_sequence, + ACTIONS(9941), 1, + sym__quoted_content_curly, + STATE(5202), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219905] = 6, + ACTIONS(9943), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9945), 1, + sym_escape_sequence, + ACTIONS(9947), 1, + sym__quoted_content_heredoc_single, + STATE(4982), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219926] = 6, + ACTIONS(9949), 1, + anon_sym_GT, + ACTIONS(9951), 1, + sym_escape_sequence, + ACTIONS(9954), 1, + sym__quoted_content_angle, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219947] = 6, + ACTIONS(9957), 1, + anon_sym_RBRACK, + ACTIONS(9959), 1, + sym_escape_sequence, + ACTIONS(9961), 1, + sym__quoted_content_square, + STATE(5200), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219968] = 6, + ACTIONS(9963), 1, + anon_sym_SQUOTE, + ACTIONS(9965), 1, + sym_escape_sequence, + ACTIONS(9967), 1, + sym__quoted_content_single, + STATE(4983), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [219989] = 6, + ACTIONS(9969), 1, + anon_sym_DQUOTE, + ACTIONS(9971), 1, + sym_escape_sequence, + ACTIONS(9973), 1, + sym__quoted_content_double, + STATE(4984), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220010] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9975), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220031] = 6, + ACTIONS(9977), 1, + anon_sym_SLASH, + ACTIONS(9979), 1, + sym_escape_sequence, + ACTIONS(9981), 1, + sym__quoted_content_slash, + STATE(4985), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220052] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(9983), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220073] = 6, + ACTIONS(9985), 1, + anon_sym_PIPE, + ACTIONS(9987), 1, + sym_escape_sequence, + ACTIONS(9990), 1, + sym__quoted_content_bar, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220094] = 6, + ACTIONS(9993), 1, + anon_sym_DQUOTE, + ACTIONS(9995), 1, + sym_escape_sequence, + ACTIONS(9997), 1, + sym__quoted_content_double, + STATE(5206), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220115] = 6, + ACTIONS(9999), 1, + anon_sym_GT, + ACTIONS(10001), 1, + sym_escape_sequence, + ACTIONS(10003), 1, + sym__quoted_content_angle, + STATE(4986), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220136] = 6, + ACTIONS(10005), 1, + anon_sym_PIPE, + ACTIONS(10007), 1, + sym_escape_sequence, + ACTIONS(10009), 1, + sym__quoted_content_bar, + STATE(4987), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220157] = 6, + ACTIONS(10011), 1, + anon_sym_RPAREN, + ACTIONS(10013), 1, + sym_escape_sequence, + ACTIONS(10016), 1, + sym__quoted_content_parenthesis, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220178] = 6, + ACTIONS(10019), 1, + anon_sym_RPAREN, + ACTIONS(10021), 1, + sym_escape_sequence, + ACTIONS(10023), 1, + sym__quoted_content_parenthesis, + STATE(4988), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220199] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220220] = 6, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10029), 1, + sym_escape_sequence, + ACTIONS(10031), 1, + sym__quoted_content_single, + STATE(5205), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220241] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10033), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220262] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10035), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220283] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10037), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220304] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10039), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220325] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10041), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220346] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10043), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220367] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10045), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220388] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10047), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220409] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10049), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220430] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10051), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220451] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10053), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220472] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10055), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220493] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10057), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220514] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10059), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220535] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10061), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220556] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10063), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220577] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10065), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220598] = 6, + ACTIONS(10067), 1, + anon_sym_RBRACE, + ACTIONS(10069), 1, + sym_escape_sequence, + ACTIONS(10071), 1, + sym__quoted_content_curly, + STATE(5172), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220619] = 6, + ACTIONS(10073), 1, + anon_sym_RBRACK, + ACTIONS(10075), 1, + sym_escape_sequence, + ACTIONS(10077), 1, + sym__quoted_content_square, + STATE(4924), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220640] = 6, + ACTIONS(10079), 1, + anon_sym_RPAREN, + ACTIONS(10081), 1, + sym_escape_sequence, + ACTIONS(10083), 1, + sym__quoted_content_parenthesis, + STATE(5236), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220661] = 6, + ACTIONS(10085), 1, + anon_sym_RPAREN, + ACTIONS(10087), 1, + sym_escape_sequence, + ACTIONS(10089), 1, + sym__quoted_content_parenthesis, + STATE(5135), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220682] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10091), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220703] = 6, + ACTIONS(10093), 1, + anon_sym_RBRACK, + ACTIONS(10095), 1, + sym_escape_sequence, + ACTIONS(10097), 1, + sym__quoted_content_square, + STATE(5047), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220724] = 6, + ACTIONS(10099), 1, + anon_sym_PIPE, + ACTIONS(10101), 1, + sym_escape_sequence, + ACTIONS(10103), 1, + sym__quoted_content_bar, + STATE(5088), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220745] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10105), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220766] = 6, + ACTIONS(10107), 1, + anon_sym_RPAREN, + ACTIONS(10109), 1, + sym_escape_sequence, + ACTIONS(10111), 1, + sym__quoted_content_parenthesis, + STATE(5138), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220787] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10113), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220808] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10115), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220829] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10117), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220850] = 6, + ACTIONS(10119), 1, + anon_sym_RBRACK, + ACTIONS(10121), 1, + sym_escape_sequence, + ACTIONS(10123), 1, + sym__quoted_content_square, + STATE(5037), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220871] = 6, + ACTIONS(10125), 1, + anon_sym_RBRACE, + ACTIONS(10127), 1, + sym_escape_sequence, + ACTIONS(10129), 1, + sym__quoted_content_curly, + STATE(5038), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220892] = 6, + ACTIONS(10131), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10133), 1, + sym_escape_sequence, + ACTIONS(10135), 1, + sym__quoted_content_heredoc_double, + STATE(5040), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220913] = 6, + ACTIONS(10137), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10139), 1, + sym_escape_sequence, + ACTIONS(10141), 1, + sym__quoted_content_heredoc_single, + STATE(5041), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220934] = 6, + ACTIONS(10143), 1, + anon_sym_SQUOTE, + ACTIONS(10145), 1, + sym_escape_sequence, + ACTIONS(10147), 1, + sym__quoted_content_single, + STATE(5042), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220955] = 6, + ACTIONS(10149), 1, + anon_sym_DQUOTE, + ACTIONS(10151), 1, + sym_escape_sequence, + ACTIONS(10153), 1, + sym__quoted_content_double, + STATE(5043), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220976] = 6, + ACTIONS(10155), 1, + anon_sym_SLASH, + ACTIONS(10157), 1, + sym_escape_sequence, + ACTIONS(10159), 1, + sym__quoted_content_slash, + STATE(5044), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [220997] = 6, + ACTIONS(10161), 1, + anon_sym_GT, + ACTIONS(10163), 1, + sym_escape_sequence, + ACTIONS(10165), 1, + sym__quoted_content_angle, + STATE(5045), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221018] = 6, + ACTIONS(10167), 1, + anon_sym_PIPE, + ACTIONS(10169), 1, + sym_escape_sequence, + ACTIONS(10171), 1, + sym__quoted_content_bar, + STATE(5046), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221039] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10175), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(10173), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [221056] = 6, + ACTIONS(10177), 1, + anon_sym_RPAREN, + ACTIONS(10179), 1, + sym_escape_sequence, + ACTIONS(10181), 1, + sym__quoted_content_parenthesis, + STATE(5150), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221077] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10183), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221098] = 6, + ACTIONS(10185), 1, + anon_sym_PIPE, + ACTIONS(10187), 1, + sym_escape_sequence, + ACTIONS(10189), 1, + sym__quoted_content_bar, + STATE(5134), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221119] = 6, + ACTIONS(10191), 1, + anon_sym_PIPE, + ACTIONS(10193), 1, + sym_escape_sequence, + ACTIONS(10195), 1, + sym__quoted_content_bar, + STATE(5136), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221140] = 6, + ACTIONS(10197), 1, + anon_sym_RBRACK, + ACTIONS(10199), 1, + sym_escape_sequence, + ACTIONS(10201), 1, + sym__quoted_content_square, + STATE(4999), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221161] = 6, + ACTIONS(10203), 1, + anon_sym_GT, + ACTIONS(10205), 1, + sym_escape_sequence, + ACTIONS(10207), 1, + sym__quoted_content_angle, + STATE(5140), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221182] = 6, + ACTIONS(10209), 1, + anon_sym_SLASH, + ACTIONS(10211), 1, + sym_escape_sequence, + ACTIONS(10213), 1, + sym__quoted_content_slash, + STATE(5142), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221203] = 6, + ACTIONS(10215), 1, + anon_sym_DQUOTE, + ACTIONS(10217), 1, + sym_escape_sequence, + ACTIONS(10219), 1, + sym__quoted_content_double, + STATE(5144), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221224] = 6, + ACTIONS(10221), 1, + anon_sym_SQUOTE, + ACTIONS(10223), 1, + sym_escape_sequence, + ACTIONS(10225), 1, + sym__quoted_content_single, + STATE(5145), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221245] = 6, + ACTIONS(10227), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10229), 1, + sym_escape_sequence, + ACTIONS(10231), 1, + sym__quoted_content_heredoc_single, + STATE(5146), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221266] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10233), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221287] = 6, + ACTIONS(10235), 1, + anon_sym_RBRACE, + ACTIONS(10237), 1, + sym_escape_sequence, + ACTIONS(10239), 1, + sym__quoted_content_curly, + STATE(5000), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221308] = 6, + ACTIONS(10241), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10243), 1, + sym_escape_sequence, + ACTIONS(10245), 1, + sym__quoted_content_heredoc_double, + STATE(5011), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221329] = 6, + ACTIONS(10247), 1, + anon_sym_GT, + ACTIONS(10249), 1, + sym_escape_sequence, + ACTIONS(10251), 1, + sym__quoted_content_angle, + STATE(5132), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221350] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10253), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221371] = 6, + ACTIONS(10255), 1, + anon_sym_SLASH, + ACTIONS(10257), 1, + sym_escape_sequence, + ACTIONS(10259), 1, + sym__quoted_content_slash, + STATE(5128), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221392] = 6, + ACTIONS(10261), 1, + anon_sym_RBRACK, + ACTIONS(10263), 1, + sym_escape_sequence, + ACTIONS(10265), 1, + sym__quoted_content_square, + STATE(4989), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221413] = 6, + ACTIONS(10267), 1, + anon_sym_RBRACE, + ACTIONS(10269), 1, + sym_escape_sequence, + ACTIONS(10271), 1, + sym__quoted_content_curly, + STATE(4976), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221434] = 6, + ACTIONS(10273), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10275), 1, + sym_escape_sequence, + ACTIONS(10277), 1, + sym__quoted_content_heredoc_single, + STATE(5024), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221455] = 6, + ACTIONS(10279), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10281), 1, + sym_escape_sequence, + ACTIONS(10283), 1, + sym__quoted_content_heredoc_double, + STATE(4953), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221476] = 6, + ACTIONS(10285), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10287), 1, + sym_escape_sequence, + ACTIONS(10289), 1, + sym__quoted_content_heredoc_single, + STATE(4952), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221497] = 6, + ACTIONS(10291), 1, + anon_sym_SQUOTE, + ACTIONS(10293), 1, + sym_escape_sequence, + ACTIONS(10295), 1, + sym__quoted_content_single, + STATE(4946), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221518] = 6, + ACTIONS(10297), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10299), 1, + sym_escape_sequence, + ACTIONS(10301), 1, + sym__quoted_content_heredoc_double, + STATE(5148), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221539] = 6, + ACTIONS(10303), 1, + anon_sym_DQUOTE, + ACTIONS(10305), 1, + sym_escape_sequence, + ACTIONS(10307), 1, + sym__quoted_content_double, + STATE(5123), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221560] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10309), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221581] = 6, + ACTIONS(10311), 1, + anon_sym_RBRACK, + ACTIONS(10313), 1, + sym_escape_sequence, + ACTIONS(10315), 1, + sym__quoted_content_square, + STATE(4994), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221602] = 6, + ACTIONS(10317), 1, + anon_sym_GT, + ACTIONS(10319), 1, + sym_escape_sequence, + ACTIONS(10321), 1, + sym__quoted_content_angle, + STATE(5126), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221623] = 6, + ACTIONS(10323), 1, + anon_sym_SQUOTE, + ACTIONS(10325), 1, + sym_escape_sequence, + ACTIONS(10327), 1, + sym__quoted_content_single, + STATE(5121), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221644] = 6, + ACTIONS(10329), 1, + anon_sym_SQUOTE, + ACTIONS(10331), 1, + sym_escape_sequence, + ACTIONS(10333), 1, + sym__quoted_content_single, + STATE(5026), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221665] = 6, + ACTIONS(10335), 1, + anon_sym_DQUOTE, + ACTIONS(10337), 1, + sym_escape_sequence, + ACTIONS(10339), 1, + sym__quoted_content_double, + STATE(5033), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221686] = 6, + ACTIONS(10341), 1, + anon_sym_SLASH, + ACTIONS(10343), 1, + sym_escape_sequence, + ACTIONS(10345), 1, + sym__quoted_content_slash, + STATE(5035), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221707] = 6, + ACTIONS(10347), 1, + anon_sym_DQUOTE, + ACTIONS(10349), 1, + sym_escape_sequence, + ACTIONS(10351), 1, + sym__quoted_content_double, + STATE(4895), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221728] = 6, + ACTIONS(10353), 1, + anon_sym_GT, + ACTIONS(10355), 1, + sym_escape_sequence, + ACTIONS(10357), 1, + sym__quoted_content_angle, + STATE(5036), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221749] = 6, + ACTIONS(10359), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10361), 1, + sym_escape_sequence, + ACTIONS(10363), 1, + sym__quoted_content_heredoc_single, + STATE(5117), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221770] = 6, + ACTIONS(10365), 1, + anon_sym_PIPE, + ACTIONS(10367), 1, + sym_escape_sequence, + ACTIONS(10369), 1, + sym__quoted_content_bar, + STATE(4923), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221791] = 6, + ACTIONS(10371), 1, + anon_sym_RPAREN, + ACTIONS(10373), 1, + sym_escape_sequence, + ACTIONS(10375), 1, + sym__quoted_content_parenthesis, + STATE(5049), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221812] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10377), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221833] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10379), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221854] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10381), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221875] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10383), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221896] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10385), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221917] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10387), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221938] = 6, + ACTIONS(10389), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10391), 1, + sym_escape_sequence, + ACTIONS(10393), 1, + sym__quoted_content_heredoc_double, + STATE(5114), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221959] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10395), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [221980] = 6, + ACTIONS(10397), 1, + anon_sym_RPAREN, + ACTIONS(10399), 1, + sym_escape_sequence, + ACTIONS(10401), 1, + sym__quoted_content_parenthesis, + STATE(5195), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222001] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10403), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222022] = 6, + ACTIONS(10405), 1, + anon_sym_PIPE, + ACTIONS(10407), 1, + sym_escape_sequence, + ACTIONS(10409), 1, + sym__quoted_content_bar, + STATE(5201), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222043] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10411), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222064] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10413), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222085] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10415), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222106] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10417), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222127] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10419), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222148] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10421), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222169] = 6, + ACTIONS(10423), 1, + anon_sym_RBRACE, + ACTIONS(10425), 1, + sym_escape_sequence, + ACTIONS(10427), 1, + sym__quoted_content_curly, + STATE(5112), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222190] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10429), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10431), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(5341), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [222228] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10433), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222249] = 6, + ACTIONS(10435), 1, + anon_sym_GT, + ACTIONS(10437), 1, + sym_escape_sequence, + ACTIONS(10439), 1, + sym__quoted_content_angle, + STATE(5207), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222270] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10441), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222291] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10443), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222312] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10445), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222333] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10447), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222354] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10449), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222375] = 6, + ACTIONS(10451), 1, + anon_sym_RBRACK, + ACTIONS(10453), 1, + sym_escape_sequence, + ACTIONS(10455), 1, + sym__quoted_content_square, + STATE(5110), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222396] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10457), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222417] = 6, + ACTIONS(10459), 1, + anon_sym_SLASH, + ACTIONS(10461), 1, + sym_escape_sequence, + ACTIONS(10463), 1, + sym__quoted_content_slash, + STATE(5210), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222438] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10465), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222459] = 6, + ACTIONS(10467), 1, + anon_sym_DQUOTE, + ACTIONS(10469), 1, + sym_escape_sequence, + ACTIONS(10471), 1, + sym__quoted_content_double, + STATE(5211), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222480] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10473), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222501] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10475), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222522] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10477), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222543] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10479), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222564] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10481), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222585] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10483), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222606] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10485), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222627] = 6, + ACTIONS(10487), 1, + anon_sym_SQUOTE, + ACTIONS(10489), 1, + sym_escape_sequence, + ACTIONS(10491), 1, + sym__quoted_content_single, + STATE(5213), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222648] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10493), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222669] = 6, + ACTIONS(10495), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10497), 1, + sym_escape_sequence, + ACTIONS(10499), 1, + sym__quoted_content_heredoc_single, + STATE(5214), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222690] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10501), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222711] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10503), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222732] = 6, + ACTIONS(10505), 1, + anon_sym_RBRACK, + ACTIONS(10507), 1, + sym_escape_sequence, + ACTIONS(10510), 1, + sym__quoted_content_square, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222753] = 6, + ACTIONS(10513), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10515), 1, + sym_escape_sequence, + ACTIONS(10517), 1, + sym__quoted_content_heredoc_double, + STATE(5223), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222774] = 6, + ACTIONS(10519), 1, + anon_sym_PIPE, + ACTIONS(10521), 1, + sym_escape_sequence, + ACTIONS(10523), 1, + sym__quoted_content_bar, + STATE(5235), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222795] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10525), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222816] = 6, + ACTIONS(10527), 1, + anon_sym_RBRACK, + ACTIONS(10529), 1, + sym_escape_sequence, + ACTIONS(10531), 1, + sym__quoted_content_square, + STATE(5098), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222837] = 6, + ACTIONS(10533), 1, + anon_sym_GT, + ACTIONS(10535), 1, + sym_escape_sequence, + ACTIONS(10537), 1, + sym__quoted_content_angle, + STATE(5234), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222858] = 6, + ACTIONS(10539), 1, + anon_sym_RBRACE, + ACTIONS(10541), 1, + sym_escape_sequence, + ACTIONS(10543), 1, + sym__quoted_content_curly, + STATE(5226), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222879] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10545), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222900] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10547), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(1259), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [222917] = 6, + ACTIONS(10549), 1, + anon_sym_RBRACK, + ACTIONS(10551), 1, + sym_escape_sequence, + ACTIONS(10553), 1, + sym__quoted_content_square, + STATE(4950), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222938] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [222955] = 6, + ACTIONS(10555), 1, + anon_sym_SLASH, + ACTIONS(10557), 1, + sym_escape_sequence, + ACTIONS(10559), 1, + sym__quoted_content_slash, + STATE(5233), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222976] = 6, + ACTIONS(10561), 1, + anon_sym_RPAREN, + ACTIONS(10563), 1, + sym_escape_sequence, + ACTIONS(10565), 1, + sym__quoted_content_parenthesis, + STATE(4944), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [222997] = 6, + ACTIONS(10567), 1, + anon_sym_PIPE, + ACTIONS(10569), 1, + sym_escape_sequence, + ACTIONS(10571), 1, + sym__quoted_content_bar, + STATE(4968), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223018] = 6, + ACTIONS(10573), 1, + anon_sym_DQUOTE, + ACTIONS(10575), 1, + sym_escape_sequence, + ACTIONS(10577), 1, + sym__quoted_content_double, + STATE(5232), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223039] = 6, + ACTIONS(10579), 1, + anon_sym_GT, + ACTIONS(10581), 1, + sym_escape_sequence, + ACTIONS(10583), 1, + sym__quoted_content_angle, + STATE(4969), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223060] = 6, + ACTIONS(10585), 1, + anon_sym_SQUOTE, + ACTIONS(10587), 1, + sym_escape_sequence, + ACTIONS(10589), 1, + sym__quoted_content_single, + STATE(5231), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223081] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10591), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223102] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10593), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223123] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(9165), 4, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + anon_sym_COMMA, + [223138] = 6, + ACTIONS(10595), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10597), 1, + sym_escape_sequence, + ACTIONS(10599), 1, + sym__quoted_content_heredoc_single, + STATE(5221), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223159] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10601), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223180] = 6, + ACTIONS(10603), 1, + anon_sym_SLASH, + ACTIONS(10605), 1, + sym_escape_sequence, + ACTIONS(10607), 1, + sym__quoted_content_slash, + STATE(4975), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223201] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10609), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223222] = 6, + ACTIONS(10611), 1, + anon_sym_SLASH, + ACTIONS(10613), 1, + sym_escape_sequence, + ACTIONS(10615), 1, + sym__quoted_content_slash, + STATE(4894), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223243] = 6, + ACTIONS(10617), 1, + anon_sym_RBRACK, + ACTIONS(10619), 1, + sym_escape_sequence, + ACTIONS(10621), 1, + sym__quoted_content_square, + STATE(5111), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223264] = 6, + ACTIONS(10623), 1, + anon_sym_RBRACE, + ACTIONS(10625), 1, + sym_escape_sequence, + ACTIONS(10627), 1, + sym__quoted_content_curly, + STATE(5113), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223285] = 6, + ACTIONS(10629), 1, + anon_sym_RPAREN, + ACTIONS(10631), 1, + sym_escape_sequence, + ACTIONS(10633), 1, + sym__quoted_content_parenthesis, + STATE(5175), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223306] = 6, + ACTIONS(10635), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10637), 1, + sym_escape_sequence, + ACTIONS(10639), 1, + sym__quoted_content_heredoc_double, + STATE(5115), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223327] = 6, + ACTIONS(10641), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10643), 1, + sym_escape_sequence, + ACTIONS(10645), 1, + sym__quoted_content_heredoc_double, + STATE(5230), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223348] = 6, + ACTIONS(10647), 1, + anon_sym_GT, + ACTIONS(10649), 1, + sym_escape_sequence, + ACTIONS(10651), 1, + sym__quoted_content_angle, + STATE(4892), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223369] = 6, + ACTIONS(10653), 1, + anon_sym_PIPE, + ACTIONS(10655), 1, + sym_escape_sequence, + ACTIONS(10657), 1, + sym__quoted_content_bar, + STATE(5143), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223390] = 6, + ACTIONS(10659), 1, + anon_sym_PIPE, + ACTIONS(10661), 1, + sym_escape_sequence, + ACTIONS(10663), 1, + sym__quoted_content_bar, + STATE(5212), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223411] = 6, + ACTIONS(10665), 1, + anon_sym_RPAREN, + ACTIONS(10667), 1, + sym_escape_sequence, + ACTIONS(10669), 1, + sym__quoted_content_parenthesis, + STATE(4995), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223432] = 6, + ACTIONS(10671), 1, + anon_sym_RBRACE, + ACTIONS(10673), 1, + sym_escape_sequence, + ACTIONS(10675), 1, + sym__quoted_content_curly, + STATE(5229), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223453] = 6, + ACTIONS(10677), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10679), 1, + sym_escape_sequence, + ACTIONS(10681), 1, + sym__quoted_content_heredoc_single, + STATE(5119), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223474] = 6, + ACTIONS(10683), 1, + anon_sym_GT, + ACTIONS(10685), 1, + sym_escape_sequence, + ACTIONS(10687), 1, + sym__quoted_content_angle, + STATE(5209), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223495] = 6, + ACTIONS(10689), 1, + anon_sym_RBRACK, + ACTIONS(10691), 1, + sym_escape_sequence, + ACTIONS(10693), 1, + sym__quoted_content_square, + STATE(5228), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223516] = 6, + ACTIONS(10695), 1, + anon_sym_SQUOTE, + ACTIONS(10697), 1, + sym_escape_sequence, + ACTIONS(10699), 1, + sym__quoted_content_single, + STATE(5122), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223537] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10701), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223558] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10703), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223579] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10705), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223600] = 6, + ACTIONS(10707), 1, + anon_sym_DQUOTE, + ACTIONS(10709), 1, + sym_escape_sequence, + ACTIONS(10711), 1, + sym__quoted_content_double, + STATE(5124), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223621] = 6, + ACTIONS(10713), 1, + anon_sym_SLASH, + ACTIONS(10715), 1, + sym_escape_sequence, + ACTIONS(10717), 1, + sym__quoted_content_slash, + STATE(5125), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223642] = 6, + ACTIONS(10719), 1, + anon_sym_PIPE, + ACTIONS(10721), 1, + sym_escape_sequence, + ACTIONS(10723), 1, + sym__quoted_content_bar, + STATE(5130), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223663] = 6, + ACTIONS(10725), 1, + anon_sym_RPAREN, + ACTIONS(10727), 1, + sym_escape_sequence, + ACTIONS(10729), 1, + sym__quoted_content_parenthesis, + STATE(5133), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223684] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10731), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223705] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10733), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223726] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10735), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223747] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10737), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223768] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10739), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223789] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10741), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223810] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10743), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223831] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10745), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223852] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10747), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223873] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10749), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223894] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10751), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223915] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10753), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223936] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10755), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223957] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10757), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223978] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10759), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [223999] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10761), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224020] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10763), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224041] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10765), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224062] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10767), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224083] = 6, + ACTIONS(10769), 1, + anon_sym_SLASH, + ACTIONS(10771), 1, + sym_escape_sequence, + ACTIONS(10773), 1, + sym__quoted_content_slash, + STATE(5208), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224104] = 4, + ACTIONS(9487), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + ACTIONS(9485), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [224121] = 6, + ACTIONS(9381), 1, + sym_escape_sequence, + ACTIONS(9383), 1, + sym__quoted_content_heredoc_single, + ACTIONS(10775), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5008), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224142] = 6, + ACTIONS(10777), 1, + anon_sym_DQUOTE, + ACTIONS(10779), 1, + sym_escape_sequence, + ACTIONS(10781), 1, + sym__quoted_content_double, + STATE(5194), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224163] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10783), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224184] = 6, + ACTIONS(10785), 1, + anon_sym_SQUOTE, + ACTIONS(10787), 1, + sym_escape_sequence, + ACTIONS(10789), 1, + sym__quoted_content_single, + STATE(4943), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224205] = 6, + ACTIONS(10791), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(10793), 1, + sym_escape_sequence, + ACTIONS(10795), 1, + sym__quoted_content_heredoc_single, + STATE(4932), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224226] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10797), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224247] = 6, + ACTIONS(10799), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(10801), 1, + sym_escape_sequence, + ACTIONS(10803), 1, + sym__quoted_content_heredoc_double, + STATE(4931), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224268] = 6, + ACTIONS(9353), 1, + sym_escape_sequence, + ACTIONS(9355), 1, + sym__quoted_content_square, + ACTIONS(10805), 1, + anon_sym_RBRACK, + STATE(5154), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224289] = 6, + ACTIONS(9369), 1, + sym_escape_sequence, + ACTIONS(9371), 1, + sym__quoted_content_curly, + ACTIONS(10807), 1, + anon_sym_RBRACE, + STATE(4870), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224310] = 6, + ACTIONS(9375), 1, + sym_escape_sequence, + ACTIONS(9377), 1, + sym__quoted_content_heredoc_double, + ACTIONS(10809), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4966), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224331] = 6, + ACTIONS(9387), 1, + sym_escape_sequence, + ACTIONS(9389), 1, + sym__quoted_content_single, + ACTIONS(10811), 1, + anon_sym_SQUOTE, + STATE(5012), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224352] = 6, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9395), 1, + sym__quoted_content_double, + ACTIONS(10813), 1, + anon_sym_DQUOTE, + STATE(5014), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224373] = 6, + ACTIONS(9263), 1, + sym_escape_sequence, + ACTIONS(9265), 1, + sym__quoted_content_slash, + ACTIONS(10815), 1, + anon_sym_SLASH, + STATE(5017), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224394] = 6, + ACTIONS(9269), 1, + sym_escape_sequence, + ACTIONS(9271), 1, + sym__quoted_content_angle, + ACTIONS(10817), 1, + anon_sym_GT, + STATE(5020), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224415] = 6, + ACTIONS(9275), 1, + sym_escape_sequence, + ACTIONS(9277), 1, + sym__quoted_content_bar, + ACTIONS(10819), 1, + anon_sym_PIPE, + STATE(5027), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224436] = 6, + ACTIONS(9281), 1, + sym_escape_sequence, + ACTIONS(9283), 1, + sym__quoted_content_parenthesis, + ACTIONS(10821), 1, + anon_sym_RPAREN, + STATE(5031), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5), 2, + anon_sym_LF, + sym_comment, + [224457] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(10823), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [224471] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(10825), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [224485] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1261), 1, + anon_sym_GT_GT, + ACTIONS(10827), 1, + anon_sym_COMMA, + STATE(5242), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224503] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3862), 1, + anon_sym_GT_GT, + ACTIONS(10829), 1, + anon_sym_COMMA, + STATE(5244), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224521] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3873), 1, + anon_sym_GT_GT, + ACTIONS(10832), 1, + anon_sym_COMMA, + STATE(5240), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224539] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3880), 1, + anon_sym_GT_GT, + ACTIONS(10835), 1, + anon_sym_COMMA, + STATE(5242), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224557] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10838), 1, + anon_sym_RPAREN, + ACTIONS(10840), 1, + anon_sym_DASH_GT, + ACTIONS(10842), 1, + anon_sym_when, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224575] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3887), 1, + anon_sym_GT_GT, + ACTIONS(10844), 1, + anon_sym_COMMA, + STATE(5244), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224593] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(9092), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_when, + [224607] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(10173), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [224621] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3852), 1, + anon_sym_RPAREN, + ACTIONS(10847), 1, + anon_sym_COMMA, + STATE(4798), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224639] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(1261), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [224653] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + ACTIONS(10849), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [224667] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + STATE(2541), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224682] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + STATE(3712), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224697] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10851), 1, + anon_sym_LPAREN, + STATE(3240), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + STATE(3716), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + STATE(3611), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + STATE(3544), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10853), 1, + aux_sym_sigil_token1, + ACTIONS(10855), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224772] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + STATE(3094), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224787] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10857), 1, + aux_sym_sigil_token1, + ACTIONS(10859), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + STATE(3279), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + STATE(3599), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224832] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10861), 1, + aux_sym_sigil_token1, + ACTIONS(10863), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + STATE(3542), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224862] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + STATE(3714), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10865), 1, + aux_sym_sigil_token1, + ACTIONS(10867), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224892] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10869), 1, + aux_sym_sigil_token1, + ACTIONS(10871), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4416), 1, + anon_sym_LPAREN, + STATE(1916), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + STATE(2537), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10873), 1, + aux_sym_sigil_token1, + ACTIONS(10875), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224952] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4530), 1, + anon_sym_do, + STATE(3082), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10877), 1, + aux_sym_sigil_token1, + ACTIONS(10879), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224982] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_LPAREN, + STATE(2582), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [224997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10881), 1, + aux_sym_sigil_token1, + ACTIONS(10883), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5360), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(5362), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [225027] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10885), 1, + aux_sym_sigil_token1, + ACTIONS(10887), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10889), 1, + aux_sym_sigil_token1, + ACTIONS(10891), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225057] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + STATE(3545), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + STATE(1644), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225087] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10893), 1, + aux_sym_sigil_token1, + ACTIONS(10895), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4588), 1, + anon_sym_do, + STATE(3278), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225117] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10897), 1, + aux_sym_sigil_token1, + ACTIONS(10899), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225132] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10901), 1, + aux_sym_sigil_token1, + ACTIONS(10903), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10905), 1, + aux_sym_sigil_token1, + ACTIONS(10907), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225162] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + STATE(2767), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10909), 1, + aux_sym_sigil_token1, + ACTIONS(10911), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225192] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10913), 1, + anon_sym_LF, + ACTIONS(3), 2, + sym__newline_before_binary_op, + sym__newline_before_comment, + ACTIONS(9187), 2, + anon_sym_SEMI, + anon_sym_end, + [225207] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10915), 1, + anon_sym_LPAREN, + STATE(3491), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225222] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_LPAREN, + STATE(2934), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10917), 1, + aux_sym_sigil_token1, + ACTIONS(10919), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + STATE(3778), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225267] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10921), 2, + anon_sym_DASH_GT, + anon_sym_when, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + STATE(3568), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225295] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4066), 1, + anon_sym_RPAREN, + ACTIONS(10923), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + STATE(1774), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225325] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10840), 1, + anon_sym_DASH_GT, + ACTIONS(10842), 1, + anon_sym_when, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225340] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4543), 1, + anon_sym_LPAREN, + STATE(2360), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10840), 1, + anon_sym_DASH_GT, + ACTIONS(10925), 1, + anon_sym_when, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225370] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3334), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10927), 1, + aux_sym_sigil_token1, + ACTIONS(10929), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225400] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1702), 1, + sym__keyword_end, + ACTIONS(3334), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225415] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10931), 1, + anon_sym_LPAREN, + STATE(1797), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10933), 1, + anon_sym_LPAREN, + STATE(3087), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10935), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + STATE(1893), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + STATE(1646), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225490] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + STATE(2871), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + STATE(1894), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225520] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_do, + STATE(1895), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + STATE(2760), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_do, + STATE(2759), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3928), 1, + anon_sym_RPAREN, + ACTIONS(10937), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225580] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_LPAREN, + STATE(1399), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225595] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + STATE(3887), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225610] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3688), 1, + anon_sym_LPAREN, + STATE(1589), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_RPAREN, + ACTIONS(10939), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225640] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10941), 1, + aux_sym_sigil_token1, + ACTIONS(10943), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225655] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + STATE(3569), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + STATE(3866), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_do, + STATE(3863), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225700] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + STATE(1920), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + STATE(1915), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + STATE(1896), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + STATE(1892), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + STATE(2003), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3712), 1, + anon_sym_do, + STATE(2066), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225790] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10945), 1, + anon_sym_LPAREN, + STATE(2586), 1, + sym__anonymous_arguments, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225805] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10947), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225817] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10949), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225829] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1123), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225841] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10952), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225853] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1127), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225865] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10954), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225877] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10956), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225889] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10958), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225901] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10960), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225913] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10962), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225925] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10964), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225937] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10966), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225949] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10968), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225961] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10970), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225973] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3852), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225985] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10972), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [225997] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10974), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226009] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10976), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226021] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1135), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226033] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10978), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226045] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10980), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226057] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10982), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226069] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10984), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226081] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10986), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226093] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10988), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226105] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10990), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226117] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10992), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226129] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10994), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226141] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10996), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226153] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(10998), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226165] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11000), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226177] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1141), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226189] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11002), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226201] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1133), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226213] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11004), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226225] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11006), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226237] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11008), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226249] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11010), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226261] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3810), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226273] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11012), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226285] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11014), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226297] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4146), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226309] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11016), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226321] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11018), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226333] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11020), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226345] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11022), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226357] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11024), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226369] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11026), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226381] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11028), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226393] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11030), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226405] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11032), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226417] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11034), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226429] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11036), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226441] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11038), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226453] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11040), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226465] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11042), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226477] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11044), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226489] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1153), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226501] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11046), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226513] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11048), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226525] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11050), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226537] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11052), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226549] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11054), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226561] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11056), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226573] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11058), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226585] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226597] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11062), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226609] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11064), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226621] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11066), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226633] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11068), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226645] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11070), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226657] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11072), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226669] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11074), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226681] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11076), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226693] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226705] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1071), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226717] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11078), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226729] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11080), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226741] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1119), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226753] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11082), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226765] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11084), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226777] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11086), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226789] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11088), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226801] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11090), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226813] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11092), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226825] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11094), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226837] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11096), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226849] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11098), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226861] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11100), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226873] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1161), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226885] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11102), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226897] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11104), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226909] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11106), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226921] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11108), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226933] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11110), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226945] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11112), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226957] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11114), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226969] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11116), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226981] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11118), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [226993] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(137), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227005] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11120), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227017] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11122), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227029] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11124), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227041] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11126), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227053] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11128), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227065] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11130), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227077] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11132), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227089] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11134), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227101] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11136), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227113] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11138), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227125] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11140), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227137] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11142), 1, + ts_builtin_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227149] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227161] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11144), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227173] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11146), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227185] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11148), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227197] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227209] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11150), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227221] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227233] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11152), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227245] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1149), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227257] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11154), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227269] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227281] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3348), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227293] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227305] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11156), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227317] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11158), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227329] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1143), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227341] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3320), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227353] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1702), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227365] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11160), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227377] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(11162), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227389] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3328), 1, + sym__keyword_end, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, + [227401] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_op, + sym__newline_before_comment, + anon_sym_LF, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 4, + [SMALL_STATE(1393)] = 0, + [SMALL_STATE(1394)] = 81, + [SMALL_STATE(1395)] = 154, + [SMALL_STATE(1396)] = 229, + [SMALL_STATE(1397)] = 304, + [SMALL_STATE(1398)] = 381, + [SMALL_STATE(1399)] = 456, + [SMALL_STATE(1400)] = 529, + [SMALL_STATE(1401)] = 602, + [SMALL_STATE(1402)] = 675, + [SMALL_STATE(1403)] = 750, + [SMALL_STATE(1404)] = 831, + [SMALL_STATE(1405)] = 910, + [SMALL_STATE(1406)] = 989, + [SMALL_STATE(1407)] = 1068, + [SMALL_STATE(1408)] = 1143, + [SMALL_STATE(1409)] = 1224, + [SMALL_STATE(1410)] = 1305, + [SMALL_STATE(1411)] = 1378, + [SMALL_STATE(1412)] = 1451, + [SMALL_STATE(1413)] = 1532, + [SMALL_STATE(1414)] = 1605, + [SMALL_STATE(1415)] = 1684, + [SMALL_STATE(1416)] = 1759, + [SMALL_STATE(1417)] = 1840, + [SMALL_STATE(1418)] = 1921, + [SMALL_STATE(1419)] = 1994, + [SMALL_STATE(1420)] = 2075, + [SMALL_STATE(1421)] = 2156, + [SMALL_STATE(1422)] = 2237, + [SMALL_STATE(1423)] = 2310, + [SMALL_STATE(1424)] = 2383, + [SMALL_STATE(1425)] = 2456, + [SMALL_STATE(1426)] = 2535, + [SMALL_STATE(1427)] = 2616, + [SMALL_STATE(1428)] = 2689, + [SMALL_STATE(1429)] = 2762, + [SMALL_STATE(1430)] = 2837, + [SMALL_STATE(1431)] = 2912, + [SMALL_STATE(1432)] = 2987, + [SMALL_STATE(1433)] = 3062, + [SMALL_STATE(1434)] = 3137, + [SMALL_STATE(1435)] = 3212, + [SMALL_STATE(1436)] = 3285, + [SMALL_STATE(1437)] = 3358, + [SMALL_STATE(1438)] = 3431, + [SMALL_STATE(1439)] = 3504, + [SMALL_STATE(1440)] = 3577, + [SMALL_STATE(1441)] = 3658, + [SMALL_STATE(1442)] = 3730, + [SMALL_STATE(1443)] = 3802, + [SMALL_STATE(1444)] = 3876, + [SMALL_STATE(1445)] = 3948, + [SMALL_STATE(1446)] = 4020, + [SMALL_STATE(1447)] = 4094, + [SMALL_STATE(1448)] = 4170, + [SMALL_STATE(1449)] = 4242, + [SMALL_STATE(1450)] = 4318, + [SMALL_STATE(1451)] = 4394, + [SMALL_STATE(1452)] = 4470, + [SMALL_STATE(1453)] = 4542, + [SMALL_STATE(1454)] = 4614, + [SMALL_STATE(1455)] = 4690, + [SMALL_STATE(1456)] = 4762, + [SMALL_STATE(1457)] = 4834, + [SMALL_STATE(1458)] = 4906, + [SMALL_STATE(1459)] = 4978, + [SMALL_STATE(1460)] = 5050, + [SMALL_STATE(1461)] = 5122, + [SMALL_STATE(1462)] = 5194, + [SMALL_STATE(1463)] = 5312, + [SMALL_STATE(1464)] = 5386, + [SMALL_STATE(1465)] = 5460, + [SMALL_STATE(1466)] = 5532, + [SMALL_STATE(1467)] = 5604, + [SMALL_STATE(1468)] = 5676, + [SMALL_STATE(1469)] = 5800, + [SMALL_STATE(1470)] = 5872, + [SMALL_STATE(1471)] = 5996, + [SMALL_STATE(1472)] = 6068, + [SMALL_STATE(1473)] = 6192, + [SMALL_STATE(1474)] = 6264, + [SMALL_STATE(1475)] = 6388, + [SMALL_STATE(1476)] = 6460, + [SMALL_STATE(1477)] = 6532, + [SMALL_STATE(1478)] = 6604, + [SMALL_STATE(1479)] = 6676, + [SMALL_STATE(1480)] = 6748, + [SMALL_STATE(1481)] = 6820, + [SMALL_STATE(1482)] = 6892, + [SMALL_STATE(1483)] = 6964, + [SMALL_STATE(1484)] = 7036, + [SMALL_STATE(1485)] = 7108, + [SMALL_STATE(1486)] = 7180, + [SMALL_STATE(1487)] = 7252, + [SMALL_STATE(1488)] = 7324, + [SMALL_STATE(1489)] = 7396, + [SMALL_STATE(1490)] = 7468, + [SMALL_STATE(1491)] = 7540, + [SMALL_STATE(1492)] = 7664, + [SMALL_STATE(1493)] = 7738, + [SMALL_STATE(1494)] = 7862, + [SMALL_STATE(1495)] = 7934, + [SMALL_STATE(1496)] = 8006, + [SMALL_STATE(1497)] = 8078, + [SMALL_STATE(1498)] = 8150, + [SMALL_STATE(1499)] = 8222, + [SMALL_STATE(1500)] = 8294, + [SMALL_STATE(1501)] = 8366, + [SMALL_STATE(1502)] = 8438, + [SMALL_STATE(1503)] = 8510, + [SMALL_STATE(1504)] = 8582, + [SMALL_STATE(1505)] = 8654, + [SMALL_STATE(1506)] = 8726, + [SMALL_STATE(1507)] = 8798, + [SMALL_STATE(1508)] = 8922, + [SMALL_STATE(1509)] = 9046, + [SMALL_STATE(1510)] = 9118, + [SMALL_STATE(1511)] = 9190, + [SMALL_STATE(1512)] = 9262, + [SMALL_STATE(1513)] = 9336, + [SMALL_STATE(1514)] = 9408, + [SMALL_STATE(1515)] = 9480, + [SMALL_STATE(1516)] = 9552, + [SMALL_STATE(1517)] = 9624, + [SMALL_STATE(1518)] = 9696, + [SMALL_STATE(1519)] = 9768, + [SMALL_STATE(1520)] = 9840, + [SMALL_STATE(1521)] = 9912, + [SMALL_STATE(1522)] = 9984, + [SMALL_STATE(1523)] = 10056, + [SMALL_STATE(1524)] = 10128, + [SMALL_STATE(1525)] = 10200, + [SMALL_STATE(1526)] = 10272, + [SMALL_STATE(1527)] = 10344, + [SMALL_STATE(1528)] = 10416, + [SMALL_STATE(1529)] = 10488, + [SMALL_STATE(1530)] = 10560, + [SMALL_STATE(1531)] = 10632, + [SMALL_STATE(1532)] = 10704, + [SMALL_STATE(1533)] = 10776, + [SMALL_STATE(1534)] = 10848, + [SMALL_STATE(1535)] = 10920, + [SMALL_STATE(1536)] = 10996, + [SMALL_STATE(1537)] = 11068, + [SMALL_STATE(1538)] = 11140, + [SMALL_STATE(1539)] = 11212, + [SMALL_STATE(1540)] = 11284, + [SMALL_STATE(1541)] = 11356, + [SMALL_STATE(1542)] = 11428, + [SMALL_STATE(1543)] = 11500, + [SMALL_STATE(1544)] = 11576, + [SMALL_STATE(1545)] = 11648, + [SMALL_STATE(1546)] = 11724, + [SMALL_STATE(1547)] = 11796, + [SMALL_STATE(1548)] = 11868, + [SMALL_STATE(1549)] = 11944, + [SMALL_STATE(1550)] = 12018, + [SMALL_STATE(1551)] = 12090, + [SMALL_STATE(1552)] = 12162, + [SMALL_STATE(1553)] = 12240, + [SMALL_STATE(1554)] = 12312, + [SMALL_STATE(1555)] = 12390, + [SMALL_STATE(1556)] = 12464, + [SMALL_STATE(1557)] = 12542, + [SMALL_STATE(1558)] = 12614, + [SMALL_STATE(1559)] = 12686, + [SMALL_STATE(1560)] = 12758, + [SMALL_STATE(1561)] = 12830, + [SMALL_STATE(1562)] = 12902, + [SMALL_STATE(1563)] = 12974, + [SMALL_STATE(1564)] = 13046, + [SMALL_STATE(1565)] = 13122, + [SMALL_STATE(1566)] = 13194, + [SMALL_STATE(1567)] = 13268, + [SMALL_STATE(1568)] = 13340, + [SMALL_STATE(1569)] = 13412, + [SMALL_STATE(1570)] = 13484, + [SMALL_STATE(1571)] = 13556, + [SMALL_STATE(1572)] = 13628, + [SMALL_STATE(1573)] = 13700, + [SMALL_STATE(1574)] = 13772, + [SMALL_STATE(1575)] = 13844, + [SMALL_STATE(1576)] = 13916, + [SMALL_STATE(1577)] = 13990, + [SMALL_STATE(1578)] = 14062, + [SMALL_STATE(1579)] = 14134, + [SMALL_STATE(1580)] = 14208, + [SMALL_STATE(1581)] = 14282, + [SMALL_STATE(1582)] = 14354, + [SMALL_STATE(1583)] = 14426, + [SMALL_STATE(1584)] = 14500, + [SMALL_STATE(1585)] = 14574, + [SMALL_STATE(1586)] = 14646, + [SMALL_STATE(1587)] = 14718, + [SMALL_STATE(1588)] = 14790, + [SMALL_STATE(1589)] = 14862, + [SMALL_STATE(1590)] = 14934, + [SMALL_STATE(1591)] = 15006, + [SMALL_STATE(1592)] = 15078, + [SMALL_STATE(1593)] = 15150, + [SMALL_STATE(1594)] = 15222, + [SMALL_STATE(1595)] = 15293, + [SMALL_STATE(1596)] = 15364, + [SMALL_STATE(1597)] = 15475, + [SMALL_STATE(1598)] = 15546, + [SMALL_STATE(1599)] = 15619, + [SMALL_STATE(1600)] = 15704, + [SMALL_STATE(1601)] = 15775, + [SMALL_STATE(1602)] = 15860, + [SMALL_STATE(1603)] = 15963, + [SMALL_STATE(1604)] = 16034, + [SMALL_STATE(1605)] = 16141, + [SMALL_STATE(1606)] = 16212, + [SMALL_STATE(1607)] = 16283, + [SMALL_STATE(1608)] = 16392, + [SMALL_STATE(1609)] = 16463, + [SMALL_STATE(1610)] = 16550, + [SMALL_STATE(1611)] = 16621, + [SMALL_STATE(1612)] = 16720, + [SMALL_STATE(1613)] = 16791, + [SMALL_STATE(1614)] = 16862, + [SMALL_STATE(1615)] = 16935, + [SMALL_STATE(1616)] = 17006, + [SMALL_STATE(1617)] = 17077, + [SMALL_STATE(1618)] = 17150, + [SMALL_STATE(1619)] = 17223, + [SMALL_STATE(1620)] = 17336, + [SMALL_STATE(1621)] = 17407, + [SMALL_STATE(1622)] = 17520, + [SMALL_STATE(1623)] = 17591, + [SMALL_STATE(1624)] = 17662, + [SMALL_STATE(1625)] = 17733, + [SMALL_STATE(1626)] = 17804, + [SMALL_STATE(1627)] = 17921, + [SMALL_STATE(1628)] = 17996, + [SMALL_STATE(1629)] = 18071, + [SMALL_STATE(1630)] = 18184, + [SMALL_STATE(1631)] = 18259, + [SMALL_STATE(1632)] = 18330, + [SMALL_STATE(1633)] = 18401, + [SMALL_STATE(1634)] = 18472, + [SMALL_STATE(1635)] = 18543, + [SMALL_STATE(1636)] = 18614, + [SMALL_STATE(1637)] = 18685, + [SMALL_STATE(1638)] = 18756, + [SMALL_STATE(1639)] = 18827, + [SMALL_STATE(1640)] = 18898, + [SMALL_STATE(1641)] = 18971, + [SMALL_STATE(1642)] = 19044, + [SMALL_STATE(1643)] = 19139, + [SMALL_STATE(1644)] = 19212, + [SMALL_STATE(1645)] = 19283, + [SMALL_STATE(1646)] = 19376, + [SMALL_STATE(1647)] = 19447, + [SMALL_STATE(1648)] = 19538, + [SMALL_STATE(1649)] = 19621, + [SMALL_STATE(1650)] = 19692, + [SMALL_STATE(1651)] = 19763, + [SMALL_STATE(1652)] = 19834, + [SMALL_STATE(1653)] = 19905, + [SMALL_STATE(1654)] = 19976, + [SMALL_STATE(1655)] = 20047, + [SMALL_STATE(1656)] = 20126, + [SMALL_STATE(1657)] = 20203, + [SMALL_STATE(1658)] = 20278, + [SMALL_STATE(1659)] = 20349, + [SMALL_STATE(1660)] = 20420, + [SMALL_STATE(1661)] = 20491, + [SMALL_STATE(1662)] = 20602, + [SMALL_STATE(1663)] = 20673, + [SMALL_STATE(1664)] = 20744, + [SMALL_STATE(1665)] = 20815, + [SMALL_STATE(1666)] = 20886, + [SMALL_STATE(1667)] = 20957, + [SMALL_STATE(1668)] = 21028, + [SMALL_STATE(1669)] = 21099, + [SMALL_STATE(1670)] = 21174, + [SMALL_STATE(1671)] = 21245, + [SMALL_STATE(1672)] = 21318, + [SMALL_STATE(1673)] = 21389, + [SMALL_STATE(1674)] = 21460, + [SMALL_STATE(1675)] = 21531, + [SMALL_STATE(1676)] = 21602, + [SMALL_STATE(1677)] = 21673, + [SMALL_STATE(1678)] = 21744, + [SMALL_STATE(1679)] = 21815, + [SMALL_STATE(1680)] = 21886, + [SMALL_STATE(1681)] = 21991, + [SMALL_STATE(1682)] = 22066, + [SMALL_STATE(1683)] = 22137, + [SMALL_STATE(1684)] = 22208, + [SMALL_STATE(1685)] = 22279, + [SMALL_STATE(1686)] = 22350, + [SMALL_STATE(1687)] = 22421, + [SMALL_STATE(1688)] = 22492, + [SMALL_STATE(1689)] = 22563, + [SMALL_STATE(1690)] = 22634, + [SMALL_STATE(1691)] = 22705, + [SMALL_STATE(1692)] = 22776, + [SMALL_STATE(1693)] = 22847, + [SMALL_STATE(1694)] = 22918, + [SMALL_STATE(1695)] = 22989, + [SMALL_STATE(1696)] = 23060, + [SMALL_STATE(1697)] = 23131, + [SMALL_STATE(1698)] = 23202, + [SMALL_STATE(1699)] = 23273, + [SMALL_STATE(1700)] = 23344, + [SMALL_STATE(1701)] = 23415, + [SMALL_STATE(1702)] = 23486, + [SMALL_STATE(1703)] = 23557, + [SMALL_STATE(1704)] = 23628, + [SMALL_STATE(1705)] = 23699, + [SMALL_STATE(1706)] = 23770, + [SMALL_STATE(1707)] = 23841, + [SMALL_STATE(1708)] = 23916, + [SMALL_STATE(1709)] = 24013, + [SMALL_STATE(1710)] = 24084, + [SMALL_STATE(1711)] = 24155, + [SMALL_STATE(1712)] = 24226, + [SMALL_STATE(1713)] = 24297, + [SMALL_STATE(1714)] = 24368, + [SMALL_STATE(1715)] = 24439, + [SMALL_STATE(1716)] = 24510, + [SMALL_STATE(1717)] = 24581, + [SMALL_STATE(1718)] = 24652, + [SMALL_STATE(1719)] = 24725, + [SMALL_STATE(1720)] = 24800, + [SMALL_STATE(1721)] = 24871, + [SMALL_STATE(1722)] = 24942, + [SMALL_STATE(1723)] = 25013, + [SMALL_STATE(1724)] = 25086, + [SMALL_STATE(1725)] = 25161, + [SMALL_STATE(1726)] = 25232, + [SMALL_STATE(1727)] = 25303, + [SMALL_STATE(1728)] = 25374, + [SMALL_STATE(1729)] = 25445, + [SMALL_STATE(1730)] = 25516, + [SMALL_STATE(1731)] = 25589, + [SMALL_STATE(1732)] = 25660, + [SMALL_STATE(1733)] = 25731, + [SMALL_STATE(1734)] = 25802, + [SMALL_STATE(1735)] = 25877, + [SMALL_STATE(1736)] = 25948, + [SMALL_STATE(1737)] = 26019, + [SMALL_STATE(1738)] = 26090, + [SMALL_STATE(1739)] = 26161, + [SMALL_STATE(1740)] = 26232, + [SMALL_STATE(1741)] = 26303, + [SMALL_STATE(1742)] = 26374, + [SMALL_STATE(1743)] = 26445, + [SMALL_STATE(1744)] = 26516, + [SMALL_STATE(1745)] = 26587, + [SMALL_STATE(1746)] = 26658, + [SMALL_STATE(1747)] = 26729, + [SMALL_STATE(1748)] = 26800, + [SMALL_STATE(1749)] = 26871, + [SMALL_STATE(1750)] = 26942, + [SMALL_STATE(1751)] = 27013, + [SMALL_STATE(1752)] = 27133, + [SMALL_STATE(1753)] = 27203, + [SMALL_STATE(1754)] = 27273, + [SMALL_STATE(1755)] = 27343, + [SMALL_STATE(1756)] = 27413, + [SMALL_STATE(1757)] = 27483, + [SMALL_STATE(1758)] = 27553, + [SMALL_STATE(1759)] = 27623, + [SMALL_STATE(1760)] = 27693, + [SMALL_STATE(1761)] = 27765, + [SMALL_STATE(1762)] = 27835, + [SMALL_STATE(1763)] = 27905, + [SMALL_STATE(1764)] = 27981, + [SMALL_STATE(1765)] = 28059, + [SMALL_STATE(1766)] = 28129, + [SMALL_STATE(1767)] = 28199, + [SMALL_STATE(1768)] = 28281, + [SMALL_STATE(1769)] = 28371, + [SMALL_STATE(1770)] = 28443, + [SMALL_STATE(1771)] = 28515, + [SMALL_STATE(1772)] = 28607, + [SMALL_STATE(1773)] = 28677, + [SMALL_STATE(1774)] = 28771, + [SMALL_STATE(1775)] = 28841, + [SMALL_STATE(1776)] = 28911, + [SMALL_STATE(1777)] = 28981, + [SMALL_STATE(1778)] = 29051, + [SMALL_STATE(1779)] = 29121, + [SMALL_STATE(1780)] = 29191, + [SMALL_STATE(1781)] = 29295, + [SMALL_STATE(1782)] = 29365, + [SMALL_STATE(1783)] = 29475, + [SMALL_STATE(1784)] = 29571, + [SMALL_STATE(1785)] = 29641, + [SMALL_STATE(1786)] = 29739, + [SMALL_STATE(1787)] = 29811, + [SMALL_STATE(1788)] = 29923, + [SMALL_STATE(1789)] = 29993, + [SMALL_STATE(1790)] = 30063, + [SMALL_STATE(1791)] = 30133, + [SMALL_STATE(1792)] = 30243, + [SMALL_STATE(1793)] = 30313, + [SMALL_STATE(1794)] = 30383, + [SMALL_STATE(1795)] = 30455, + [SMALL_STATE(1796)] = 30525, + [SMALL_STATE(1797)] = 30595, + [SMALL_STATE(1798)] = 30665, + [SMALL_STATE(1799)] = 30749, + [SMALL_STATE(1800)] = 30819, + [SMALL_STATE(1801)] = 30889, + [SMALL_STATE(1802)] = 30959, + [SMALL_STATE(1803)] = 31029, + [SMALL_STATE(1804)] = 31099, + [SMALL_STATE(1805)] = 31169, + [SMALL_STATE(1806)] = 31239, + [SMALL_STATE(1807)] = 31313, + [SMALL_STATE(1808)] = 31387, + [SMALL_STATE(1809)] = 31457, + [SMALL_STATE(1810)] = 31527, + [SMALL_STATE(1811)] = 31597, + [SMALL_STATE(1812)] = 31667, + [SMALL_STATE(1813)] = 31741, + [SMALL_STATE(1814)] = 31815, + [SMALL_STATE(1815)] = 31885, + [SMALL_STATE(1816)] = 31969, + [SMALL_STATE(1817)] = 32071, + [SMALL_STATE(1818)] = 32145, + [SMALL_STATE(1819)] = 32219, + [SMALL_STATE(1820)] = 32325, + [SMALL_STATE(1821)] = 32433, + [SMALL_STATE(1822)] = 32519, + [SMALL_STATE(1823)] = 32589, + [SMALL_STATE(1824)] = 32659, + [SMALL_STATE(1825)] = 32729, + [SMALL_STATE(1826)] = 32799, + [SMALL_STATE(1827)] = 32869, + [SMALL_STATE(1828)] = 32939, + [SMALL_STATE(1829)] = 33011, + [SMALL_STATE(1830)] = 33081, + [SMALL_STATE(1831)] = 33151, + [SMALL_STATE(1832)] = 33221, + [SMALL_STATE(1833)] = 33291, + [SMALL_STATE(1834)] = 33361, + [SMALL_STATE(1835)] = 33431, + [SMALL_STATE(1836)] = 33501, + [SMALL_STATE(1837)] = 33577, + [SMALL_STATE(1838)] = 33647, + [SMALL_STATE(1839)] = 33717, + [SMALL_STATE(1840)] = 33787, + [SMALL_STATE(1841)] = 33857, + [SMALL_STATE(1842)] = 33927, + [SMALL_STATE(1843)] = 33997, + [SMALL_STATE(1844)] = 34067, + [SMALL_STATE(1845)] = 34179, + [SMALL_STATE(1846)] = 34249, + [SMALL_STATE(1847)] = 34319, + [SMALL_STATE(1848)] = 34391, + [SMALL_STATE(1849)] = 34511, + [SMALL_STATE(1850)] = 34581, + [SMALL_STATE(1851)] = 34651, + [SMALL_STATE(1852)] = 34721, + [SMALL_STATE(1853)] = 34797, + [SMALL_STATE(1854)] = 34867, + [SMALL_STATE(1855)] = 34937, + [SMALL_STATE(1856)] = 35007, + [SMALL_STATE(1857)] = 35077, + [SMALL_STATE(1858)] = 35147, + [SMALL_STATE(1859)] = 35217, + [SMALL_STATE(1860)] = 35287, + [SMALL_STATE(1861)] = 35357, + [SMALL_STATE(1862)] = 35427, + [SMALL_STATE(1863)] = 35497, + [SMALL_STATE(1864)] = 35571, + [SMALL_STATE(1865)] = 35641, + [SMALL_STATE(1866)] = 35711, + [SMALL_STATE(1867)] = 35781, + [SMALL_STATE(1868)] = 35851, + [SMALL_STATE(1869)] = 35921, + [SMALL_STATE(1870)] = 35991, + [SMALL_STATE(1871)] = 36061, + [SMALL_STATE(1872)] = 36131, + [SMALL_STATE(1873)] = 36201, + [SMALL_STATE(1874)] = 36273, + [SMALL_STATE(1875)] = 36343, + [SMALL_STATE(1876)] = 36413, + [SMALL_STATE(1877)] = 36483, + [SMALL_STATE(1878)] = 36553, + [SMALL_STATE(1879)] = 36623, + [SMALL_STATE(1880)] = 36735, + [SMALL_STATE(1881)] = 36805, + [SMALL_STATE(1882)] = 36875, + [SMALL_STATE(1883)] = 36945, + [SMALL_STATE(1884)] = 37015, + [SMALL_STATE(1885)] = 37085, + [SMALL_STATE(1886)] = 37157, + [SMALL_STATE(1887)] = 37227, + [SMALL_STATE(1888)] = 37297, + [SMALL_STATE(1889)] = 37371, + [SMALL_STATE(1890)] = 37441, + [SMALL_STATE(1891)] = 37511, + [SMALL_STATE(1892)] = 37581, + [SMALL_STATE(1893)] = 37651, + [SMALL_STATE(1894)] = 37721, + [SMALL_STATE(1895)] = 37791, + [SMALL_STATE(1896)] = 37861, + [SMALL_STATE(1897)] = 37931, + [SMALL_STATE(1898)] = 38001, + [SMALL_STATE(1899)] = 38073, + [SMALL_STATE(1900)] = 38145, + [SMALL_STATE(1901)] = 38215, + [SMALL_STATE(1902)] = 38285, + [SMALL_STATE(1903)] = 38355, + [SMALL_STATE(1904)] = 38425, + [SMALL_STATE(1905)] = 38495, + [SMALL_STATE(1906)] = 38565, + [SMALL_STATE(1907)] = 38634, + [SMALL_STATE(1908)] = 38703, + [SMALL_STATE(1909)] = 38772, + [SMALL_STATE(1910)] = 38841, + [SMALL_STATE(1911)] = 38912, + [SMALL_STATE(1912)] = 38981, + [SMALL_STATE(1913)] = 39052, + [SMALL_STATE(1914)] = 39121, + [SMALL_STATE(1915)] = 39192, + [SMALL_STATE(1916)] = 39261, + [SMALL_STATE(1917)] = 39330, + [SMALL_STATE(1918)] = 39399, + [SMALL_STATE(1919)] = 39468, + [SMALL_STATE(1920)] = 39537, + [SMALL_STATE(1921)] = 39606, + [SMALL_STATE(1922)] = 39675, + [SMALL_STATE(1923)] = 39744, + [SMALL_STATE(1924)] = 39817, + [SMALL_STATE(1925)] = 39894, + [SMALL_STATE(1926)] = 39963, + [SMALL_STATE(1927)] = 40032, + [SMALL_STATE(1928)] = 40101, + [SMALL_STATE(1929)] = 40170, + [SMALL_STATE(1930)] = 40261, + [SMALL_STATE(1931)] = 40330, + [SMALL_STATE(1932)] = 40401, + [SMALL_STATE(1933)] = 40470, + [SMALL_STATE(1934)] = 40539, + [SMALL_STATE(1935)] = 40608, + [SMALL_STATE(1936)] = 40677, + [SMALL_STATE(1937)] = 40746, + [SMALL_STATE(1938)] = 40835, + [SMALL_STATE(1939)] = 40904, + [SMALL_STATE(1940)] = 40973, + [SMALL_STATE(1941)] = 41042, + [SMALL_STATE(1942)] = 41111, + [SMALL_STATE(1943)] = 41186, + [SMALL_STATE(1944)] = 41255, + [SMALL_STATE(1945)] = 41324, + [SMALL_STATE(1946)] = 41417, + [SMALL_STATE(1947)] = 41512, + [SMALL_STATE(1948)] = 41581, + [SMALL_STATE(1949)] = 41650, + [SMALL_STATE(1950)] = 41719, + [SMALL_STATE(1951)] = 41822, + [SMALL_STATE(1952)] = 41891, + [SMALL_STATE(1953)] = 41988, + [SMALL_STATE(1954)] = 42057, + [SMALL_STATE(1955)] = 42126, + [SMALL_STATE(1956)] = 42237, + [SMALL_STATE(1957)] = 42306, + [SMALL_STATE(1958)] = 42375, + [SMALL_STATE(1959)] = 42450, + [SMALL_STATE(1960)] = 42521, + [SMALL_STATE(1961)] = 42632, + [SMALL_STATE(1962)] = 42701, + [SMALL_STATE(1963)] = 42776, + [SMALL_STATE(1964)] = 42845, + [SMALL_STATE(1965)] = 42914, + [SMALL_STATE(1966)] = 42983, + [SMALL_STATE(1967)] = 43052, + [SMALL_STATE(1968)] = 43121, + [SMALL_STATE(1969)] = 43202, + [SMALL_STATE(1970)] = 43273, + [SMALL_STATE(1971)] = 43342, + [SMALL_STATE(1972)] = 43411, + [SMALL_STATE(1973)] = 43480, + [SMALL_STATE(1974)] = 43549, + [SMALL_STATE(1975)] = 43618, + [SMALL_STATE(1976)] = 43687, + [SMALL_STATE(1977)] = 43756, + [SMALL_STATE(1978)] = 43863, + [SMALL_STATE(1979)] = 43932, + [SMALL_STATE(1980)] = 44001, + [SMALL_STATE(1981)] = 44070, + [SMALL_STATE(1982)] = 44139, + [SMALL_STATE(1983)] = 44208, + [SMALL_STATE(1984)] = 44277, + [SMALL_STATE(1985)] = 44346, + [SMALL_STATE(1986)] = 44415, + [SMALL_STATE(1987)] = 44484, + [SMALL_STATE(1988)] = 44553, + [SMALL_STATE(1989)] = 44628, + [SMALL_STATE(1990)] = 44737, + [SMALL_STATE(1991)] = 44808, + [SMALL_STATE(1992)] = 44877, + [SMALL_STATE(1993)] = 44946, + [SMALL_STATE(1994)] = 45017, + [SMALL_STATE(1995)] = 45086, + [SMALL_STATE(1996)] = 45157, + [SMALL_STATE(1997)] = 45226, + [SMALL_STATE(1998)] = 45295, + [SMALL_STATE(1999)] = 45364, + [SMALL_STATE(2000)] = 45433, + [SMALL_STATE(2001)] = 45502, + [SMALL_STATE(2002)] = 45571, + [SMALL_STATE(2003)] = 45640, + [SMALL_STATE(2004)] = 45709, + [SMALL_STATE(2005)] = 45778, + [SMALL_STATE(2006)] = 45847, + [SMALL_STATE(2007)] = 45916, + [SMALL_STATE(2008)] = 45985, + [SMALL_STATE(2009)] = 46054, + [SMALL_STATE(2010)] = 46123, + [SMALL_STATE(2011)] = 46192, + [SMALL_STATE(2012)] = 46261, + [SMALL_STATE(2013)] = 46330, + [SMALL_STATE(2014)] = 46399, + [SMALL_STATE(2015)] = 46468, + [SMALL_STATE(2016)] = 46537, + [SMALL_STATE(2017)] = 46606, + [SMALL_STATE(2018)] = 46675, + [SMALL_STATE(2019)] = 46744, + [SMALL_STATE(2020)] = 46813, + [SMALL_STATE(2021)] = 46882, + [SMALL_STATE(2022)] = 46951, + [SMALL_STATE(2023)] = 47020, + [SMALL_STATE(2024)] = 47089, + [SMALL_STATE(2025)] = 47158, + [SMALL_STATE(2026)] = 47231, + [SMALL_STATE(2027)] = 47340, + [SMALL_STATE(2028)] = 47409, + [SMALL_STATE(2029)] = 47482, + [SMALL_STATE(2030)] = 47551, + [SMALL_STATE(2031)] = 47624, + [SMALL_STATE(2032)] = 47693, + [SMALL_STATE(2033)] = 47762, + [SMALL_STATE(2034)] = 47831, + [SMALL_STATE(2035)] = 47900, + [SMALL_STATE(2036)] = 47969, + [SMALL_STATE(2037)] = 48038, + [SMALL_STATE(2038)] = 48107, + [SMALL_STATE(2039)] = 48176, + [SMALL_STATE(2040)] = 48259, + [SMALL_STATE(2041)] = 48328, + [SMALL_STATE(2042)] = 48397, + [SMALL_STATE(2043)] = 48466, + [SMALL_STATE(2044)] = 48535, + [SMALL_STATE(2045)] = 48604, + [SMALL_STATE(2046)] = 48673, + [SMALL_STATE(2047)] = 48742, + [SMALL_STATE(2048)] = 48811, + [SMALL_STATE(2049)] = 48880, + [SMALL_STATE(2050)] = 48949, + [SMALL_STATE(2051)] = 49018, + [SMALL_STATE(2052)] = 49087, + [SMALL_STATE(2053)] = 49156, + [SMALL_STATE(2054)] = 49225, + [SMALL_STATE(2055)] = 49294, + [SMALL_STATE(2056)] = 49363, + [SMALL_STATE(2057)] = 49436, + [SMALL_STATE(2058)] = 49505, + [SMALL_STATE(2059)] = 49574, + [SMALL_STATE(2060)] = 49643, + [SMALL_STATE(2061)] = 49712, + [SMALL_STATE(2062)] = 49781, + [SMALL_STATE(2063)] = 49850, + [SMALL_STATE(2064)] = 49923, + [SMALL_STATE(2065)] = 49996, + [SMALL_STATE(2066)] = 50101, + [SMALL_STATE(2067)] = 50170, + [SMALL_STATE(2068)] = 50253, + [SMALL_STATE(2069)] = 50322, + [SMALL_STATE(2070)] = 50391, + [SMALL_STATE(2071)] = 50492, + [SMALL_STATE(2072)] = 50561, + [SMALL_STATE(2073)] = 50630, + [SMALL_STATE(2074)] = 50699, + [SMALL_STATE(2075)] = 50768, + [SMALL_STATE(2076)] = 50837, + [SMALL_STATE(2077)] = 50906, + [SMALL_STATE(2078)] = 50975, + [SMALL_STATE(2079)] = 51044, + [SMALL_STATE(2080)] = 51113, + [SMALL_STATE(2081)] = 51182, + [SMALL_STATE(2082)] = 51251, + [SMALL_STATE(2083)] = 51320, + [SMALL_STATE(2084)] = 51389, + [SMALL_STATE(2085)] = 51458, + [SMALL_STATE(2086)] = 51527, + [SMALL_STATE(2087)] = 51596, + [SMALL_STATE(2088)] = 51665, + [SMALL_STATE(2089)] = 51734, + [SMALL_STATE(2090)] = 51803, + [SMALL_STATE(2091)] = 51872, + [SMALL_STATE(2092)] = 51941, + [SMALL_STATE(2093)] = 52010, + [SMALL_STATE(2094)] = 52079, + [SMALL_STATE(2095)] = 52148, + [SMALL_STATE(2096)] = 52217, + [SMALL_STATE(2097)] = 52288, + [SMALL_STATE(2098)] = 52361, + [SMALL_STATE(2099)] = 52434, + [SMALL_STATE(2100)] = 52503, + [SMALL_STATE(2101)] = 52588, + [SMALL_STATE(2102)] = 52708, + [SMALL_STATE(2103)] = 52778, + [SMALL_STATE(2104)] = 52848, + [SMALL_STATE(2105)] = 52916, + [SMALL_STATE(2106)] = 52984, + [SMALL_STATE(2107)] = 53056, + [SMALL_STATE(2108)] = 53176, + [SMALL_STATE(2109)] = 53244, + [SMALL_STATE(2110)] = 53312, + [SMALL_STATE(2111)] = 53380, + [SMALL_STATE(2112)] = 53448, + [SMALL_STATE(2113)] = 53516, + [SMALL_STATE(2114)] = 53584, + [SMALL_STATE(2115)] = 53652, + [SMALL_STATE(2116)] = 53720, + [SMALL_STATE(2117)] = 53788, + [SMALL_STATE(2118)] = 53856, + [SMALL_STATE(2119)] = 53924, + [SMALL_STATE(2120)] = 53992, + [SMALL_STATE(2121)] = 54060, + [SMALL_STATE(2122)] = 54128, + [SMALL_STATE(2123)] = 54196, + [SMALL_STATE(2124)] = 54266, + [SMALL_STATE(2125)] = 54334, + [SMALL_STATE(2126)] = 54402, + [SMALL_STATE(2127)] = 54470, + [SMALL_STATE(2128)] = 54538, + [SMALL_STATE(2129)] = 54606, + [SMALL_STATE(2130)] = 54678, + [SMALL_STATE(2131)] = 54746, + [SMALL_STATE(2132)] = 54814, + [SMALL_STATE(2133)] = 54882, + [SMALL_STATE(2134)] = 54950, + [SMALL_STATE(2135)] = 55018, + [SMALL_STATE(2136)] = 55086, + [SMALL_STATE(2137)] = 55154, + [SMALL_STATE(2138)] = 55226, + [SMALL_STATE(2139)] = 55294, + [SMALL_STATE(2140)] = 55366, + [SMALL_STATE(2141)] = 55434, + [SMALL_STATE(2142)] = 55502, + [SMALL_STATE(2143)] = 55570, + [SMALL_STATE(2144)] = 55638, + [SMALL_STATE(2145)] = 55706, + [SMALL_STATE(2146)] = 55774, + [SMALL_STATE(2147)] = 55842, + [SMALL_STATE(2148)] = 55910, + [SMALL_STATE(2149)] = 55978, + [SMALL_STATE(2150)] = 56046, + [SMALL_STATE(2151)] = 56118, + [SMALL_STATE(2152)] = 56186, + [SMALL_STATE(2153)] = 56254, + [SMALL_STATE(2154)] = 56322, + [SMALL_STATE(2155)] = 56424, + [SMALL_STATE(2156)] = 56498, + [SMALL_STATE(2157)] = 56566, + [SMALL_STATE(2158)] = 56642, + [SMALL_STATE(2159)] = 56712, + [SMALL_STATE(2160)] = 56780, + [SMALL_STATE(2161)] = 56848, + [SMALL_STATE(2162)] = 56928, + [SMALL_STATE(2163)] = 56996, + [SMALL_STATE(2164)] = 57064, + [SMALL_STATE(2165)] = 57132, + [SMALL_STATE(2166)] = 57220, + [SMALL_STATE(2167)] = 57288, + [SMALL_STATE(2168)] = 57356, + [SMALL_STATE(2169)] = 57446, + [SMALL_STATE(2170)] = 57514, + [SMALL_STATE(2171)] = 57582, + [SMALL_STATE(2172)] = 57650, + [SMALL_STATE(2173)] = 57718, + [SMALL_STATE(2174)] = 57786, + [SMALL_STATE(2175)] = 57854, + [SMALL_STATE(2176)] = 57922, + [SMALL_STATE(2177)] = 57990, + [SMALL_STATE(2178)] = 58058, + [SMALL_STATE(2179)] = 58126, + [SMALL_STATE(2180)] = 58194, + [SMALL_STATE(2181)] = 58262, + [SMALL_STATE(2182)] = 58330, + [SMALL_STATE(2183)] = 58398, + [SMALL_STATE(2184)] = 58466, + [SMALL_STATE(2185)] = 58534, + [SMALL_STATE(2186)] = 58602, + [SMALL_STATE(2187)] = 58670, + [SMALL_STATE(2188)] = 58738, + [SMALL_STATE(2189)] = 58806, + [SMALL_STATE(2190)] = 58874, + [SMALL_STATE(2191)] = 58942, + [SMALL_STATE(2192)] = 59010, + [SMALL_STATE(2193)] = 59078, + [SMALL_STATE(2194)] = 59146, + [SMALL_STATE(2195)] = 59214, + [SMALL_STATE(2196)] = 59282, + [SMALL_STATE(2197)] = 59350, + [SMALL_STATE(2198)] = 59418, + [SMALL_STATE(2199)] = 59486, + [SMALL_STATE(2200)] = 59554, + [SMALL_STATE(2201)] = 59622, + [SMALL_STATE(2202)] = 59690, + [SMALL_STATE(2203)] = 59760, + [SMALL_STATE(2204)] = 59854, + [SMALL_STATE(2205)] = 59950, + [SMALL_STATE(2206)] = 60032, + [SMALL_STATE(2207)] = 60114, + [SMALL_STATE(2208)] = 60214, + [SMALL_STATE(2209)] = 60298, + [SMALL_STATE(2210)] = 60390, + [SMALL_STATE(2211)] = 60458, + [SMALL_STATE(2212)] = 60526, + [SMALL_STATE(2213)] = 60594, + [SMALL_STATE(2214)] = 60662, + [SMALL_STATE(2215)] = 60730, + [SMALL_STATE(2216)] = 60798, + [SMALL_STATE(2217)] = 60866, + [SMALL_STATE(2218)] = 60934, + [SMALL_STATE(2219)] = 61002, + [SMALL_STATE(2220)] = 61070, + [SMALL_STATE(2221)] = 61138, + [SMALL_STATE(2222)] = 61208, + [SMALL_STATE(2223)] = 61328, + [SMALL_STATE(2224)] = 61448, + [SMALL_STATE(2225)] = 61518, + [SMALL_STATE(2226)] = 61638, + [SMALL_STATE(2227)] = 61712, + [SMALL_STATE(2228)] = 61832, + [SMALL_STATE(2229)] = 61952, + [SMALL_STATE(2230)] = 62026, + [SMALL_STATE(2231)] = 62096, + [SMALL_STATE(2232)] = 62166, + [SMALL_STATE(2233)] = 62238, + [SMALL_STATE(2234)] = 62310, + [SMALL_STATE(2235)] = 62430, + [SMALL_STATE(2236)] = 62550, + [SMALL_STATE(2237)] = 62622, + [SMALL_STATE(2238)] = 62742, + [SMALL_STATE(2239)] = 62862, + [SMALL_STATE(2240)] = 62982, + [SMALL_STATE(2241)] = 63092, + [SMALL_STATE(2242)] = 63164, + [SMALL_STATE(2243)] = 63284, + [SMALL_STATE(2244)] = 63356, + [SMALL_STATE(2245)] = 63424, + [SMALL_STATE(2246)] = 63544, + [SMALL_STATE(2247)] = 63652, + [SMALL_STATE(2248)] = 63772, + [SMALL_STATE(2249)] = 63892, + [SMALL_STATE(2250)] = 63964, + [SMALL_STATE(2251)] = 64084, + [SMALL_STATE(2252)] = 64194, + [SMALL_STATE(2253)] = 64268, + [SMALL_STATE(2254)] = 64342, + [SMALL_STATE(2255)] = 64414, + [SMALL_STATE(2256)] = 64534, + [SMALL_STATE(2257)] = 64654, + [SMALL_STATE(2258)] = 64774, + [SMALL_STATE(2259)] = 64842, + [SMALL_STATE(2260)] = 64912, + [SMALL_STATE(2261)] = 64980, + [SMALL_STATE(2262)] = 65086, + [SMALL_STATE(2263)] = 65190, + [SMALL_STATE(2264)] = 65298, + [SMALL_STATE(2265)] = 65412, + [SMALL_STATE(2266)] = 65482, + [SMALL_STATE(2267)] = 65602, + [SMALL_STATE(2268)] = 65672, + [SMALL_STATE(2269)] = 65792, + [SMALL_STATE(2270)] = 65912, + [SMALL_STATE(2271)] = 65984, + [SMALL_STATE(2272)] = 66056, + [SMALL_STATE(2273)] = 66176, + [SMALL_STATE(2274)] = 66244, + [SMALL_STATE(2275)] = 66316, + [SMALL_STATE(2276)] = 66386, + [SMALL_STATE(2277)] = 66506, + [SMALL_STATE(2278)] = 66626, + [SMALL_STATE(2279)] = 66746, + [SMALL_STATE(2280)] = 66866, + [SMALL_STATE(2281)] = 66986, + [SMALL_STATE(2282)] = 67106, + [SMALL_STATE(2283)] = 67176, + [SMALL_STATE(2284)] = 67248, + [SMALL_STATE(2285)] = 67368, + [SMALL_STATE(2286)] = 67482, + [SMALL_STATE(2287)] = 67554, + [SMALL_STATE(2288)] = 67674, + [SMALL_STATE(2289)] = 67794, + [SMALL_STATE(2290)] = 67914, + [SMALL_STATE(2291)] = 68034, + [SMALL_STATE(2292)] = 68154, + [SMALL_STATE(2293)] = 68274, + [SMALL_STATE(2294)] = 68394, + [SMALL_STATE(2295)] = 68463, + [SMALL_STATE(2296)] = 68572, + [SMALL_STATE(2297)] = 68639, + [SMALL_STATE(2298)] = 68706, + [SMALL_STATE(2299)] = 68773, + [SMALL_STATE(2300)] = 68840, + [SMALL_STATE(2301)] = 68907, + [SMALL_STATE(2302)] = 68974, + [SMALL_STATE(2303)] = 69041, + [SMALL_STATE(2304)] = 69108, + [SMALL_STATE(2305)] = 69175, + [SMALL_STATE(2306)] = 69242, + [SMALL_STATE(2307)] = 69309, + [SMALL_STATE(2308)] = 69376, + [SMALL_STATE(2309)] = 69443, + [SMALL_STATE(2310)] = 69510, + [SMALL_STATE(2311)] = 69577, + [SMALL_STATE(2312)] = 69644, + [SMALL_STATE(2313)] = 69711, + [SMALL_STATE(2314)] = 69778, + [SMALL_STATE(2315)] = 69845, + [SMALL_STATE(2316)] = 69912, + [SMALL_STATE(2317)] = 69979, + [SMALL_STATE(2318)] = 70046, + [SMALL_STATE(2319)] = 70113, + [SMALL_STATE(2320)] = 70180, + [SMALL_STATE(2321)] = 70247, + [SMALL_STATE(2322)] = 70314, + [SMALL_STATE(2323)] = 70381, + [SMALL_STATE(2324)] = 70448, + [SMALL_STATE(2325)] = 70521, + [SMALL_STATE(2326)] = 70590, + [SMALL_STATE(2327)] = 70663, + [SMALL_STATE(2328)] = 70730, + [SMALL_STATE(2329)] = 70797, + [SMALL_STATE(2330)] = 70864, + [SMALL_STATE(2331)] = 70931, + [SMALL_STATE(2332)] = 70998, + [SMALL_STATE(2333)] = 71069, + [SMALL_STATE(2334)] = 71136, + [SMALL_STATE(2335)] = 71209, + [SMALL_STATE(2336)] = 71276, + [SMALL_STATE(2337)] = 71343, + [SMALL_STATE(2338)] = 71410, + [SMALL_STATE(2339)] = 71477, + [SMALL_STATE(2340)] = 71544, + [SMALL_STATE(2341)] = 71611, + [SMALL_STATE(2342)] = 71678, + [SMALL_STATE(2343)] = 71745, + [SMALL_STATE(2344)] = 71812, + [SMALL_STATE(2345)] = 71879, + [SMALL_STATE(2346)] = 71946, + [SMALL_STATE(2347)] = 72013, + [SMALL_STATE(2348)] = 72080, + [SMALL_STATE(2349)] = 72147, + [SMALL_STATE(2350)] = 72214, + [SMALL_STATE(2351)] = 72281, + [SMALL_STATE(2352)] = 72394, + [SMALL_STATE(2353)] = 72461, + [SMALL_STATE(2354)] = 72530, + [SMALL_STATE(2355)] = 72597, + [SMALL_STATE(2356)] = 72664, + [SMALL_STATE(2357)] = 72731, + [SMALL_STATE(2358)] = 72840, + [SMALL_STATE(2359)] = 72909, + [SMALL_STATE(2360)] = 72980, + [SMALL_STATE(2361)] = 73047, + [SMALL_STATE(2362)] = 73118, + [SMALL_STATE(2363)] = 73187, + [SMALL_STATE(2364)] = 73256, + [SMALL_STATE(2365)] = 73323, + [SMALL_STATE(2366)] = 73390, + [SMALL_STATE(2367)] = 73457, + [SMALL_STATE(2368)] = 73524, + [SMALL_STATE(2369)] = 73591, + [SMALL_STATE(2370)] = 73658, + [SMALL_STATE(2371)] = 73725, + [SMALL_STATE(2372)] = 73792, + [SMALL_STATE(2373)] = 73859, + [SMALL_STATE(2374)] = 73926, + [SMALL_STATE(2375)] = 73993, + [SMALL_STATE(2376)] = 74060, + [SMALL_STATE(2377)] = 74129, + [SMALL_STATE(2378)] = 74196, + [SMALL_STATE(2379)] = 74263, + [SMALL_STATE(2380)] = 74330, + [SMALL_STATE(2381)] = 74397, + [SMALL_STATE(2382)] = 74464, + [SMALL_STATE(2383)] = 74531, + [SMALL_STATE(2384)] = 74598, + [SMALL_STATE(2385)] = 74665, + [SMALL_STATE(2386)] = 74734, + [SMALL_STATE(2387)] = 74801, + [SMALL_STATE(2388)] = 74868, + [SMALL_STATE(2389)] = 74935, + [SMALL_STATE(2390)] = 75002, + [SMALL_STATE(2391)] = 75069, + [SMALL_STATE(2392)] = 75136, + [SMALL_STATE(2393)] = 75203, + [SMALL_STATE(2394)] = 75270, + [SMALL_STATE(2395)] = 75337, + [SMALL_STATE(2396)] = 75404, + [SMALL_STATE(2397)] = 75471, + [SMALL_STATE(2398)] = 75538, + [SMALL_STATE(2399)] = 75609, + [SMALL_STATE(2400)] = 75676, + [SMALL_STATE(2401)] = 75743, + [SMALL_STATE(2402)] = 75810, + [SMALL_STATE(2403)] = 75877, + [SMALL_STATE(2404)] = 75944, + [SMALL_STATE(2405)] = 76015, + [SMALL_STATE(2406)] = 76084, + [SMALL_STATE(2407)] = 76193, + [SMALL_STATE(2408)] = 76264, + [SMALL_STATE(2409)] = 76331, + [SMALL_STATE(2410)] = 76400, + [SMALL_STATE(2411)] = 76467, + [SMALL_STATE(2412)] = 76534, + [SMALL_STATE(2413)] = 76601, + [SMALL_STATE(2414)] = 76714, + [SMALL_STATE(2415)] = 76785, + [SMALL_STATE(2416)] = 76852, + [SMALL_STATE(2417)] = 76961, + [SMALL_STATE(2418)] = 77034, + [SMALL_STATE(2419)] = 77101, + [SMALL_STATE(2420)] = 77168, + [SMALL_STATE(2421)] = 77241, + [SMALL_STATE(2422)] = 77310, + [SMALL_STATE(2423)] = 77377, + [SMALL_STATE(2424)] = 77448, + [SMALL_STATE(2425)] = 77515, + [SMALL_STATE(2426)] = 77584, + [SMALL_STATE(2427)] = 77653, + [SMALL_STATE(2428)] = 77724, + [SMALL_STATE(2429)] = 77791, + [SMALL_STATE(2430)] = 77862, + [SMALL_STATE(2431)] = 77929, + [SMALL_STATE(2432)] = 77998, + [SMALL_STATE(2433)] = 78069, + [SMALL_STATE(2434)] = 78136, + [SMALL_STATE(2435)] = 78203, + [SMALL_STATE(2436)] = 78270, + [SMALL_STATE(2437)] = 78339, + [SMALL_STATE(2438)] = 78422, + [SMALL_STATE(2439)] = 78527, + [SMALL_STATE(2440)] = 78594, + [SMALL_STATE(2441)] = 78661, + [SMALL_STATE(2442)] = 78764, + [SMALL_STATE(2443)] = 78863, + [SMALL_STATE(2444)] = 78930, + [SMALL_STATE(2445)] = 78997, + [SMALL_STATE(2446)] = 79064, + [SMALL_STATE(2447)] = 79145, + [SMALL_STATE(2448)] = 79226, + [SMALL_STATE(2449)] = 79333, + [SMALL_STATE(2450)] = 79428, + [SMALL_STATE(2451)] = 79495, + [SMALL_STATE(2452)] = 79562, + [SMALL_STATE(2453)] = 79655, + [SMALL_STATE(2454)] = 79746, + [SMALL_STATE(2455)] = 79813, + [SMALL_STATE(2456)] = 79880, + [SMALL_STATE(2457)] = 79947, + [SMALL_STATE(2458)] = 80036, + [SMALL_STATE(2459)] = 80103, + [SMALL_STATE(2460)] = 80190, + [SMALL_STATE(2461)] = 80257, + [SMALL_STATE(2462)] = 80336, + [SMALL_STATE(2463)] = 80411, + [SMALL_STATE(2464)] = 80484, + [SMALL_STATE(2465)] = 80551, + [SMALL_STATE(2466)] = 80618, + [SMALL_STATE(2467)] = 80725, + [SMALL_STATE(2468)] = 80792, + [SMALL_STATE(2469)] = 80859, + [SMALL_STATE(2470)] = 80926, + [SMALL_STATE(2471)] = 80993, + [SMALL_STATE(2472)] = 81094, + [SMALL_STATE(2473)] = 81163, + [SMALL_STATE(2474)] = 81230, + [SMALL_STATE(2475)] = 81297, + [SMALL_STATE(2476)] = 81406, + [SMALL_STATE(2477)] = 81473, + [SMALL_STATE(2478)] = 81544, + [SMALL_STATE(2479)] = 81611, + [SMALL_STATE(2480)] = 81682, + [SMALL_STATE(2481)] = 81749, + [SMALL_STATE(2482)] = 81858, + [SMALL_STATE(2483)] = 81967, + [SMALL_STATE(2484)] = 82034, + [SMALL_STATE(2485)] = 82101, + [SMALL_STATE(2486)] = 82168, + [SMALL_STATE(2487)] = 82235, + [SMALL_STATE(2488)] = 82304, + [SMALL_STATE(2489)] = 82373, + [SMALL_STATE(2490)] = 82442, + [SMALL_STATE(2491)] = 82509, + [SMALL_STATE(2492)] = 82576, + [SMALL_STATE(2493)] = 82643, + [SMALL_STATE(2494)] = 82710, + [SMALL_STATE(2495)] = 82779, + [SMALL_STATE(2496)] = 82848, + [SMALL_STATE(2497)] = 82917, + [SMALL_STATE(2498)] = 83026, + [SMALL_STATE(2499)] = 83097, + [SMALL_STATE(2500)] = 83164, + [SMALL_STATE(2501)] = 83247, + [SMALL_STATE(2502)] = 83316, + [SMALL_STATE(2503)] = 83421, + [SMALL_STATE(2504)] = 83524, + [SMALL_STATE(2505)] = 83623, + [SMALL_STATE(2506)] = 83704, + [SMALL_STATE(2507)] = 83785, + [SMALL_STATE(2508)] = 83892, + [SMALL_STATE(2509)] = 83987, + [SMALL_STATE(2510)] = 84080, + [SMALL_STATE(2511)] = 84171, + [SMALL_STATE(2512)] = 84260, + [SMALL_STATE(2513)] = 84347, + [SMALL_STATE(2514)] = 84426, + [SMALL_STATE(2515)] = 84501, + [SMALL_STATE(2516)] = 84574, + [SMALL_STATE(2517)] = 84681, + [SMALL_STATE(2518)] = 84782, + [SMALL_STATE(2519)] = 84853, + [SMALL_STATE(2520)] = 84920, + [SMALL_STATE(2521)] = 84987, + [SMALL_STATE(2522)] = 85058, + [SMALL_STATE(2523)] = 85125, + [SMALL_STATE(2524)] = 85194, + [SMALL_STATE(2525)] = 85263, + [SMALL_STATE(2526)] = 85330, + [SMALL_STATE(2527)] = 85397, + [SMALL_STATE(2528)] = 85464, + [SMALL_STATE(2529)] = 85531, + [SMALL_STATE(2530)] = 85598, + [SMALL_STATE(2531)] = 85669, + [SMALL_STATE(2532)] = 85736, + [SMALL_STATE(2533)] = 85807, + [SMALL_STATE(2534)] = 85874, + [SMALL_STATE(2535)] = 85941, + [SMALL_STATE(2536)] = 86008, + [SMALL_STATE(2537)] = 86075, + [SMALL_STATE(2538)] = 86142, + [SMALL_STATE(2539)] = 86213, + [SMALL_STATE(2540)] = 86284, + [SMALL_STATE(2541)] = 86393, + [SMALL_STATE(2542)] = 86460, + [SMALL_STATE(2543)] = 86531, + [SMALL_STATE(2544)] = 86598, + [SMALL_STATE(2545)] = 86711, + [SMALL_STATE(2546)] = 86778, + [SMALL_STATE(2547)] = 86845, + [SMALL_STATE(2548)] = 86912, + [SMALL_STATE(2549)] = 86995, + [SMALL_STATE(2550)] = 87100, + [SMALL_STATE(2551)] = 87203, + [SMALL_STATE(2552)] = 87302, + [SMALL_STATE(2553)] = 87383, + [SMALL_STATE(2554)] = 87464, + [SMALL_STATE(2555)] = 87531, + [SMALL_STATE(2556)] = 87638, + [SMALL_STATE(2557)] = 87733, + [SMALL_STATE(2558)] = 87800, + [SMALL_STATE(2559)] = 87893, + [SMALL_STATE(2560)] = 87984, + [SMALL_STATE(2561)] = 88051, + [SMALL_STATE(2562)] = 88140, + [SMALL_STATE(2563)] = 88227, + [SMALL_STATE(2564)] = 88306, + [SMALL_STATE(2565)] = 88381, + [SMALL_STATE(2566)] = 88454, + [SMALL_STATE(2567)] = 88561, + [SMALL_STATE(2568)] = 88662, + [SMALL_STATE(2569)] = 88735, + [SMALL_STATE(2570)] = 88808, + [SMALL_STATE(2571)] = 88881, + [SMALL_STATE(2572)] = 88994, + [SMALL_STATE(2573)] = 89061, + [SMALL_STATE(2574)] = 89128, + [SMALL_STATE(2575)] = 89195, + [SMALL_STATE(2576)] = 89262, + [SMALL_STATE(2577)] = 89331, + [SMALL_STATE(2578)] = 89400, + [SMALL_STATE(2579)] = 89467, + [SMALL_STATE(2580)] = 89534, + [SMALL_STATE(2581)] = 89601, + [SMALL_STATE(2582)] = 89670, + [SMALL_STATE(2583)] = 89737, + [SMALL_STATE(2584)] = 89804, + [SMALL_STATE(2585)] = 89871, + [SMALL_STATE(2586)] = 89938, + [SMALL_STATE(2587)] = 90005, + [SMALL_STATE(2588)] = 90072, + [SMALL_STATE(2589)] = 90141, + [SMALL_STATE(2590)] = 90208, + [SMALL_STATE(2591)] = 90275, + [SMALL_STATE(2592)] = 90342, + [SMALL_STATE(2593)] = 90409, + [SMALL_STATE(2594)] = 90476, + [SMALL_STATE(2595)] = 90543, + [SMALL_STATE(2596)] = 90610, + [SMALL_STATE(2597)] = 90677, + [SMALL_STATE(2598)] = 90744, + [SMALL_STATE(2599)] = 90811, + [SMALL_STATE(2600)] = 90878, + [SMALL_STATE(2601)] = 90945, + [SMALL_STATE(2602)] = 91012, + [SMALL_STATE(2603)] = 91079, + [SMALL_STATE(2604)] = 91146, + [SMALL_STATE(2605)] = 91213, + [SMALL_STATE(2606)] = 91280, + [SMALL_STATE(2607)] = 91347, + [SMALL_STATE(2608)] = 91414, + [SMALL_STATE(2609)] = 91481, + [SMALL_STATE(2610)] = 91548, + [SMALL_STATE(2611)] = 91615, + [SMALL_STATE(2612)] = 91682, + [SMALL_STATE(2613)] = 91749, + [SMALL_STATE(2614)] = 91816, + [SMALL_STATE(2615)] = 91883, + [SMALL_STATE(2616)] = 91950, + [SMALL_STATE(2617)] = 92017, + [SMALL_STATE(2618)] = 92084, + [SMALL_STATE(2619)] = 92151, + [SMALL_STATE(2620)] = 92218, + [SMALL_STATE(2621)] = 92285, + [SMALL_STATE(2622)] = 92352, + [SMALL_STATE(2623)] = 92419, + [SMALL_STATE(2624)] = 92486, + [SMALL_STATE(2625)] = 92553, + [SMALL_STATE(2626)] = 92620, + [SMALL_STATE(2627)] = 92687, + [SMALL_STATE(2628)] = 92754, + [SMALL_STATE(2629)] = 92821, + [SMALL_STATE(2630)] = 92888, + [SMALL_STATE(2631)] = 92955, + [SMALL_STATE(2632)] = 93022, + [SMALL_STATE(2633)] = 93089, + [SMALL_STATE(2634)] = 93156, + [SMALL_STATE(2635)] = 93223, + [SMALL_STATE(2636)] = 93292, + [SMALL_STATE(2637)] = 93359, + [SMALL_STATE(2638)] = 93426, + [SMALL_STATE(2639)] = 93493, + [SMALL_STATE(2640)] = 93560, + [SMALL_STATE(2641)] = 93627, + [SMALL_STATE(2642)] = 93694, + [SMALL_STATE(2643)] = 93761, + [SMALL_STATE(2644)] = 93828, + [SMALL_STATE(2645)] = 93895, + [SMALL_STATE(2646)] = 93962, + [SMALL_STATE(2647)] = 94029, + [SMALL_STATE(2648)] = 94096, + [SMALL_STATE(2649)] = 94163, + [SMALL_STATE(2650)] = 94230, + [SMALL_STATE(2651)] = 94297, + [SMALL_STATE(2652)] = 94364, + [SMALL_STATE(2653)] = 94431, + [SMALL_STATE(2654)] = 94498, + [SMALL_STATE(2655)] = 94565, + [SMALL_STATE(2656)] = 94632, + [SMALL_STATE(2657)] = 94699, + [SMALL_STATE(2658)] = 94766, + [SMALL_STATE(2659)] = 94833, + [SMALL_STATE(2660)] = 94900, + [SMALL_STATE(2661)] = 94967, + [SMALL_STATE(2662)] = 95034, + [SMALL_STATE(2663)] = 95101, + [SMALL_STATE(2664)] = 95168, + [SMALL_STATE(2665)] = 95235, + [SMALL_STATE(2666)] = 95302, + [SMALL_STATE(2667)] = 95369, + [SMALL_STATE(2668)] = 95436, + [SMALL_STATE(2669)] = 95503, + [SMALL_STATE(2670)] = 95573, + [SMALL_STATE(2671)] = 95639, + [SMALL_STATE(2672)] = 95721, + [SMALL_STATE(2673)] = 95787, + [SMALL_STATE(2674)] = 95853, + [SMALL_STATE(2675)] = 95919, + [SMALL_STATE(2676)] = 95985, + [SMALL_STATE(2677)] = 96051, + [SMALL_STATE(2678)] = 96117, + [SMALL_STATE(2679)] = 96185, + [SMALL_STATE(2680)] = 96251, + [SMALL_STATE(2681)] = 96317, + [SMALL_STATE(2682)] = 96383, + [SMALL_STATE(2683)] = 96449, + [SMALL_STATE(2684)] = 96515, + [SMALL_STATE(2685)] = 96581, + [SMALL_STATE(2686)] = 96647, + [SMALL_STATE(2687)] = 96713, + [SMALL_STATE(2688)] = 96779, + [SMALL_STATE(2689)] = 96887, + [SMALL_STATE(2690)] = 96957, + [SMALL_STATE(2691)] = 97023, + [SMALL_STATE(2692)] = 97093, + [SMALL_STATE(2693)] = 97159, + [SMALL_STATE(2694)] = 97225, + [SMALL_STATE(2695)] = 97291, + [SMALL_STATE(2696)] = 97357, + [SMALL_STATE(2697)] = 97423, + [SMALL_STATE(2698)] = 97489, + [SMALL_STATE(2699)] = 97555, + [SMALL_STATE(2700)] = 97621, + [SMALL_STATE(2701)] = 97719, + [SMALL_STATE(2702)] = 97785, + [SMALL_STATE(2703)] = 97851, + [SMALL_STATE(2704)] = 97917, + [SMALL_STATE(2705)] = 97997, + [SMALL_STATE(2706)] = 98067, + [SMALL_STATE(2707)] = 98137, + [SMALL_STATE(2708)] = 98203, + [SMALL_STATE(2709)] = 98269, + [SMALL_STATE(2710)] = 98377, + [SMALL_STATE(2711)] = 98443, + [SMALL_STATE(2712)] = 98513, + [SMALL_STATE(2713)] = 98579, + [SMALL_STATE(2714)] = 98645, + [SMALL_STATE(2715)] = 98757, + [SMALL_STATE(2716)] = 98827, + [SMALL_STATE(2717)] = 98907, + [SMALL_STATE(2718)] = 98973, + [SMALL_STATE(2719)] = 99039, + [SMALL_STATE(2720)] = 99109, + [SMALL_STATE(2721)] = 99175, + [SMALL_STATE(2722)] = 99281, + [SMALL_STATE(2723)] = 99349, + [SMALL_STATE(2724)] = 99443, + [SMALL_STATE(2725)] = 99535, + [SMALL_STATE(2726)] = 99625, + [SMALL_STATE(2727)] = 99695, + [SMALL_STATE(2728)] = 99765, + [SMALL_STATE(2729)] = 99835, + [SMALL_STATE(2730)] = 99901, + [SMALL_STATE(2731)] = 99967, + [SMALL_STATE(2732)] = 100033, + [SMALL_STATE(2733)] = 100099, + [SMALL_STATE(2734)] = 100165, + [SMALL_STATE(2735)] = 100231, + [SMALL_STATE(2736)] = 100297, + [SMALL_STATE(2737)] = 100363, + [SMALL_STATE(2738)] = 100433, + [SMALL_STATE(2739)] = 100503, + [SMALL_STATE(2740)] = 100569, + [SMALL_STATE(2741)] = 100657, + [SMALL_STATE(2742)] = 100743, + [SMALL_STATE(2743)] = 100821, + [SMALL_STATE(2744)] = 100895, + [SMALL_STATE(2745)] = 100967, + [SMALL_STATE(2746)] = 101073, + [SMALL_STATE(2747)] = 101139, + [SMALL_STATE(2748)] = 101239, + [SMALL_STATE(2749)] = 101305, + [SMALL_STATE(2750)] = 101371, + [SMALL_STATE(2751)] = 101437, + [SMALL_STATE(2752)] = 101503, + [SMALL_STATE(2753)] = 101569, + [SMALL_STATE(2754)] = 101635, + [SMALL_STATE(2755)] = 101701, + [SMALL_STATE(2756)] = 101771, + [SMALL_STATE(2757)] = 101837, + [SMALL_STATE(2758)] = 101903, + [SMALL_STATE(2759)] = 101969, + [SMALL_STATE(2760)] = 102035, + [SMALL_STATE(2761)] = 102101, + [SMALL_STATE(2762)] = 102169, + [SMALL_STATE(2763)] = 102237, + [SMALL_STATE(2764)] = 102305, + [SMALL_STATE(2765)] = 102371, + [SMALL_STATE(2766)] = 102439, + [SMALL_STATE(2767)] = 102507, + [SMALL_STATE(2768)] = 102573, + [SMALL_STATE(2769)] = 102639, + [SMALL_STATE(2770)] = 102705, + [SMALL_STATE(2771)] = 102771, + [SMALL_STATE(2772)] = 102879, + [SMALL_STATE(2773)] = 102945, + [SMALL_STATE(2774)] = 103011, + [SMALL_STATE(2775)] = 103077, + [SMALL_STATE(2776)] = 103185, + [SMALL_STATE(2777)] = 103251, + [SMALL_STATE(2778)] = 103355, + [SMALL_STATE(2779)] = 103421, + [SMALL_STATE(2780)] = 103487, + [SMALL_STATE(2781)] = 103553, + [SMALL_STATE(2782)] = 103619, + [SMALL_STATE(2783)] = 103685, + [SMALL_STATE(2784)] = 103751, + [SMALL_STATE(2785)] = 103817, + [SMALL_STATE(2786)] = 103883, + [SMALL_STATE(2787)] = 103949, + [SMALL_STATE(2788)] = 104015, + [SMALL_STATE(2789)] = 104081, + [SMALL_STATE(2790)] = 104147, + [SMALL_STATE(2791)] = 104213, + [SMALL_STATE(2792)] = 104279, + [SMALL_STATE(2793)] = 104345, + [SMALL_STATE(2794)] = 104411, + [SMALL_STATE(2795)] = 104477, + [SMALL_STATE(2796)] = 104585, + [SMALL_STATE(2797)] = 104651, + [SMALL_STATE(2798)] = 104759, + [SMALL_STATE(2799)] = 104825, + [SMALL_STATE(2800)] = 104891, + [SMALL_STATE(2801)] = 104957, + [SMALL_STATE(2802)] = 105023, + [SMALL_STATE(2803)] = 105089, + [SMALL_STATE(2804)] = 105155, + [SMALL_STATE(2805)] = 105263, + [SMALL_STATE(2806)] = 105329, + [SMALL_STATE(2807)] = 105395, + [SMALL_STATE(2808)] = 105463, + [SMALL_STATE(2809)] = 105529, + [SMALL_STATE(2810)] = 105595, + [SMALL_STATE(2811)] = 105661, + [SMALL_STATE(2812)] = 105727, + [SMALL_STATE(2813)] = 105795, + [SMALL_STATE(2814)] = 105861, + [SMALL_STATE(2815)] = 105927, + [SMALL_STATE(2816)] = 105993, + [SMALL_STATE(2817)] = 106059, + [SMALL_STATE(2818)] = 106127, + [SMALL_STATE(2819)] = 106193, + [SMALL_STATE(2820)] = 106259, + [SMALL_STATE(2821)] = 106325, + [SMALL_STATE(2822)] = 106441, + [SMALL_STATE(2823)] = 106509, + [SMALL_STATE(2824)] = 106575, + [SMALL_STATE(2825)] = 106641, + [SMALL_STATE(2826)] = 106707, + [SMALL_STATE(2827)] = 106773, + [SMALL_STATE(2828)] = 106839, + [SMALL_STATE(2829)] = 106905, + [SMALL_STATE(2830)] = 106973, + [SMALL_STATE(2831)] = 107039, + [SMALL_STATE(2832)] = 107105, + [SMALL_STATE(2833)] = 107171, + [SMALL_STATE(2834)] = 107239, + [SMALL_STATE(2835)] = 107305, + [SMALL_STATE(2836)] = 107373, + [SMALL_STATE(2837)] = 107439, + [SMALL_STATE(2838)] = 107507, + [SMALL_STATE(2839)] = 107573, + [SMALL_STATE(2840)] = 107639, + [SMALL_STATE(2841)] = 107705, + [SMALL_STATE(2842)] = 107813, + [SMALL_STATE(2843)] = 107879, + [SMALL_STATE(2844)] = 107945, + [SMALL_STATE(2845)] = 108011, + [SMALL_STATE(2846)] = 108111, + [SMALL_STATE(2847)] = 108217, + [SMALL_STATE(2848)] = 108289, + [SMALL_STATE(2849)] = 108363, + [SMALL_STATE(2850)] = 108441, + [SMALL_STATE(2851)] = 108527, + [SMALL_STATE(2852)] = 108615, + [SMALL_STATE(2853)] = 108705, + [SMALL_STATE(2854)] = 108771, + [SMALL_STATE(2855)] = 108837, + [SMALL_STATE(2856)] = 108929, + [SMALL_STATE(2857)] = 109023, + [SMALL_STATE(2858)] = 109089, + [SMALL_STATE(2859)] = 109155, + [SMALL_STATE(2860)] = 109261, + [SMALL_STATE(2861)] = 109327, + [SMALL_STATE(2862)] = 109407, + [SMALL_STATE(2863)] = 109487, + [SMALL_STATE(2864)] = 109585, + [SMALL_STATE(2865)] = 109651, + [SMALL_STATE(2866)] = 109753, + [SMALL_STATE(2867)] = 109857, + [SMALL_STATE(2868)] = 109923, + [SMALL_STATE(2869)] = 110005, + [SMALL_STATE(2870)] = 110071, + [SMALL_STATE(2871)] = 110139, + [SMALL_STATE(2872)] = 110205, + [SMALL_STATE(2873)] = 110271, + [SMALL_STATE(2874)] = 110337, + [SMALL_STATE(2875)] = 110403, + [SMALL_STATE(2876)] = 110469, + [SMALL_STATE(2877)] = 110571, + [SMALL_STATE(2878)] = 110641, + [SMALL_STATE(2879)] = 110707, + [SMALL_STATE(2880)] = 110773, + [SMALL_STATE(2881)] = 110839, + [SMALL_STATE(2882)] = 110905, + [SMALL_STATE(2883)] = 110971, + [SMALL_STATE(2884)] = 111043, + [SMALL_STATE(2885)] = 111115, + [SMALL_STATE(2886)] = 111181, + [SMALL_STATE(2887)] = 111253, + [SMALL_STATE(2888)] = 111365, + [SMALL_STATE(2889)] = 111431, + [SMALL_STATE(2890)] = 111497, + [SMALL_STATE(2891)] = 111597, + [SMALL_STATE(2892)] = 111663, + [SMALL_STATE(2893)] = 111729, + [SMALL_STATE(2894)] = 111795, + [SMALL_STATE(2895)] = 111901, + [SMALL_STATE(2896)] = 111967, + [SMALL_STATE(2897)] = 112033, + [SMALL_STATE(2898)] = 112105, + [SMALL_STATE(2899)] = 112179, + [SMALL_STATE(2900)] = 112257, + [SMALL_STATE(2901)] = 112343, + [SMALL_STATE(2902)] = 112409, + [SMALL_STATE(2903)] = 112497, + [SMALL_STATE(2904)] = 112587, + [SMALL_STATE(2905)] = 112679, + [SMALL_STATE(2906)] = 112773, + [SMALL_STATE(2907)] = 112879, + [SMALL_STATE(2908)] = 112959, + [SMALL_STATE(2909)] = 113039, + [SMALL_STATE(2910)] = 113137, + [SMALL_STATE(2911)] = 113239, + [SMALL_STATE(2912)] = 113343, + [SMALL_STATE(2913)] = 113425, + [SMALL_STATE(2914)] = 113491, + [SMALL_STATE(2915)] = 113561, + [SMALL_STATE(2916)] = 113627, + [SMALL_STATE(2917)] = 113693, + [SMALL_STATE(2918)] = 113759, + [SMALL_STATE(2919)] = 113825, + [SMALL_STATE(2920)] = 113891, + [SMALL_STATE(2921)] = 113959, + [SMALL_STATE(2922)] = 114025, + [SMALL_STATE(2923)] = 114093, + [SMALL_STATE(2924)] = 114159, + [SMALL_STATE(2925)] = 114225, + [SMALL_STATE(2926)] = 114291, + [SMALL_STATE(2927)] = 114357, + [SMALL_STATE(2928)] = 114423, + [SMALL_STATE(2929)] = 114489, + [SMALL_STATE(2930)] = 114555, + [SMALL_STATE(2931)] = 114623, + [SMALL_STATE(2932)] = 114689, + [SMALL_STATE(2933)] = 114797, + [SMALL_STATE(2934)] = 114867, + [SMALL_STATE(2935)] = 114933, + [SMALL_STATE(2936)] = 114999, + [SMALL_STATE(2937)] = 115065, + [SMALL_STATE(2938)] = 115131, + [SMALL_STATE(2939)] = 115201, + [SMALL_STATE(2940)] = 115267, + [SMALL_STATE(2941)] = 115375, + [SMALL_STATE(2942)] = 115441, + [SMALL_STATE(2943)] = 115507, + [SMALL_STATE(2944)] = 115573, + [SMALL_STATE(2945)] = 115639, + [SMALL_STATE(2946)] = 115705, + [SMALL_STATE(2947)] = 115771, + [SMALL_STATE(2948)] = 115837, + [SMALL_STATE(2949)] = 115903, + [SMALL_STATE(2950)] = 115969, + [SMALL_STATE(2951)] = 116035, + [SMALL_STATE(2952)] = 116101, + [SMALL_STATE(2953)] = 116167, + [SMALL_STATE(2954)] = 116233, + [SMALL_STATE(2955)] = 116341, + [SMALL_STATE(2956)] = 116407, + [SMALL_STATE(2957)] = 116473, + [SMALL_STATE(2958)] = 116539, + [SMALL_STATE(2959)] = 116605, + [SMALL_STATE(2960)] = 116671, + [SMALL_STATE(2961)] = 116737, + [SMALL_STATE(2962)] = 116803, + [SMALL_STATE(2963)] = 116869, + [SMALL_STATE(2964)] = 116939, + [SMALL_STATE(2965)] = 117009, + [SMALL_STATE(2966)] = 117075, + [SMALL_STATE(2967)] = 117141, + [SMALL_STATE(2968)] = 117207, + [SMALL_STATE(2969)] = 117323, + [SMALL_STATE(2970)] = 117431, + [SMALL_STATE(2971)] = 117497, + [SMALL_STATE(2972)] = 117563, + [SMALL_STATE(2973)] = 117633, + [SMALL_STATE(2974)] = 117699, + [SMALL_STATE(2975)] = 117765, + [SMALL_STATE(2976)] = 117831, + [SMALL_STATE(2977)] = 117897, + [SMALL_STATE(2978)] = 117963, + [SMALL_STATE(2979)] = 118029, + [SMALL_STATE(2980)] = 118095, + [SMALL_STATE(2981)] = 118161, + [SMALL_STATE(2982)] = 118231, + [SMALL_STATE(2983)] = 118297, + [SMALL_STATE(2984)] = 118363, + [SMALL_STATE(2985)] = 118429, + [SMALL_STATE(2986)] = 118495, + [SMALL_STATE(2987)] = 118561, + [SMALL_STATE(2988)] = 118627, + [SMALL_STATE(2989)] = 118693, + [SMALL_STATE(2990)] = 118759, + [SMALL_STATE(2991)] = 118825, + [SMALL_STATE(2992)] = 118891, + [SMALL_STATE(2993)] = 118957, + [SMALL_STATE(2994)] = 119023, + [SMALL_STATE(2995)] = 119089, + [SMALL_STATE(2996)] = 119155, + [SMALL_STATE(2997)] = 119221, + [SMALL_STATE(2998)] = 119287, + [SMALL_STATE(2999)] = 119355, + [SMALL_STATE(3000)] = 119421, + [SMALL_STATE(3001)] = 119487, + [SMALL_STATE(3002)] = 119557, + [SMALL_STATE(3003)] = 119623, + [SMALL_STATE(3004)] = 119689, + [SMALL_STATE(3005)] = 119755, + [SMALL_STATE(3006)] = 119825, + [SMALL_STATE(3007)] = 119891, + [SMALL_STATE(3008)] = 119957, + [SMALL_STATE(3009)] = 120023, + [SMALL_STATE(3010)] = 120089, + [SMALL_STATE(3011)] = 120155, + [SMALL_STATE(3012)] = 120221, + [SMALL_STATE(3013)] = 120287, + [SMALL_STATE(3014)] = 120353, + [SMALL_STATE(3015)] = 120469, + [SMALL_STATE(3016)] = 120535, + [SMALL_STATE(3017)] = 120601, + [SMALL_STATE(3018)] = 120667, + [SMALL_STATE(3019)] = 120733, + [SMALL_STATE(3020)] = 120799, + [SMALL_STATE(3021)] = 120865, + [SMALL_STATE(3022)] = 120931, + [SMALL_STATE(3023)] = 120997, + [SMALL_STATE(3024)] = 121079, + [SMALL_STATE(3025)] = 121183, + [SMALL_STATE(3026)] = 121285, + [SMALL_STATE(3027)] = 121351, + [SMALL_STATE(3028)] = 121449, + [SMALL_STATE(3029)] = 121529, + [SMALL_STATE(3030)] = 121609, + [SMALL_STATE(3031)] = 121679, + [SMALL_STATE(3032)] = 121745, + [SMALL_STATE(3033)] = 121851, + [SMALL_STATE(3034)] = 121945, + [SMALL_STATE(3035)] = 122037, + [SMALL_STATE(3036)] = 122127, + [SMALL_STATE(3037)] = 122215, + [SMALL_STATE(3038)] = 122331, + [SMALL_STATE(3039)] = 122397, + [SMALL_STATE(3040)] = 122483, + [SMALL_STATE(3041)] = 122553, + [SMALL_STATE(3042)] = 122631, + [SMALL_STATE(3043)] = 122705, + [SMALL_STATE(3044)] = 122777, + [SMALL_STATE(3045)] = 122883, + [SMALL_STATE(3046)] = 122949, + [SMALL_STATE(3047)] = 123049, + [SMALL_STATE(3048)] = 123115, + [SMALL_STATE(3049)] = 123181, + [SMALL_STATE(3050)] = 123247, + [SMALL_STATE(3051)] = 123313, + [SMALL_STATE(3052)] = 123379, + [SMALL_STATE(3053)] = 123445, + [SMALL_STATE(3054)] = 123511, + [SMALL_STATE(3055)] = 123577, + [SMALL_STATE(3056)] = 123643, + [SMALL_STATE(3057)] = 123759, + [SMALL_STATE(3058)] = 123825, + [SMALL_STATE(3059)] = 123891, + [SMALL_STATE(3060)] = 123957, + [SMALL_STATE(3061)] = 124023, + [SMALL_STATE(3062)] = 124093, + [SMALL_STATE(3063)] = 124159, + [SMALL_STATE(3064)] = 124225, + [SMALL_STATE(3065)] = 124291, + [SMALL_STATE(3066)] = 124357, + [SMALL_STATE(3067)] = 124473, + [SMALL_STATE(3068)] = 124539, + [SMALL_STATE(3069)] = 124609, + [SMALL_STATE(3070)] = 124675, + [SMALL_STATE(3071)] = 124743, + [SMALL_STATE(3072)] = 124809, + [SMALL_STATE(3073)] = 124875, + [SMALL_STATE(3074)] = 124941, + [SMALL_STATE(3075)] = 125007, + [SMALL_STATE(3076)] = 125073, + [SMALL_STATE(3077)] = 125139, + [SMALL_STATE(3078)] = 125205, + [SMALL_STATE(3079)] = 125271, + [SMALL_STATE(3080)] = 125337, + [SMALL_STATE(3081)] = 125403, + [SMALL_STATE(3082)] = 125473, + [SMALL_STATE(3083)] = 125538, + [SMALL_STATE(3084)] = 125603, + [SMALL_STATE(3085)] = 125668, + [SMALL_STATE(3086)] = 125737, + [SMALL_STATE(3087)] = 125806, + [SMALL_STATE(3088)] = 125871, + [SMALL_STATE(3089)] = 125940, + [SMALL_STATE(3090)] = 126009, + [SMALL_STATE(3091)] = 126074, + [SMALL_STATE(3092)] = 126139, + [SMALL_STATE(3093)] = 126204, + [SMALL_STATE(3094)] = 126273, + [SMALL_STATE(3095)] = 126338, + [SMALL_STATE(3096)] = 126407, + [SMALL_STATE(3097)] = 126472, + [SMALL_STATE(3098)] = 126537, + [SMALL_STATE(3099)] = 126602, + [SMALL_STATE(3100)] = 126667, + [SMALL_STATE(3101)] = 126734, + [SMALL_STATE(3102)] = 126799, + [SMALL_STATE(3103)] = 126864, + [SMALL_STATE(3104)] = 126929, + [SMALL_STATE(3105)] = 126994, + [SMALL_STATE(3106)] = 127059, + [SMALL_STATE(3107)] = 127124, + [SMALL_STATE(3108)] = 127189, + [SMALL_STATE(3109)] = 127254, + [SMALL_STATE(3110)] = 127319, + [SMALL_STATE(3111)] = 127386, + [SMALL_STATE(3112)] = 127451, + [SMALL_STATE(3113)] = 127516, + [SMALL_STATE(3114)] = 127581, + [SMALL_STATE(3115)] = 127650, + [SMALL_STATE(3116)] = 127757, + [SMALL_STATE(3117)] = 127822, + [SMALL_STATE(3118)] = 127887, + [SMALL_STATE(3119)] = 127952, + [SMALL_STATE(3120)] = 128017, + [SMALL_STATE(3121)] = 128082, + [SMALL_STATE(3122)] = 128189, + [SMALL_STATE(3123)] = 128254, + [SMALL_STATE(3124)] = 128319, + [SMALL_STATE(3125)] = 128384, + [SMALL_STATE(3126)] = 128451, + [SMALL_STATE(3127)] = 128516, + [SMALL_STATE(3128)] = 128583, + [SMALL_STATE(3129)] = 128648, + [SMALL_STATE(3130)] = 128717, + [SMALL_STATE(3131)] = 128784, + [SMALL_STATE(3132)] = 128851, + [SMALL_STATE(3133)] = 128916, + [SMALL_STATE(3134)] = 129025, + [SMALL_STATE(3135)] = 129090, + [SMALL_STATE(3136)] = 129155, + [SMALL_STATE(3137)] = 129220, + [SMALL_STATE(3138)] = 129285, + [SMALL_STATE(3139)] = 129350, + [SMALL_STATE(3140)] = 129419, + [SMALL_STATE(3141)] = 129486, + [SMALL_STATE(3142)] = 129551, + [SMALL_STATE(3143)] = 129616, + [SMALL_STATE(3144)] = 129681, + [SMALL_STATE(3145)] = 129746, + [SMALL_STATE(3146)] = 129811, + [SMALL_STATE(3147)] = 129876, + [SMALL_STATE(3148)] = 129975, + [SMALL_STATE(3149)] = 130040, + [SMALL_STATE(3150)] = 130105, + [SMALL_STATE(3151)] = 130170, + [SMALL_STATE(3152)] = 130275, + [SMALL_STATE(3153)] = 130346, + [SMALL_STATE(3154)] = 130419, + [SMALL_STATE(3155)] = 130496, + [SMALL_STATE(3156)] = 130581, + [SMALL_STATE(3157)] = 130646, + [SMALL_STATE(3158)] = 130711, + [SMALL_STATE(3159)] = 130798, + [SMALL_STATE(3160)] = 130863, + [SMALL_STATE(3161)] = 130928, + [SMALL_STATE(3162)] = 131017, + [SMALL_STATE(3163)] = 131082, + [SMALL_STATE(3164)] = 131173, + [SMALL_STATE(3165)] = 131238, + [SMALL_STATE(3166)] = 131331, + [SMALL_STATE(3167)] = 131432, + [SMALL_STATE(3168)] = 131531, + [SMALL_STATE(3169)] = 131596, + [SMALL_STATE(3170)] = 131701, + [SMALL_STATE(3171)] = 131766, + [SMALL_STATE(3172)] = 131869, + [SMALL_STATE(3173)] = 131938, + [SMALL_STATE(3174)] = 132017, + [SMALL_STATE(3175)] = 132096, + [SMALL_STATE(3176)] = 132193, + [SMALL_STATE(3177)] = 132258, + [SMALL_STATE(3178)] = 132359, + [SMALL_STATE(3179)] = 132462, + [SMALL_STATE(3180)] = 132543, + [SMALL_STATE(3181)] = 132646, + [SMALL_STATE(3182)] = 132711, + [SMALL_STATE(3183)] = 132776, + [SMALL_STATE(3184)] = 132841, + [SMALL_STATE(3185)] = 132906, + [SMALL_STATE(3186)] = 132971, + [SMALL_STATE(3187)] = 133036, + [SMALL_STATE(3188)] = 133101, + [SMALL_STATE(3189)] = 133166, + [SMALL_STATE(3190)] = 133231, + [SMALL_STATE(3191)] = 133296, + [SMALL_STATE(3192)] = 133403, + [SMALL_STATE(3193)] = 133508, + [SMALL_STATE(3194)] = 133615, + [SMALL_STATE(3195)] = 133680, + [SMALL_STATE(3196)] = 133745, + [SMALL_STATE(3197)] = 133810, + [SMALL_STATE(3198)] = 133875, + [SMALL_STATE(3199)] = 133940, + [SMALL_STATE(3200)] = 134017, + [SMALL_STATE(3201)] = 134082, + [SMALL_STATE(3202)] = 134149, + [SMALL_STATE(3203)] = 134222, + [SMALL_STATE(3204)] = 134291, + [SMALL_STATE(3205)] = 134398, + [SMALL_STATE(3206)] = 134467, + [SMALL_STATE(3207)] = 134532, + [SMALL_STATE(3208)] = 134601, + [SMALL_STATE(3209)] = 134710, + [SMALL_STATE(3210)] = 134775, + [SMALL_STATE(3211)] = 134840, + [SMALL_STATE(3212)] = 134905, + [SMALL_STATE(3213)] = 134970, + [SMALL_STATE(3214)] = 135037, + [SMALL_STATE(3215)] = 135102, + [SMALL_STATE(3216)] = 135167, + [SMALL_STATE(3217)] = 135232, + [SMALL_STATE(3218)] = 135297, + [SMALL_STATE(3219)] = 135362, + [SMALL_STATE(3220)] = 135427, + [SMALL_STATE(3221)] = 135492, + [SMALL_STATE(3222)] = 135557, + [SMALL_STATE(3223)] = 135622, + [SMALL_STATE(3224)] = 135687, + [SMALL_STATE(3225)] = 135752, + [SMALL_STATE(3226)] = 135817, + [SMALL_STATE(3227)] = 135886, + [SMALL_STATE(3228)] = 135951, + [SMALL_STATE(3229)] = 136016, + [SMALL_STATE(3230)] = 136123, + [SMALL_STATE(3231)] = 136188, + [SMALL_STATE(3232)] = 136257, + [SMALL_STATE(3233)] = 136328, + [SMALL_STATE(3234)] = 136393, + [SMALL_STATE(3235)] = 136458, + [SMALL_STATE(3236)] = 136523, + [SMALL_STATE(3237)] = 136588, + [SMALL_STATE(3238)] = 136653, + [SMALL_STATE(3239)] = 136718, + [SMALL_STATE(3240)] = 136783, + [SMALL_STATE(3241)] = 136848, + [SMALL_STATE(3242)] = 136913, + [SMALL_STATE(3243)] = 136978, + [SMALL_STATE(3244)] = 137043, + [SMALL_STATE(3245)] = 137112, + [SMALL_STATE(3246)] = 137177, + [SMALL_STATE(3247)] = 137242, + [SMALL_STATE(3248)] = 137307, + [SMALL_STATE(3249)] = 137372, + [SMALL_STATE(3250)] = 137437, + [SMALL_STATE(3251)] = 137502, + [SMALL_STATE(3252)] = 137567, + [SMALL_STATE(3253)] = 137632, + [SMALL_STATE(3254)] = 137697, + [SMALL_STATE(3255)] = 137762, + [SMALL_STATE(3256)] = 137827, + [SMALL_STATE(3257)] = 137892, + [SMALL_STATE(3258)] = 137959, + [SMALL_STATE(3259)] = 138024, + [SMALL_STATE(3260)] = 138093, + [SMALL_STATE(3261)] = 138160, + [SMALL_STATE(3262)] = 138225, + [SMALL_STATE(3263)] = 138290, + [SMALL_STATE(3264)] = 138355, + [SMALL_STATE(3265)] = 138420, + [SMALL_STATE(3266)] = 138485, + [SMALL_STATE(3267)] = 138550, + [SMALL_STATE(3268)] = 138615, + [SMALL_STATE(3269)] = 138680, + [SMALL_STATE(3270)] = 138745, + [SMALL_STATE(3271)] = 138810, + [SMALL_STATE(3272)] = 138875, + [SMALL_STATE(3273)] = 138940, + [SMALL_STATE(3274)] = 139005, + [SMALL_STATE(3275)] = 139070, + [SMALL_STATE(3276)] = 139135, + [SMALL_STATE(3277)] = 139200, + [SMALL_STATE(3278)] = 139265, + [SMALL_STATE(3279)] = 139330, + [SMALL_STATE(3280)] = 139395, + [SMALL_STATE(3281)] = 139460, + [SMALL_STATE(3282)] = 139525, + [SMALL_STATE(3283)] = 139590, + [SMALL_STATE(3284)] = 139655, + [SMALL_STATE(3285)] = 139754, + [SMALL_STATE(3286)] = 139819, + [SMALL_STATE(3287)] = 139884, + [SMALL_STATE(3288)] = 139989, + [SMALL_STATE(3289)] = 140054, + [SMALL_STATE(3290)] = 140119, + [SMALL_STATE(3291)] = 140184, + [SMALL_STATE(3292)] = 140249, + [SMALL_STATE(3293)] = 140314, + [SMALL_STATE(3294)] = 140379, + [SMALL_STATE(3295)] = 140444, + [SMALL_STATE(3296)] = 140525, + [SMALL_STATE(3297)] = 140628, + [SMALL_STATE(3298)] = 140729, + [SMALL_STATE(3299)] = 140826, + [SMALL_STATE(3300)] = 140905, + [SMALL_STATE(3301)] = 140984, + [SMALL_STATE(3302)] = 141089, + [SMALL_STATE(3303)] = 141182, + [SMALL_STATE(3304)] = 141273, + [SMALL_STATE(3305)] = 141362, + [SMALL_STATE(3306)] = 141449, + [SMALL_STATE(3307)] = 141534, + [SMALL_STATE(3308)] = 141611, + [SMALL_STATE(3309)] = 141684, + [SMALL_STATE(3310)] = 141755, + [SMALL_STATE(3311)] = 141860, + [SMALL_STATE(3312)] = 141959, + [SMALL_STATE(3313)] = 142024, + [SMALL_STATE(3314)] = 142089, + [SMALL_STATE(3315)] = 142154, + [SMALL_STATE(3316)] = 142219, + [SMALL_STATE(3317)] = 142284, + [SMALL_STATE(3318)] = 142349, + [SMALL_STATE(3319)] = 142414, + [SMALL_STATE(3320)] = 142481, + [SMALL_STATE(3321)] = 142554, + [SMALL_STATE(3322)] = 142631, + [SMALL_STATE(3323)] = 142716, + [SMALL_STATE(3324)] = 142803, + [SMALL_STATE(3325)] = 142892, + [SMALL_STATE(3326)] = 142983, + [SMALL_STATE(3327)] = 143076, + [SMALL_STATE(3328)] = 143181, + [SMALL_STATE(3329)] = 143260, + [SMALL_STATE(3330)] = 143339, + [SMALL_STATE(3331)] = 143436, + [SMALL_STATE(3332)] = 143537, + [SMALL_STATE(3333)] = 143640, + [SMALL_STATE(3334)] = 143721, + [SMALL_STATE(3335)] = 143786, + [SMALL_STATE(3336)] = 143851, + [SMALL_STATE(3337)] = 143916, + [SMALL_STATE(3338)] = 143981, + [SMALL_STATE(3339)] = 144046, + [SMALL_STATE(3340)] = 144151, + [SMALL_STATE(3341)] = 144216, + [SMALL_STATE(3342)] = 144281, + [SMALL_STATE(3343)] = 144346, + [SMALL_STATE(3344)] = 144411, + [SMALL_STATE(3345)] = 144476, + [SMALL_STATE(3346)] = 144541, + [SMALL_STATE(3347)] = 144606, + [SMALL_STATE(3348)] = 144671, + [SMALL_STATE(3349)] = 144736, + [SMALL_STATE(3350)] = 144843, + [SMALL_STATE(3351)] = 144908, + [SMALL_STATE(3352)] = 144973, + [SMALL_STATE(3353)] = 145038, + [SMALL_STATE(3354)] = 145103, + [SMALL_STATE(3355)] = 145168, + [SMALL_STATE(3356)] = 145233, + [SMALL_STATE(3357)] = 145298, + [SMALL_STATE(3358)] = 145363, + [SMALL_STATE(3359)] = 145432, + [SMALL_STATE(3360)] = 145497, + [SMALL_STATE(3361)] = 145562, + [SMALL_STATE(3362)] = 145627, + [SMALL_STATE(3363)] = 145692, + [SMALL_STATE(3364)] = 145757, + [SMALL_STATE(3365)] = 145826, + [SMALL_STATE(3366)] = 145891, + [SMALL_STATE(3367)] = 145956, + [SMALL_STATE(3368)] = 146021, + [SMALL_STATE(3369)] = 146086, + [SMALL_STATE(3370)] = 146151, + [SMALL_STATE(3371)] = 146216, + [SMALL_STATE(3372)] = 146281, + [SMALL_STATE(3373)] = 146346, + [SMALL_STATE(3374)] = 146411, + [SMALL_STATE(3375)] = 146476, + [SMALL_STATE(3376)] = 146541, + [SMALL_STATE(3377)] = 146606, + [SMALL_STATE(3378)] = 146671, + [SMALL_STATE(3379)] = 146736, + [SMALL_STATE(3380)] = 146801, + [SMALL_STATE(3381)] = 146866, + [SMALL_STATE(3382)] = 146931, + [SMALL_STATE(3383)] = 146996, + [SMALL_STATE(3384)] = 147065, + [SMALL_STATE(3385)] = 147130, + [SMALL_STATE(3386)] = 147195, + [SMALL_STATE(3387)] = 147260, + [SMALL_STATE(3388)] = 147325, + [SMALL_STATE(3389)] = 147390, + [SMALL_STATE(3390)] = 147471, + [SMALL_STATE(3391)] = 147536, + [SMALL_STATE(3392)] = 147601, + [SMALL_STATE(3393)] = 147666, + [SMALL_STATE(3394)] = 147731, + [SMALL_STATE(3395)] = 147796, + [SMALL_STATE(3396)] = 147861, + [SMALL_STATE(3397)] = 147926, + [SMALL_STATE(3398)] = 148009, + [SMALL_STATE(3399)] = 148094, + [SMALL_STATE(3400)] = 148181, + [SMALL_STATE(3401)] = 148270, + [SMALL_STATE(3402)] = 148335, + [SMALL_STATE(3403)] = 148400, + [SMALL_STATE(3404)] = 148467, + [SMALL_STATE(3405)] = 148532, + [SMALL_STATE(3406)] = 148597, + [SMALL_STATE(3407)] = 148662, + [SMALL_STATE(3408)] = 148727, + [SMALL_STATE(3409)] = 148824, + [SMALL_STATE(3410)] = 148895, + [SMALL_STATE(3411)] = 148964, + [SMALL_STATE(3412)] = 149033, + [SMALL_STATE(3413)] = 149098, + [SMALL_STATE(3414)] = 149163, + [SMALL_STATE(3415)] = 149228, + [SMALL_STATE(3416)] = 149293, + [SMALL_STATE(3417)] = 149358, + [SMALL_STATE(3418)] = 149423, + [SMALL_STATE(3419)] = 149488, + [SMALL_STATE(3420)] = 149553, + [SMALL_STATE(3421)] = 149618, + [SMALL_STATE(3422)] = 149683, + [SMALL_STATE(3423)] = 149750, + [SMALL_STATE(3424)] = 149815, + [SMALL_STATE(3425)] = 149884, + [SMALL_STATE(3426)] = 149949, + [SMALL_STATE(3427)] = 150014, + [SMALL_STATE(3428)] = 150079, + [SMALL_STATE(3429)] = 150186, + [SMALL_STATE(3430)] = 150251, + [SMALL_STATE(3431)] = 150342, + [SMALL_STATE(3432)] = 150411, + [SMALL_STATE(3433)] = 150490, + [SMALL_STATE(3434)] = 150555, + [SMALL_STATE(3435)] = 150624, + [SMALL_STATE(3436)] = 150689, + [SMALL_STATE(3437)] = 150756, + [SMALL_STATE(3438)] = 150823, + [SMALL_STATE(3439)] = 150888, + [SMALL_STATE(3440)] = 150955, + [SMALL_STATE(3441)] = 151020, + [SMALL_STATE(3442)] = 151085, + [SMALL_STATE(3443)] = 151150, + [SMALL_STATE(3444)] = 151217, + [SMALL_STATE(3445)] = 151282, + [SMALL_STATE(3446)] = 151347, + [SMALL_STATE(3447)] = 151412, + [SMALL_STATE(3448)] = 151479, + [SMALL_STATE(3449)] = 151544, + [SMALL_STATE(3450)] = 151609, + [SMALL_STATE(3451)] = 151674, + [SMALL_STATE(3452)] = 151769, + [SMALL_STATE(3453)] = 151834, + [SMALL_STATE(3454)] = 151899, + [SMALL_STATE(3455)] = 151978, + [SMALL_STATE(3456)] = 152043, + [SMALL_STATE(3457)] = 152148, + [SMALL_STATE(3458)] = 152213, + [SMALL_STATE(3459)] = 152277, + [SMALL_STATE(3460)] = 152341, + [SMALL_STATE(3461)] = 152407, + [SMALL_STATE(3462)] = 152473, + [SMALL_STATE(3463)] = 152539, + [SMALL_STATE(3464)] = 152605, + [SMALL_STATE(3465)] = 152671, + [SMALL_STATE(3466)] = 152735, + [SMALL_STATE(3467)] = 152799, + [SMALL_STATE(3468)] = 152903, + [SMALL_STATE(3469)] = 152967, + [SMALL_STATE(3470)] = 153031, + [SMALL_STATE(3471)] = 153099, + [SMALL_STATE(3472)] = 153163, + [SMALL_STATE(3473)] = 153269, + [SMALL_STATE(3474)] = 153333, + [SMALL_STATE(3475)] = 153397, + [SMALL_STATE(3476)] = 153461, + [SMALL_STATE(3477)] = 153525, + [SMALL_STATE(3478)] = 153593, + [SMALL_STATE(3479)] = 153657, + [SMALL_STATE(3480)] = 153761, + [SMALL_STATE(3481)] = 153865, + [SMALL_STATE(3482)] = 153965, + [SMALL_STATE(3483)] = 154029, + [SMALL_STATE(3484)] = 154093, + [SMALL_STATE(3485)] = 154157, + [SMALL_STATE(3486)] = 154221, + [SMALL_STATE(3487)] = 154285, + [SMALL_STATE(3488)] = 154349, + [SMALL_STATE(3489)] = 154451, + [SMALL_STATE(3490)] = 154515, + [SMALL_STATE(3491)] = 154621, + [SMALL_STATE(3492)] = 154685, + [SMALL_STATE(3493)] = 154749, + [SMALL_STATE(3494)] = 154813, + [SMALL_STATE(3495)] = 154877, + [SMALL_STATE(3496)] = 154941, + [SMALL_STATE(3497)] = 155005, + [SMALL_STATE(3498)] = 155069, + [SMALL_STATE(3499)] = 155133, + [SMALL_STATE(3500)] = 155197, + [SMALL_STATE(3501)] = 155261, + [SMALL_STATE(3502)] = 155329, + [SMALL_STATE(3503)] = 155393, + [SMALL_STATE(3504)] = 155461, + [SMALL_STATE(3505)] = 155529, + [SMALL_STATE(3506)] = 155597, + [SMALL_STATE(3507)] = 155661, + [SMALL_STATE(3508)] = 155741, + [SMALL_STATE(3509)] = 155837, + [SMALL_STATE(3510)] = 155915, + [SMALL_STATE(3511)] = 155993, + [SMALL_STATE(3512)] = 156085, + [SMALL_STATE(3513)] = 156149, + [SMALL_STATE(3514)] = 156239, + [SMALL_STATE(3515)] = 156327, + [SMALL_STATE(3516)] = 156413, + [SMALL_STATE(3517)] = 156497, + [SMALL_STATE(3518)] = 156573, + [SMALL_STATE(3519)] = 156645, + [SMALL_STATE(3520)] = 156715, + [SMALL_STATE(3521)] = 156813, + [SMALL_STATE(3522)] = 156877, + [SMALL_STATE(3523)] = 156941, + [SMALL_STATE(3524)] = 157005, + [SMALL_STATE(3525)] = 157069, + [SMALL_STATE(3526)] = 157133, + [SMALL_STATE(3527)] = 157197, + [SMALL_STATE(3528)] = 157261, + [SMALL_STATE(3529)] = 157327, + [SMALL_STATE(3530)] = 157433, + [SMALL_STATE(3531)] = 157501, + [SMALL_STATE(3532)] = 157565, + [SMALL_STATE(3533)] = 157629, + [SMALL_STATE(3534)] = 157693, + [SMALL_STATE(3535)] = 157801, + [SMALL_STATE(3536)] = 157865, + [SMALL_STATE(3537)] = 157929, + [SMALL_STATE(3538)] = 158035, + [SMALL_STATE(3539)] = 158099, + [SMALL_STATE(3540)] = 158167, + [SMALL_STATE(3541)] = 158269, + [SMALL_STATE(3542)] = 158333, + [SMALL_STATE(3543)] = 158397, + [SMALL_STATE(3544)] = 158461, + [SMALL_STATE(3545)] = 158525, + [SMALL_STATE(3546)] = 158589, + [SMALL_STATE(3547)] = 158653, + [SMALL_STATE(3548)] = 158717, + [SMALL_STATE(3549)] = 158781, + [SMALL_STATE(3550)] = 158845, + [SMALL_STATE(3551)] = 158909, + [SMALL_STATE(3552)] = 158973, + [SMALL_STATE(3553)] = 159037, + [SMALL_STATE(3554)] = 159101, + [SMALL_STATE(3555)] = 159165, + [SMALL_STATE(3556)] = 159229, + [SMALL_STATE(3557)] = 159293, + [SMALL_STATE(3558)] = 159357, + [SMALL_STATE(3559)] = 159421, + [SMALL_STATE(3560)] = 159485, + [SMALL_STATE(3561)] = 159549, + [SMALL_STATE(3562)] = 159613, + [SMALL_STATE(3563)] = 159677, + [SMALL_STATE(3564)] = 159741, + [SMALL_STATE(3565)] = 159805, + [SMALL_STATE(3566)] = 159869, + [SMALL_STATE(3567)] = 159933, + [SMALL_STATE(3568)] = 159997, + [SMALL_STATE(3569)] = 160061, + [SMALL_STATE(3570)] = 160125, + [SMALL_STATE(3571)] = 160189, + [SMALL_STATE(3572)] = 160253, + [SMALL_STATE(3573)] = 160317, + [SMALL_STATE(3574)] = 160381, + [SMALL_STATE(3575)] = 160445, + [SMALL_STATE(3576)] = 160509, + [SMALL_STATE(3577)] = 160573, + [SMALL_STATE(3578)] = 160671, + [SMALL_STATE(3579)] = 160735, + [SMALL_STATE(3580)] = 160799, + [SMALL_STATE(3581)] = 160869, + [SMALL_STATE(3582)] = 160933, + [SMALL_STATE(3583)] = 161005, + [SMALL_STATE(3584)] = 161081, + [SMALL_STATE(3585)] = 161165, + [SMALL_STATE(3586)] = 161251, + [SMALL_STATE(3587)] = 161339, + [SMALL_STATE(3588)] = 161429, + [SMALL_STATE(3589)] = 161493, + [SMALL_STATE(3590)] = 161557, + [SMALL_STATE(3591)] = 161649, + [SMALL_STATE(3592)] = 161727, + [SMALL_STATE(3593)] = 161791, + [SMALL_STATE(3594)] = 161869, + [SMALL_STATE(3595)] = 161965, + [SMALL_STATE(3596)] = 162029, + [SMALL_STATE(3597)] = 162109, + [SMALL_STATE(3598)] = 162173, + [SMALL_STATE(3599)] = 162237, + [SMALL_STATE(3600)] = 162301, + [SMALL_STATE(3601)] = 162365, + [SMALL_STATE(3602)] = 162429, + [SMALL_STATE(3603)] = 162493, + [SMALL_STATE(3604)] = 162597, + [SMALL_STATE(3605)] = 162661, + [SMALL_STATE(3606)] = 162725, + [SMALL_STATE(3607)] = 162789, + [SMALL_STATE(3608)] = 162853, + [SMALL_STATE(3609)] = 162917, + [SMALL_STATE(3610)] = 162981, + [SMALL_STATE(3611)] = 163045, + [SMALL_STATE(3612)] = 163109, + [SMALL_STATE(3613)] = 163187, + [SMALL_STATE(3614)] = 163251, + [SMALL_STATE(3615)] = 163315, + [SMALL_STATE(3616)] = 163379, + [SMALL_STATE(3617)] = 163443, + [SMALL_STATE(3618)] = 163507, + [SMALL_STATE(3619)] = 163571, + [SMALL_STATE(3620)] = 163635, + [SMALL_STATE(3621)] = 163699, + [SMALL_STATE(3622)] = 163763, + [SMALL_STATE(3623)] = 163827, + [SMALL_STATE(3624)] = 163891, + [SMALL_STATE(3625)] = 163955, + [SMALL_STATE(3626)] = 164019, + [SMALL_STATE(3627)] = 164083, + [SMALL_STATE(3628)] = 164147, + [SMALL_STATE(3629)] = 164211, + [SMALL_STATE(3630)] = 164275, + [SMALL_STATE(3631)] = 164339, + [SMALL_STATE(3632)] = 164403, + [SMALL_STATE(3633)] = 164511, + [SMALL_STATE(3634)] = 164575, + [SMALL_STATE(3635)] = 164639, + [SMALL_STATE(3636)] = 164703, + [SMALL_STATE(3637)] = 164767, + [SMALL_STATE(3638)] = 164831, + [SMALL_STATE(3639)] = 164895, + [SMALL_STATE(3640)] = 164959, + [SMALL_STATE(3641)] = 165065, + [SMALL_STATE(3642)] = 165129, + [SMALL_STATE(3643)] = 165193, + [SMALL_STATE(3644)] = 165257, + [SMALL_STATE(3645)] = 165363, + [SMALL_STATE(3646)] = 165431, + [SMALL_STATE(3647)] = 165501, + [SMALL_STATE(3648)] = 165565, + [SMALL_STATE(3649)] = 165629, + [SMALL_STATE(3650)] = 165693, + [SMALL_STATE(3651)] = 165757, + [SMALL_STATE(3652)] = 165821, + [SMALL_STATE(3653)] = 165885, + [SMALL_STATE(3654)] = 165949, + [SMALL_STATE(3655)] = 166013, + [SMALL_STATE(3656)] = 166117, + [SMALL_STATE(3657)] = 166181, + [SMALL_STATE(3658)] = 166245, + [SMALL_STATE(3659)] = 166347, + [SMALL_STATE(3660)] = 166447, + [SMALL_STATE(3661)] = 166543, + [SMALL_STATE(3662)] = 166607, + [SMALL_STATE(3663)] = 166679, + [SMALL_STATE(3664)] = 166783, + [SMALL_STATE(3665)] = 166887, + [SMALL_STATE(3666)] = 166951, + [SMALL_STATE(3667)] = 167049, + [SMALL_STATE(3668)] = 167119, + [SMALL_STATE(3669)] = 167189, + [SMALL_STATE(3670)] = 167253, + [SMALL_STATE(3671)] = 167329, + [SMALL_STATE(3672)] = 167411, + [SMALL_STATE(3673)] = 167475, + [SMALL_STATE(3674)] = 167547, + [SMALL_STATE(3675)] = 167611, + [SMALL_STATE(3676)] = 167679, + [SMALL_STATE(3677)] = 167763, + [SMALL_STATE(3678)] = 167849, + [SMALL_STATE(3679)] = 167937, + [SMALL_STATE(3680)] = 168027, + [SMALL_STATE(3681)] = 168129, + [SMALL_STATE(3682)] = 168231, + [SMALL_STATE(3683)] = 168331, + [SMALL_STATE(3684)] = 168435, + [SMALL_STATE(3685)] = 168539, + [SMALL_STATE(3686)] = 168603, + [SMALL_STATE(3687)] = 168671, + [SMALL_STATE(3688)] = 168749, + [SMALL_STATE(3689)] = 168827, + [SMALL_STATE(3690)] = 168921, + [SMALL_STATE(3691)] = 168997, + [SMALL_STATE(3692)] = 169061, + [SMALL_STATE(3693)] = 169159, + [SMALL_STATE(3694)] = 169259, + [SMALL_STATE(3695)] = 169339, + [SMALL_STATE(3696)] = 169403, + [SMALL_STATE(3697)] = 169467, + [SMALL_STATE(3698)] = 169551, + [SMALL_STATE(3699)] = 169615, + [SMALL_STATE(3700)] = 169701, + [SMALL_STATE(3701)] = 169789, + [SMALL_STATE(3702)] = 169879, + [SMALL_STATE(3703)] = 169943, + [SMALL_STATE(3704)] = 170007, + [SMALL_STATE(3705)] = 170071, + [SMALL_STATE(3706)] = 170163, + [SMALL_STATE(3707)] = 170227, + [SMALL_STATE(3708)] = 170305, + [SMALL_STATE(3709)] = 170385, + [SMALL_STATE(3710)] = 170449, + [SMALL_STATE(3711)] = 170515, + [SMALL_STATE(3712)] = 170611, + [SMALL_STATE(3713)] = 170675, + [SMALL_STATE(3714)] = 170739, + [SMALL_STATE(3715)] = 170803, + [SMALL_STATE(3716)] = 170871, + [SMALL_STATE(3717)] = 170935, + [SMALL_STATE(3718)] = 170999, + [SMALL_STATE(3719)] = 171063, + [SMALL_STATE(3720)] = 171127, + [SMALL_STATE(3721)] = 171191, + [SMALL_STATE(3722)] = 171255, + [SMALL_STATE(3723)] = 171319, + [SMALL_STATE(3724)] = 171383, + [SMALL_STATE(3725)] = 171451, + [SMALL_STATE(3726)] = 171515, + [SMALL_STATE(3727)] = 171583, + [SMALL_STATE(3728)] = 171651, + [SMALL_STATE(3729)] = 171719, + [SMALL_STATE(3730)] = 171787, + [SMALL_STATE(3731)] = 171884, + [SMALL_STATE(3732)] = 171983, + [SMALL_STATE(3733)] = 172086, + [SMALL_STATE(3734)] = 172181, + [SMALL_STATE(3735)] = 172270, + [SMALL_STATE(3736)] = 172339, + [SMALL_STATE(3737)] = 172410, + [SMALL_STATE(3738)] = 172505, + [SMALL_STATE(3739)] = 172568, + [SMALL_STATE(3740)] = 172669, + [SMALL_STATE(3741)] = 172738, + [SMALL_STATE(3742)] = 172809, + [SMALL_STATE(3743)] = 172884, + [SMALL_STATE(3744)] = 172965, + [SMALL_STATE(3745)] = 173048, + [SMALL_STATE(3746)] = 173119, + [SMALL_STATE(3747)] = 173204, + [SMALL_STATE(3748)] = 173291, + [SMALL_STATE(3749)] = 173380, + [SMALL_STATE(3750)] = 173481, + [SMALL_STATE(3751)] = 173582, + [SMALL_STATE(3752)] = 173645, + [SMALL_STATE(3753)] = 173746, + [SMALL_STATE(3754)] = 173843, + [SMALL_STATE(3755)] = 173942, + [SMALL_STATE(3756)] = 174005, + [SMALL_STATE(3757)] = 174072, + [SMALL_STATE(3758)] = 174175, + [SMALL_STATE(3759)] = 174278, + [SMALL_STATE(3760)] = 174369, + [SMALL_STATE(3761)] = 174456, + [SMALL_STATE(3762)] = 174561, + [SMALL_STATE(3763)] = 174648, + [SMALL_STATE(3764)] = 174713, + [SMALL_STATE(3765)] = 174816, + [SMALL_STATE(3766)] = 174921, + [SMALL_STATE(3767)] = 174996, + [SMALL_STATE(3768)] = 175081, + [SMALL_STATE(3769)] = 175144, + [SMALL_STATE(3770)] = 175207, + [SMALL_STATE(3771)] = 175290, + [SMALL_STATE(3772)] = 175365, + [SMALL_STATE(3773)] = 175434, + [SMALL_STATE(3774)] = 175537, + [SMALL_STATE(3775)] = 175624, + [SMALL_STATE(3776)] = 175687, + [SMALL_STATE(3777)] = 175750, + [SMALL_STATE(3778)] = 175847, + [SMALL_STATE(3779)] = 175910, + [SMALL_STATE(3780)] = 175995, + [SMALL_STATE(3781)] = 176072, + [SMALL_STATE(3782)] = 176155, + [SMALL_STATE(3783)] = 176218, + [SMALL_STATE(3784)] = 176281, + [SMALL_STATE(3785)] = 176386, + [SMALL_STATE(3786)] = 176463, + [SMALL_STATE(3787)] = 176540, + [SMALL_STATE(3788)] = 176603, + [SMALL_STATE(3789)] = 176666, + [SMALL_STATE(3790)] = 176747, + [SMALL_STATE(3791)] = 176844, + [SMALL_STATE(3792)] = 176921, + [SMALL_STATE(3793)] = 177000, + [SMALL_STATE(3794)] = 177063, + [SMALL_STATE(3795)] = 177126, + [SMALL_STATE(3796)] = 177189, + [SMALL_STATE(3797)] = 177252, + [SMALL_STATE(3798)] = 177351, + [SMALL_STATE(3799)] = 177414, + [SMALL_STATE(3800)] = 177477, + [SMALL_STATE(3801)] = 177540, + [SMALL_STATE(3802)] = 177643, + [SMALL_STATE(3803)] = 177706, + [SMALL_STATE(3804)] = 177783, + [SMALL_STATE(3805)] = 177876, + [SMALL_STATE(3806)] = 177939, + [SMALL_STATE(3807)] = 178018, + [SMALL_STATE(3808)] = 178111, + [SMALL_STATE(3809)] = 178174, + [SMALL_STATE(3810)] = 178241, + [SMALL_STATE(3811)] = 178304, + [SMALL_STATE(3812)] = 178367, + [SMALL_STATE(3813)] = 178430, + [SMALL_STATE(3814)] = 178493, + [SMALL_STATE(3815)] = 178556, + [SMALL_STATE(3816)] = 178661, + [SMALL_STATE(3817)] = 178758, + [SMALL_STATE(3818)] = 178851, + [SMALL_STATE(3819)] = 178928, + [SMALL_STATE(3820)] = 179005, + [SMALL_STATE(3821)] = 179068, + [SMALL_STATE(3822)] = 179131, + [SMALL_STATE(3823)] = 179236, + [SMALL_STATE(3824)] = 179339, + [SMALL_STATE(3825)] = 179402, + [SMALL_STATE(3826)] = 179503, + [SMALL_STATE(3827)] = 179592, + [SMALL_STATE(3828)] = 179679, + [SMALL_STATE(3829)] = 179784, + [SMALL_STATE(3830)] = 179883, + [SMALL_STATE(3831)] = 179986, + [SMALL_STATE(3832)] = 180055, + [SMALL_STATE(3833)] = 180126, + [SMALL_STATE(3834)] = 180201, + [SMALL_STATE(3835)] = 180284, + [SMALL_STATE(3836)] = 180369, + [SMALL_STATE(3837)] = 180456, + [SMALL_STATE(3838)] = 180545, + [SMALL_STATE(3839)] = 180636, + [SMALL_STATE(3840)] = 180715, + [SMALL_STATE(3841)] = 180818, + [SMALL_STATE(3842)] = 180895, + [SMALL_STATE(3843)] = 180972, + [SMALL_STATE(3844)] = 181067, + [SMALL_STATE(3845)] = 181130, + [SMALL_STATE(3846)] = 181193, + [SMALL_STATE(3847)] = 181256, + [SMALL_STATE(3848)] = 181335, + [SMALL_STATE(3849)] = 181436, + [SMALL_STATE(3850)] = 181535, + [SMALL_STATE(3851)] = 181598, + [SMALL_STATE(3852)] = 181687, + [SMALL_STATE(3853)] = 181750, + [SMALL_STATE(3854)] = 181813, + [SMALL_STATE(3855)] = 181908, + [SMALL_STATE(3856)] = 181993, + [SMALL_STATE(3857)] = 182072, + [SMALL_STATE(3858)] = 182155, + [SMALL_STATE(3859)] = 182236, + [SMALL_STATE(3860)] = 182311, + [SMALL_STATE(3861)] = 182374, + [SMALL_STATE(3862)] = 182451, + [SMALL_STATE(3863)] = 182550, + [SMALL_STATE(3864)] = 182613, + [SMALL_STATE(3865)] = 182714, + [SMALL_STATE(3866)] = 182793, + [SMALL_STATE(3867)] = 182856, + [SMALL_STATE(3868)] = 182957, + [SMALL_STATE(3869)] = 183020, + [SMALL_STATE(3870)] = 183083, + [SMALL_STATE(3871)] = 183178, + [SMALL_STATE(3872)] = 183255, + [SMALL_STATE(3873)] = 183332, + [SMALL_STATE(3874)] = 183395, + [SMALL_STATE(3875)] = 183498, + [SMALL_STATE(3876)] = 183589, + [SMALL_STATE(3877)] = 183652, + [SMALL_STATE(3878)] = 183741, + [SMALL_STATE(3879)] = 183806, + [SMALL_STATE(3880)] = 183869, + [SMALL_STATE(3881)] = 183932, + [SMALL_STATE(3882)] = 184017, + [SMALL_STATE(3883)] = 184100, + [SMALL_STATE(3884)] = 184175, + [SMALL_STATE(3885)] = 184242, + [SMALL_STATE(3886)] = 184305, + [SMALL_STATE(3887)] = 184368, + [SMALL_STATE(3888)] = 184431, + [SMALL_STATE(3889)] = 184502, + [SMALL_STATE(3890)] = 184571, + [SMALL_STATE(3891)] = 184674, + [SMALL_STATE(3892)] = 184777, + [SMALL_STATE(3893)] = 184848, + [SMALL_STATE(3894)] = 184945, + [SMALL_STATE(3895)] = 185008, + [SMALL_STATE(3896)] = 185077, + [SMALL_STATE(3897)] = 185178, + [SMALL_STATE(3898)] = 185241, + [SMALL_STATE(3899)] = 185304, + [SMALL_STATE(3900)] = 185367, + [SMALL_STATE(3901)] = 185430, + [SMALL_STATE(3902)] = 185493, + [SMALL_STATE(3903)] = 185556, + [SMALL_STATE(3904)] = 185619, + [SMALL_STATE(3905)] = 185714, + [SMALL_STATE(3906)] = 185816, + [SMALL_STATE(3907)] = 185918, + [SMALL_STATE(3908)] = 186004, + [SMALL_STATE(3909)] = 186080, + [SMALL_STATE(3910)] = 186182, + [SMALL_STATE(3911)] = 186266, + [SMALL_STATE(3912)] = 186348, + [SMALL_STATE(3913)] = 186444, + [SMALL_STATE(3914)] = 186518, + [SMALL_STATE(3915)] = 186588, + [SMALL_STATE(3916)] = 186690, + [SMALL_STATE(3917)] = 186758, + [SMALL_STATE(3918)] = 186860, + [SMALL_STATE(3919)] = 186962, + [SMALL_STATE(3920)] = 187064, + [SMALL_STATE(3921)] = 187166, + [SMALL_STATE(3922)] = 187260, + [SMALL_STATE(3923)] = 187362, + [SMALL_STATE(3924)] = 187462, + [SMALL_STATE(3925)] = 187526, + [SMALL_STATE(3926)] = 187628, + [SMALL_STATE(3927)] = 187730, + [SMALL_STATE(3928)] = 187822, + [SMALL_STATE(3929)] = 187924, + [SMALL_STATE(3930)] = 188026, + [SMALL_STATE(3931)] = 188090, + [SMALL_STATE(3932)] = 188192, + [SMALL_STATE(3933)] = 188270, + [SMALL_STATE(3934)] = 188348, + [SMALL_STATE(3935)] = 188448, + [SMALL_STATE(3936)] = 188550, + [SMALL_STATE(3937)] = 188652, + [SMALL_STATE(3938)] = 188754, + [SMALL_STATE(3939)] = 188830, + [SMALL_STATE(3940)] = 188918, + [SMALL_STATE(3941)] = 189010, + [SMALL_STATE(3942)] = 189112, + [SMALL_STATE(3943)] = 189188, + [SMALL_STATE(3944)] = 189264, + [SMALL_STATE(3945)] = 189366, + [SMALL_STATE(3946)] = 189466, + [SMALL_STATE(3947)] = 189568, + [SMALL_STATE(3948)] = 189668, + [SMALL_STATE(3949)] = 189770, + [SMALL_STATE(3950)] = 189872, + [SMALL_STATE(3951)] = 189968, + [SMALL_STATE(3952)] = 190066, + [SMALL_STATE(3953)] = 190164, + [SMALL_STATE(3954)] = 190244, + [SMALL_STATE(3955)] = 190332, + [SMALL_STATE(3956)] = 190434, + [SMALL_STATE(3957)] = 190536, + [SMALL_STATE(3958)] = 190630, + [SMALL_STATE(3959)] = 190698, + [SMALL_STATE(3960)] = 190800, + [SMALL_STATE(3961)] = 190870, + [SMALL_STATE(3962)] = 190944, + [SMALL_STATE(3963)] = 191024, + [SMALL_STATE(3964)] = 191126, + [SMALL_STATE(3965)] = 191208, + [SMALL_STATE(3966)] = 191294, + [SMALL_STATE(3967)] = 191378, + [SMALL_STATE(3968)] = 191477, + [SMALL_STATE(3969)] = 191528, + [SMALL_STATE(3970)] = 191579, + [SMALL_STATE(3971)] = 191630, + [SMALL_STATE(3972)] = 191681, + [SMALL_STATE(3973)] = 191732, + [SMALL_STATE(3974)] = 191783, + [SMALL_STATE(3975)] = 191834, + [SMALL_STATE(3976)] = 191885, + [SMALL_STATE(3977)] = 191936, + [SMALL_STATE(3978)] = 191987, + [SMALL_STATE(3979)] = 192038, + [SMALL_STATE(3980)] = 192089, + [SMALL_STATE(3981)] = 192140, + [SMALL_STATE(3982)] = 192191, + [SMALL_STATE(3983)] = 192242, + [SMALL_STATE(3984)] = 192293, + [SMALL_STATE(3985)] = 192344, + [SMALL_STATE(3986)] = 192395, + [SMALL_STATE(3987)] = 192446, + [SMALL_STATE(3988)] = 192497, + [SMALL_STATE(3989)] = 192548, + [SMALL_STATE(3990)] = 192599, + [SMALL_STATE(3991)] = 192650, + [SMALL_STATE(3992)] = 192701, + [SMALL_STATE(3993)] = 192752, + [SMALL_STATE(3994)] = 192803, + [SMALL_STATE(3995)] = 192854, + [SMALL_STATE(3996)] = 192905, + [SMALL_STATE(3997)] = 192956, + [SMALL_STATE(3998)] = 193007, + [SMALL_STATE(3999)] = 193058, + [SMALL_STATE(4000)] = 193109, + [SMALL_STATE(4001)] = 193160, + [SMALL_STATE(4002)] = 193211, + [SMALL_STATE(4003)] = 193262, + [SMALL_STATE(4004)] = 193313, + [SMALL_STATE(4005)] = 193358, + [SMALL_STATE(4006)] = 193403, + [SMALL_STATE(4007)] = 193448, + [SMALL_STATE(4008)] = 193493, + [SMALL_STATE(4009)] = 193538, + [SMALL_STATE(4010)] = 193583, + [SMALL_STATE(4011)] = 193628, + [SMALL_STATE(4012)] = 193673, + [SMALL_STATE(4013)] = 193718, + [SMALL_STATE(4014)] = 193763, + [SMALL_STATE(4015)] = 193808, + [SMALL_STATE(4016)] = 193853, + [SMALL_STATE(4017)] = 193898, + [SMALL_STATE(4018)] = 193943, + [SMALL_STATE(4019)] = 193988, + [SMALL_STATE(4020)] = 194033, + [SMALL_STATE(4021)] = 194078, + [SMALL_STATE(4022)] = 194123, + [SMALL_STATE(4023)] = 194168, + [SMALL_STATE(4024)] = 194213, + [SMALL_STATE(4025)] = 194258, + [SMALL_STATE(4026)] = 194303, + [SMALL_STATE(4027)] = 194348, + [SMALL_STATE(4028)] = 194393, + [SMALL_STATE(4029)] = 194438, + [SMALL_STATE(4030)] = 194483, + [SMALL_STATE(4031)] = 194528, + [SMALL_STATE(4032)] = 194573, + [SMALL_STATE(4033)] = 194618, + [SMALL_STATE(4034)] = 194663, + [SMALL_STATE(4035)] = 194708, + [SMALL_STATE(4036)] = 194753, + [SMALL_STATE(4037)] = 194798, + [SMALL_STATE(4038)] = 194843, + [SMALL_STATE(4039)] = 194888, + [SMALL_STATE(4040)] = 194933, + [SMALL_STATE(4041)] = 194978, + [SMALL_STATE(4042)] = 195023, + [SMALL_STATE(4043)] = 195068, + [SMALL_STATE(4044)] = 195113, + [SMALL_STATE(4045)] = 195158, + [SMALL_STATE(4046)] = 195203, + [SMALL_STATE(4047)] = 195248, + [SMALL_STATE(4048)] = 195293, + [SMALL_STATE(4049)] = 195338, + [SMALL_STATE(4050)] = 195383, + [SMALL_STATE(4051)] = 195428, + [SMALL_STATE(4052)] = 195473, + [SMALL_STATE(4053)] = 195518, + [SMALL_STATE(4054)] = 195563, + [SMALL_STATE(4055)] = 195608, + [SMALL_STATE(4056)] = 195653, + [SMALL_STATE(4057)] = 195698, + [SMALL_STATE(4058)] = 195743, + [SMALL_STATE(4059)] = 195788, + [SMALL_STATE(4060)] = 195833, + [SMALL_STATE(4061)] = 195878, + [SMALL_STATE(4062)] = 195923, + [SMALL_STATE(4063)] = 195968, + [SMALL_STATE(4064)] = 196013, + [SMALL_STATE(4065)] = 196058, + [SMALL_STATE(4066)] = 196103, + [SMALL_STATE(4067)] = 196148, + [SMALL_STATE(4068)] = 196193, + [SMALL_STATE(4069)] = 196238, + [SMALL_STATE(4070)] = 196283, + [SMALL_STATE(4071)] = 196328, + [SMALL_STATE(4072)] = 196373, + [SMALL_STATE(4073)] = 196418, + [SMALL_STATE(4074)] = 196463, + [SMALL_STATE(4075)] = 196508, + [SMALL_STATE(4076)] = 196553, + [SMALL_STATE(4077)] = 196584, + [SMALL_STATE(4078)] = 196615, + [SMALL_STATE(4079)] = 196646, + [SMALL_STATE(4080)] = 196677, + [SMALL_STATE(4081)] = 196708, + [SMALL_STATE(4082)] = 196739, + [SMALL_STATE(4083)] = 196770, + [SMALL_STATE(4084)] = 196801, + [SMALL_STATE(4085)] = 196832, + [SMALL_STATE(4086)] = 196863, + [SMALL_STATE(4087)] = 196894, + [SMALL_STATE(4088)] = 196925, + [SMALL_STATE(4089)] = 196956, + [SMALL_STATE(4090)] = 196987, + [SMALL_STATE(4091)] = 197018, + [SMALL_STATE(4092)] = 197049, + [SMALL_STATE(4093)] = 197080, + [SMALL_STATE(4094)] = 197111, + [SMALL_STATE(4095)] = 197142, + [SMALL_STATE(4096)] = 197173, + [SMALL_STATE(4097)] = 197204, + [SMALL_STATE(4098)] = 197235, + [SMALL_STATE(4099)] = 197266, + [SMALL_STATE(4100)] = 197297, + [SMALL_STATE(4101)] = 197328, + [SMALL_STATE(4102)] = 197359, + [SMALL_STATE(4103)] = 197390, + [SMALL_STATE(4104)] = 197421, + [SMALL_STATE(4105)] = 197452, + [SMALL_STATE(4106)] = 197483, + [SMALL_STATE(4107)] = 197514, + [SMALL_STATE(4108)] = 197545, + [SMALL_STATE(4109)] = 197576, + [SMALL_STATE(4110)] = 197607, + [SMALL_STATE(4111)] = 197638, + [SMALL_STATE(4112)] = 197669, + [SMALL_STATE(4113)] = 197700, + [SMALL_STATE(4114)] = 197731, + [SMALL_STATE(4115)] = 197762, + [SMALL_STATE(4116)] = 197793, + [SMALL_STATE(4117)] = 197824, + [SMALL_STATE(4118)] = 197855, + [SMALL_STATE(4119)] = 197886, + [SMALL_STATE(4120)] = 197917, + [SMALL_STATE(4121)] = 197948, + [SMALL_STATE(4122)] = 197979, + [SMALL_STATE(4123)] = 198010, + [SMALL_STATE(4124)] = 198041, + [SMALL_STATE(4125)] = 198072, + [SMALL_STATE(4126)] = 198103, + [SMALL_STATE(4127)] = 198134, + [SMALL_STATE(4128)] = 198165, + [SMALL_STATE(4129)] = 198196, + [SMALL_STATE(4130)] = 198227, + [SMALL_STATE(4131)] = 198258, + [SMALL_STATE(4132)] = 198289, + [SMALL_STATE(4133)] = 198320, + [SMALL_STATE(4134)] = 198351, + [SMALL_STATE(4135)] = 198382, + [SMALL_STATE(4136)] = 198413, + [SMALL_STATE(4137)] = 198444, + [SMALL_STATE(4138)] = 198474, + [SMALL_STATE(4139)] = 198504, + [SMALL_STATE(4140)] = 198534, + [SMALL_STATE(4141)] = 198564, + [SMALL_STATE(4142)] = 198594, + [SMALL_STATE(4143)] = 198624, + [SMALL_STATE(4144)] = 198654, + [SMALL_STATE(4145)] = 198684, + [SMALL_STATE(4146)] = 198714, + [SMALL_STATE(4147)] = 198744, + [SMALL_STATE(4148)] = 198774, + [SMALL_STATE(4149)] = 198804, + [SMALL_STATE(4150)] = 198834, + [SMALL_STATE(4151)] = 198864, + [SMALL_STATE(4152)] = 198894, + [SMALL_STATE(4153)] = 198924, + [SMALL_STATE(4154)] = 198954, + [SMALL_STATE(4155)] = 198984, + [SMALL_STATE(4156)] = 199014, + [SMALL_STATE(4157)] = 199044, + [SMALL_STATE(4158)] = 199074, + [SMALL_STATE(4159)] = 199104, + [SMALL_STATE(4160)] = 199134, + [SMALL_STATE(4161)] = 199164, + [SMALL_STATE(4162)] = 199194, + [SMALL_STATE(4163)] = 199224, + [SMALL_STATE(4164)] = 199254, + [SMALL_STATE(4165)] = 199284, + [SMALL_STATE(4166)] = 199314, + [SMALL_STATE(4167)] = 199337, + [SMALL_STATE(4168)] = 199360, + [SMALL_STATE(4169)] = 199383, + [SMALL_STATE(4170)] = 199406, + [SMALL_STATE(4171)] = 199429, + [SMALL_STATE(4172)] = 199452, + [SMALL_STATE(4173)] = 199475, + [SMALL_STATE(4174)] = 199498, + [SMALL_STATE(4175)] = 199521, + [SMALL_STATE(4176)] = 199544, + [SMALL_STATE(4177)] = 199569, + [SMALL_STATE(4178)] = 199592, + [SMALL_STATE(4179)] = 199615, + [SMALL_STATE(4180)] = 199638, + [SMALL_STATE(4181)] = 199661, + [SMALL_STATE(4182)] = 199684, + [SMALL_STATE(4183)] = 199707, + [SMALL_STATE(4184)] = 199730, + [SMALL_STATE(4185)] = 199753, + [SMALL_STATE(4186)] = 199776, + [SMALL_STATE(4187)] = 199799, + [SMALL_STATE(4188)] = 199822, + [SMALL_STATE(4189)] = 199845, + [SMALL_STATE(4190)] = 199868, + [SMALL_STATE(4191)] = 199891, + [SMALL_STATE(4192)] = 199914, + [SMALL_STATE(4193)] = 199937, + [SMALL_STATE(4194)] = 199960, + [SMALL_STATE(4195)] = 199983, + [SMALL_STATE(4196)] = 200003, + [SMALL_STATE(4197)] = 200023, + [SMALL_STATE(4198)] = 200041, + [SMALL_STATE(4199)] = 200061, + [SMALL_STATE(4200)] = 200081, + [SMALL_STATE(4201)] = 200106, + [SMALL_STATE(4202)] = 200131, + [SMALL_STATE(4203)] = 200156, + [SMALL_STATE(4204)] = 200181, + [SMALL_STATE(4205)] = 200206, + [SMALL_STATE(4206)] = 200231, + [SMALL_STATE(4207)] = 200256, + [SMALL_STATE(4208)] = 200281, + [SMALL_STATE(4209)] = 200306, + [SMALL_STATE(4210)] = 200331, + [SMALL_STATE(4211)] = 200356, + [SMALL_STATE(4212)] = 200381, + [SMALL_STATE(4213)] = 200406, + [SMALL_STATE(4214)] = 200431, + [SMALL_STATE(4215)] = 200456, + [SMALL_STATE(4216)] = 200481, + [SMALL_STATE(4217)] = 200506, + [SMALL_STATE(4218)] = 200531, + [SMALL_STATE(4219)] = 200556, + [SMALL_STATE(4220)] = 200581, + [SMALL_STATE(4221)] = 200606, + [SMALL_STATE(4222)] = 200631, + [SMALL_STATE(4223)] = 200656, + [SMALL_STATE(4224)] = 200681, + [SMALL_STATE(4225)] = 200706, + [SMALL_STATE(4226)] = 200731, + [SMALL_STATE(4227)] = 200756, + [SMALL_STATE(4228)] = 200781, + [SMALL_STATE(4229)] = 200806, + [SMALL_STATE(4230)] = 200831, + [SMALL_STATE(4231)] = 200856, + [SMALL_STATE(4232)] = 200881, + [SMALL_STATE(4233)] = 200906, + [SMALL_STATE(4234)] = 200931, + [SMALL_STATE(4235)] = 200956, + [SMALL_STATE(4236)] = 200981, + [SMALL_STATE(4237)] = 201006, + [SMALL_STATE(4238)] = 201031, + [SMALL_STATE(4239)] = 201056, + [SMALL_STATE(4240)] = 201081, + [SMALL_STATE(4241)] = 201106, + [SMALL_STATE(4242)] = 201131, + [SMALL_STATE(4243)] = 201156, + [SMALL_STATE(4244)] = 201181, + [SMALL_STATE(4245)] = 201206, + [SMALL_STATE(4246)] = 201231, + [SMALL_STATE(4247)] = 201256, + [SMALL_STATE(4248)] = 201281, + [SMALL_STATE(4249)] = 201306, + [SMALL_STATE(4250)] = 201331, + [SMALL_STATE(4251)] = 201356, + [SMALL_STATE(4252)] = 201381, + [SMALL_STATE(4253)] = 201406, + [SMALL_STATE(4254)] = 201431, + [SMALL_STATE(4255)] = 201456, + [SMALL_STATE(4256)] = 201481, + [SMALL_STATE(4257)] = 201506, + [SMALL_STATE(4258)] = 201531, + [SMALL_STATE(4259)] = 201556, + [SMALL_STATE(4260)] = 201581, + [SMALL_STATE(4261)] = 201606, + [SMALL_STATE(4262)] = 201631, + [SMALL_STATE(4263)] = 201656, + [SMALL_STATE(4264)] = 201681, + [SMALL_STATE(4265)] = 201706, + [SMALL_STATE(4266)] = 201731, + [SMALL_STATE(4267)] = 201756, + [SMALL_STATE(4268)] = 201781, + [SMALL_STATE(4269)] = 201806, + [SMALL_STATE(4270)] = 201831, + [SMALL_STATE(4271)] = 201856, + [SMALL_STATE(4272)] = 201881, + [SMALL_STATE(4273)] = 201906, + [SMALL_STATE(4274)] = 201931, + [SMALL_STATE(4275)] = 201956, + [SMALL_STATE(4276)] = 201981, + [SMALL_STATE(4277)] = 202006, + [SMALL_STATE(4278)] = 202031, + [SMALL_STATE(4279)] = 202056, + [SMALL_STATE(4280)] = 202081, + [SMALL_STATE(4281)] = 202106, + [SMALL_STATE(4282)] = 202131, + [SMALL_STATE(4283)] = 202156, + [SMALL_STATE(4284)] = 202181, + [SMALL_STATE(4285)] = 202206, + [SMALL_STATE(4286)] = 202231, + [SMALL_STATE(4287)] = 202256, + [SMALL_STATE(4288)] = 202281, + [SMALL_STATE(4289)] = 202306, + [SMALL_STATE(4290)] = 202331, + [SMALL_STATE(4291)] = 202356, + [SMALL_STATE(4292)] = 202381, + [SMALL_STATE(4293)] = 202406, + [SMALL_STATE(4294)] = 202431, + [SMALL_STATE(4295)] = 202456, + [SMALL_STATE(4296)] = 202481, + [SMALL_STATE(4297)] = 202506, + [SMALL_STATE(4298)] = 202531, + [SMALL_STATE(4299)] = 202556, + [SMALL_STATE(4300)] = 202581, + [SMALL_STATE(4301)] = 202606, + [SMALL_STATE(4302)] = 202631, + [SMALL_STATE(4303)] = 202656, + [SMALL_STATE(4304)] = 202681, + [SMALL_STATE(4305)] = 202706, + [SMALL_STATE(4306)] = 202731, + [SMALL_STATE(4307)] = 202756, + [SMALL_STATE(4308)] = 202781, + [SMALL_STATE(4309)] = 202806, + [SMALL_STATE(4310)] = 202831, + [SMALL_STATE(4311)] = 202856, + [SMALL_STATE(4312)] = 202881, + [SMALL_STATE(4313)] = 202906, + [SMALL_STATE(4314)] = 202931, + [SMALL_STATE(4315)] = 202956, + [SMALL_STATE(4316)] = 202981, + [SMALL_STATE(4317)] = 203006, + [SMALL_STATE(4318)] = 203031, + [SMALL_STATE(4319)] = 203056, + [SMALL_STATE(4320)] = 203081, + [SMALL_STATE(4321)] = 203106, + [SMALL_STATE(4322)] = 203131, + [SMALL_STATE(4323)] = 203156, + [SMALL_STATE(4324)] = 203181, + [SMALL_STATE(4325)] = 203206, + [SMALL_STATE(4326)] = 203231, + [SMALL_STATE(4327)] = 203256, + [SMALL_STATE(4328)] = 203281, + [SMALL_STATE(4329)] = 203306, + [SMALL_STATE(4330)] = 203331, + [SMALL_STATE(4331)] = 203356, + [SMALL_STATE(4332)] = 203381, + [SMALL_STATE(4333)] = 203406, + [SMALL_STATE(4334)] = 203431, + [SMALL_STATE(4335)] = 203456, + [SMALL_STATE(4336)] = 203481, + [SMALL_STATE(4337)] = 203506, + [SMALL_STATE(4338)] = 203531, + [SMALL_STATE(4339)] = 203556, + [SMALL_STATE(4340)] = 203581, + [SMALL_STATE(4341)] = 203606, + [SMALL_STATE(4342)] = 203631, + [SMALL_STATE(4343)] = 203656, + [SMALL_STATE(4344)] = 203681, + [SMALL_STATE(4345)] = 203706, + [SMALL_STATE(4346)] = 203731, + [SMALL_STATE(4347)] = 203756, + [SMALL_STATE(4348)] = 203781, + [SMALL_STATE(4349)] = 203806, + [SMALL_STATE(4350)] = 203831, + [SMALL_STATE(4351)] = 203856, + [SMALL_STATE(4352)] = 203881, + [SMALL_STATE(4353)] = 203906, + [SMALL_STATE(4354)] = 203931, + [SMALL_STATE(4355)] = 203956, + [SMALL_STATE(4356)] = 203981, + [SMALL_STATE(4357)] = 204006, + [SMALL_STATE(4358)] = 204031, + [SMALL_STATE(4359)] = 204056, + [SMALL_STATE(4360)] = 204081, + [SMALL_STATE(4361)] = 204106, + [SMALL_STATE(4362)] = 204131, + [SMALL_STATE(4363)] = 204156, + [SMALL_STATE(4364)] = 204181, + [SMALL_STATE(4365)] = 204206, + [SMALL_STATE(4366)] = 204231, + [SMALL_STATE(4367)] = 204256, + [SMALL_STATE(4368)] = 204281, + [SMALL_STATE(4369)] = 204306, + [SMALL_STATE(4370)] = 204331, + [SMALL_STATE(4371)] = 204356, + [SMALL_STATE(4372)] = 204381, + [SMALL_STATE(4373)] = 204406, + [SMALL_STATE(4374)] = 204431, + [SMALL_STATE(4375)] = 204456, + [SMALL_STATE(4376)] = 204481, + [SMALL_STATE(4377)] = 204506, + [SMALL_STATE(4378)] = 204531, + [SMALL_STATE(4379)] = 204556, + [SMALL_STATE(4380)] = 204581, + [SMALL_STATE(4381)] = 204606, + [SMALL_STATE(4382)] = 204631, + [SMALL_STATE(4383)] = 204656, + [SMALL_STATE(4384)] = 204681, + [SMALL_STATE(4385)] = 204706, + [SMALL_STATE(4386)] = 204731, + [SMALL_STATE(4387)] = 204756, + [SMALL_STATE(4388)] = 204781, + [SMALL_STATE(4389)] = 204806, + [SMALL_STATE(4390)] = 204831, + [SMALL_STATE(4391)] = 204856, + [SMALL_STATE(4392)] = 204881, + [SMALL_STATE(4393)] = 204906, + [SMALL_STATE(4394)] = 204931, + [SMALL_STATE(4395)] = 204956, + [SMALL_STATE(4396)] = 204981, + [SMALL_STATE(4397)] = 205006, + [SMALL_STATE(4398)] = 205031, + [SMALL_STATE(4399)] = 205056, + [SMALL_STATE(4400)] = 205081, + [SMALL_STATE(4401)] = 205106, + [SMALL_STATE(4402)] = 205131, + [SMALL_STATE(4403)] = 205156, + [SMALL_STATE(4404)] = 205181, + [SMALL_STATE(4405)] = 205206, + [SMALL_STATE(4406)] = 205231, + [SMALL_STATE(4407)] = 205256, + [SMALL_STATE(4408)] = 205281, + [SMALL_STATE(4409)] = 205306, + [SMALL_STATE(4410)] = 205331, + [SMALL_STATE(4411)] = 205356, + [SMALL_STATE(4412)] = 205381, + [SMALL_STATE(4413)] = 205406, + [SMALL_STATE(4414)] = 205431, + [SMALL_STATE(4415)] = 205456, + [SMALL_STATE(4416)] = 205481, + [SMALL_STATE(4417)] = 205506, + [SMALL_STATE(4418)] = 205531, + [SMALL_STATE(4419)] = 205556, + [SMALL_STATE(4420)] = 205581, + [SMALL_STATE(4421)] = 205606, + [SMALL_STATE(4422)] = 205631, + [SMALL_STATE(4423)] = 205656, + [SMALL_STATE(4424)] = 205681, + [SMALL_STATE(4425)] = 205706, + [SMALL_STATE(4426)] = 205731, + [SMALL_STATE(4427)] = 205756, + [SMALL_STATE(4428)] = 205781, + [SMALL_STATE(4429)] = 205806, + [SMALL_STATE(4430)] = 205831, + [SMALL_STATE(4431)] = 205856, + [SMALL_STATE(4432)] = 205881, + [SMALL_STATE(4433)] = 205906, + [SMALL_STATE(4434)] = 205931, + [SMALL_STATE(4435)] = 205956, + [SMALL_STATE(4436)] = 205981, + [SMALL_STATE(4437)] = 206006, + [SMALL_STATE(4438)] = 206031, + [SMALL_STATE(4439)] = 206056, + [SMALL_STATE(4440)] = 206081, + [SMALL_STATE(4441)] = 206106, + [SMALL_STATE(4442)] = 206131, + [SMALL_STATE(4443)] = 206156, + [SMALL_STATE(4444)] = 206181, + [SMALL_STATE(4445)] = 206206, + [SMALL_STATE(4446)] = 206231, + [SMALL_STATE(4447)] = 206256, + [SMALL_STATE(4448)] = 206281, + [SMALL_STATE(4449)] = 206306, + [SMALL_STATE(4450)] = 206331, + [SMALL_STATE(4451)] = 206356, + [SMALL_STATE(4452)] = 206381, + [SMALL_STATE(4453)] = 206406, + [SMALL_STATE(4454)] = 206431, + [SMALL_STATE(4455)] = 206456, + [SMALL_STATE(4456)] = 206481, + [SMALL_STATE(4457)] = 206506, + [SMALL_STATE(4458)] = 206531, + [SMALL_STATE(4459)] = 206556, + [SMALL_STATE(4460)] = 206581, + [SMALL_STATE(4461)] = 206606, + [SMALL_STATE(4462)] = 206631, + [SMALL_STATE(4463)] = 206656, + [SMALL_STATE(4464)] = 206681, + [SMALL_STATE(4465)] = 206706, + [SMALL_STATE(4466)] = 206731, + [SMALL_STATE(4467)] = 206756, + [SMALL_STATE(4468)] = 206781, + [SMALL_STATE(4469)] = 206806, + [SMALL_STATE(4470)] = 206831, + [SMALL_STATE(4471)] = 206856, + [SMALL_STATE(4472)] = 206881, + [SMALL_STATE(4473)] = 206906, + [SMALL_STATE(4474)] = 206931, + [SMALL_STATE(4475)] = 206956, + [SMALL_STATE(4476)] = 206981, + [SMALL_STATE(4477)] = 207006, + [SMALL_STATE(4478)] = 207031, + [SMALL_STATE(4479)] = 207056, + [SMALL_STATE(4480)] = 207081, + [SMALL_STATE(4481)] = 207106, + [SMALL_STATE(4482)] = 207131, + [SMALL_STATE(4483)] = 207156, + [SMALL_STATE(4484)] = 207181, + [SMALL_STATE(4485)] = 207206, + [SMALL_STATE(4486)] = 207231, + [SMALL_STATE(4487)] = 207256, + [SMALL_STATE(4488)] = 207281, + [SMALL_STATE(4489)] = 207306, + [SMALL_STATE(4490)] = 207331, + [SMALL_STATE(4491)] = 207356, + [SMALL_STATE(4492)] = 207381, + [SMALL_STATE(4493)] = 207406, + [SMALL_STATE(4494)] = 207431, + [SMALL_STATE(4495)] = 207456, + [SMALL_STATE(4496)] = 207481, + [SMALL_STATE(4497)] = 207506, + [SMALL_STATE(4498)] = 207531, + [SMALL_STATE(4499)] = 207556, + [SMALL_STATE(4500)] = 207581, + [SMALL_STATE(4501)] = 207606, + [SMALL_STATE(4502)] = 207631, + [SMALL_STATE(4503)] = 207656, + [SMALL_STATE(4504)] = 207681, + [SMALL_STATE(4505)] = 207706, + [SMALL_STATE(4506)] = 207731, + [SMALL_STATE(4507)] = 207756, + [SMALL_STATE(4508)] = 207781, + [SMALL_STATE(4509)] = 207806, + [SMALL_STATE(4510)] = 207831, + [SMALL_STATE(4511)] = 207856, + [SMALL_STATE(4512)] = 207881, + [SMALL_STATE(4513)] = 207906, + [SMALL_STATE(4514)] = 207931, + [SMALL_STATE(4515)] = 207956, + [SMALL_STATE(4516)] = 207981, + [SMALL_STATE(4517)] = 208006, + [SMALL_STATE(4518)] = 208031, + [SMALL_STATE(4519)] = 208056, + [SMALL_STATE(4520)] = 208081, + [SMALL_STATE(4521)] = 208106, + [SMALL_STATE(4522)] = 208131, + [SMALL_STATE(4523)] = 208156, + [SMALL_STATE(4524)] = 208181, + [SMALL_STATE(4525)] = 208206, + [SMALL_STATE(4526)] = 208231, + [SMALL_STATE(4527)] = 208256, + [SMALL_STATE(4528)] = 208281, + [SMALL_STATE(4529)] = 208306, + [SMALL_STATE(4530)] = 208331, + [SMALL_STATE(4531)] = 208356, + [SMALL_STATE(4532)] = 208381, + [SMALL_STATE(4533)] = 208406, + [SMALL_STATE(4534)] = 208431, + [SMALL_STATE(4535)] = 208456, + [SMALL_STATE(4536)] = 208481, + [SMALL_STATE(4537)] = 208506, + [SMALL_STATE(4538)] = 208531, + [SMALL_STATE(4539)] = 208556, + [SMALL_STATE(4540)] = 208581, + [SMALL_STATE(4541)] = 208606, + [SMALL_STATE(4542)] = 208631, + [SMALL_STATE(4543)] = 208656, + [SMALL_STATE(4544)] = 208681, + [SMALL_STATE(4545)] = 208706, + [SMALL_STATE(4546)] = 208731, + [SMALL_STATE(4547)] = 208756, + [SMALL_STATE(4548)] = 208781, + [SMALL_STATE(4549)] = 208806, + [SMALL_STATE(4550)] = 208831, + [SMALL_STATE(4551)] = 208856, + [SMALL_STATE(4552)] = 208881, + [SMALL_STATE(4553)] = 208906, + [SMALL_STATE(4554)] = 208931, + [SMALL_STATE(4555)] = 208956, + [SMALL_STATE(4556)] = 208981, + [SMALL_STATE(4557)] = 209006, + [SMALL_STATE(4558)] = 209031, + [SMALL_STATE(4559)] = 209056, + [SMALL_STATE(4560)] = 209081, + [SMALL_STATE(4561)] = 209106, + [SMALL_STATE(4562)] = 209131, + [SMALL_STATE(4563)] = 209156, + [SMALL_STATE(4564)] = 209181, + [SMALL_STATE(4565)] = 209206, + [SMALL_STATE(4566)] = 209231, + [SMALL_STATE(4567)] = 209256, + [SMALL_STATE(4568)] = 209281, + [SMALL_STATE(4569)] = 209306, + [SMALL_STATE(4570)] = 209331, + [SMALL_STATE(4571)] = 209356, + [SMALL_STATE(4572)] = 209381, + [SMALL_STATE(4573)] = 209406, + [SMALL_STATE(4574)] = 209431, + [SMALL_STATE(4575)] = 209456, + [SMALL_STATE(4576)] = 209481, + [SMALL_STATE(4577)] = 209506, + [SMALL_STATE(4578)] = 209531, + [SMALL_STATE(4579)] = 209556, + [SMALL_STATE(4580)] = 209581, + [SMALL_STATE(4581)] = 209606, + [SMALL_STATE(4582)] = 209631, + [SMALL_STATE(4583)] = 209656, + [SMALL_STATE(4584)] = 209681, + [SMALL_STATE(4585)] = 209706, + [SMALL_STATE(4586)] = 209731, + [SMALL_STATE(4587)] = 209756, + [SMALL_STATE(4588)] = 209781, + [SMALL_STATE(4589)] = 209806, + [SMALL_STATE(4590)] = 209831, + [SMALL_STATE(4591)] = 209856, + [SMALL_STATE(4592)] = 209881, + [SMALL_STATE(4593)] = 209906, + [SMALL_STATE(4594)] = 209931, + [SMALL_STATE(4595)] = 209956, + [SMALL_STATE(4596)] = 209981, + [SMALL_STATE(4597)] = 210006, + [SMALL_STATE(4598)] = 210031, + [SMALL_STATE(4599)] = 210056, + [SMALL_STATE(4600)] = 210081, + [SMALL_STATE(4601)] = 210106, + [SMALL_STATE(4602)] = 210131, + [SMALL_STATE(4603)] = 210156, + [SMALL_STATE(4604)] = 210181, + [SMALL_STATE(4605)] = 210206, + [SMALL_STATE(4606)] = 210231, + [SMALL_STATE(4607)] = 210256, + [SMALL_STATE(4608)] = 210281, + [SMALL_STATE(4609)] = 210306, + [SMALL_STATE(4610)] = 210331, + [SMALL_STATE(4611)] = 210356, + [SMALL_STATE(4612)] = 210381, + [SMALL_STATE(4613)] = 210406, + [SMALL_STATE(4614)] = 210431, + [SMALL_STATE(4615)] = 210456, + [SMALL_STATE(4616)] = 210481, + [SMALL_STATE(4617)] = 210506, + [SMALL_STATE(4618)] = 210531, + [SMALL_STATE(4619)] = 210556, + [SMALL_STATE(4620)] = 210581, + [SMALL_STATE(4621)] = 210606, + [SMALL_STATE(4622)] = 210631, + [SMALL_STATE(4623)] = 210656, + [SMALL_STATE(4624)] = 210681, + [SMALL_STATE(4625)] = 210706, + [SMALL_STATE(4626)] = 210731, + [SMALL_STATE(4627)] = 210756, + [SMALL_STATE(4628)] = 210781, + [SMALL_STATE(4629)] = 210806, + [SMALL_STATE(4630)] = 210831, + [SMALL_STATE(4631)] = 210856, + [SMALL_STATE(4632)] = 210881, + [SMALL_STATE(4633)] = 210906, + [SMALL_STATE(4634)] = 210931, + [SMALL_STATE(4635)] = 210956, + [SMALL_STATE(4636)] = 210981, + [SMALL_STATE(4637)] = 211006, + [SMALL_STATE(4638)] = 211031, + [SMALL_STATE(4639)] = 211056, + [SMALL_STATE(4640)] = 211081, + [SMALL_STATE(4641)] = 211106, + [SMALL_STATE(4642)] = 211131, + [SMALL_STATE(4643)] = 211156, + [SMALL_STATE(4644)] = 211181, + [SMALL_STATE(4645)] = 211206, + [SMALL_STATE(4646)] = 211231, + [SMALL_STATE(4647)] = 211256, + [SMALL_STATE(4648)] = 211281, + [SMALL_STATE(4649)] = 211306, + [SMALL_STATE(4650)] = 211331, + [SMALL_STATE(4651)] = 211356, + [SMALL_STATE(4652)] = 211381, + [SMALL_STATE(4653)] = 211406, + [SMALL_STATE(4654)] = 211431, + [SMALL_STATE(4655)] = 211456, + [SMALL_STATE(4656)] = 211481, + [SMALL_STATE(4657)] = 211506, + [SMALL_STATE(4658)] = 211531, + [SMALL_STATE(4659)] = 211556, + [SMALL_STATE(4660)] = 211581, + [SMALL_STATE(4661)] = 211606, + [SMALL_STATE(4662)] = 211631, + [SMALL_STATE(4663)] = 211656, + [SMALL_STATE(4664)] = 211681, + [SMALL_STATE(4665)] = 211706, + [SMALL_STATE(4666)] = 211731, + [SMALL_STATE(4667)] = 211756, + [SMALL_STATE(4668)] = 211781, + [SMALL_STATE(4669)] = 211806, + [SMALL_STATE(4670)] = 211831, + [SMALL_STATE(4671)] = 211856, + [SMALL_STATE(4672)] = 211881, + [SMALL_STATE(4673)] = 211906, + [SMALL_STATE(4674)] = 211931, + [SMALL_STATE(4675)] = 211956, + [SMALL_STATE(4676)] = 211981, + [SMALL_STATE(4677)] = 212006, + [SMALL_STATE(4678)] = 212031, + [SMALL_STATE(4679)] = 212056, + [SMALL_STATE(4680)] = 212081, + [SMALL_STATE(4681)] = 212106, + [SMALL_STATE(4682)] = 212131, + [SMALL_STATE(4683)] = 212156, + [SMALL_STATE(4684)] = 212181, + [SMALL_STATE(4685)] = 212206, + [SMALL_STATE(4686)] = 212231, + [SMALL_STATE(4687)] = 212256, + [SMALL_STATE(4688)] = 212281, + [SMALL_STATE(4689)] = 212306, + [SMALL_STATE(4690)] = 212331, + [SMALL_STATE(4691)] = 212350, + [SMALL_STATE(4692)] = 212375, + [SMALL_STATE(4693)] = 212400, + [SMALL_STATE(4694)] = 212425, + [SMALL_STATE(4695)] = 212450, + [SMALL_STATE(4696)] = 212475, + [SMALL_STATE(4697)] = 212500, + [SMALL_STATE(4698)] = 212525, + [SMALL_STATE(4699)] = 212550, + [SMALL_STATE(4700)] = 212575, + [SMALL_STATE(4701)] = 212600, + [SMALL_STATE(4702)] = 212625, + [SMALL_STATE(4703)] = 212650, + [SMALL_STATE(4704)] = 212675, + [SMALL_STATE(4705)] = 212700, + [SMALL_STATE(4706)] = 212725, + [SMALL_STATE(4707)] = 212750, + [SMALL_STATE(4708)] = 212775, + [SMALL_STATE(4709)] = 212800, + [SMALL_STATE(4710)] = 212825, + [SMALL_STATE(4711)] = 212850, + [SMALL_STATE(4712)] = 212875, + [SMALL_STATE(4713)] = 212900, + [SMALL_STATE(4714)] = 212925, + [SMALL_STATE(4715)] = 212950, + [SMALL_STATE(4716)] = 212975, + [SMALL_STATE(4717)] = 213000, + [SMALL_STATE(4718)] = 213025, + [SMALL_STATE(4719)] = 213050, + [SMALL_STATE(4720)] = 213075, + [SMALL_STATE(4721)] = 213100, + [SMALL_STATE(4722)] = 213125, + [SMALL_STATE(4723)] = 213150, + [SMALL_STATE(4724)] = 213175, + [SMALL_STATE(4725)] = 213200, + [SMALL_STATE(4726)] = 213225, + [SMALL_STATE(4727)] = 213250, + [SMALL_STATE(4728)] = 213275, + [SMALL_STATE(4729)] = 213300, + [SMALL_STATE(4730)] = 213325, + [SMALL_STATE(4731)] = 213350, + [SMALL_STATE(4732)] = 213375, + [SMALL_STATE(4733)] = 213400, + [SMALL_STATE(4734)] = 213425, + [SMALL_STATE(4735)] = 213450, + [SMALL_STATE(4736)] = 213476, + [SMALL_STATE(4737)] = 213502, + [SMALL_STATE(4738)] = 213528, + [SMALL_STATE(4739)] = 213554, + [SMALL_STATE(4740)] = 213574, + [SMALL_STATE(4741)] = 213600, + [SMALL_STATE(4742)] = 213620, + [SMALL_STATE(4743)] = 213646, + [SMALL_STATE(4744)] = 213672, + [SMALL_STATE(4745)] = 213698, + [SMALL_STATE(4746)] = 213724, + [SMALL_STATE(4747)] = 213750, + [SMALL_STATE(4748)] = 213776, + [SMALL_STATE(4749)] = 213802, + [SMALL_STATE(4750)] = 213828, + [SMALL_STATE(4751)] = 213854, + [SMALL_STATE(4752)] = 213880, + [SMALL_STATE(4753)] = 213906, + [SMALL_STATE(4754)] = 213932, + [SMALL_STATE(4755)] = 213958, + [SMALL_STATE(4756)] = 213978, + [SMALL_STATE(4757)] = 214004, + [SMALL_STATE(4758)] = 214030, + [SMALL_STATE(4759)] = 214056, + [SMALL_STATE(4760)] = 214082, + [SMALL_STATE(4761)] = 214102, + [SMALL_STATE(4762)] = 214128, + [SMALL_STATE(4763)] = 214154, + [SMALL_STATE(4764)] = 214180, + [SMALL_STATE(4765)] = 214200, + [SMALL_STATE(4766)] = 214226, + [SMALL_STATE(4767)] = 214252, + [SMALL_STATE(4768)] = 214278, + [SMALL_STATE(4769)] = 214304, + [SMALL_STATE(4770)] = 214330, + [SMALL_STATE(4771)] = 214356, + [SMALL_STATE(4772)] = 214382, + [SMALL_STATE(4773)] = 214408, + [SMALL_STATE(4774)] = 214434, + [SMALL_STATE(4775)] = 214460, + [SMALL_STATE(4776)] = 214486, + [SMALL_STATE(4777)] = 214512, + [SMALL_STATE(4778)] = 214538, + [SMALL_STATE(4779)] = 214564, + [SMALL_STATE(4780)] = 214590, + [SMALL_STATE(4781)] = 214616, + [SMALL_STATE(4782)] = 214642, + [SMALL_STATE(4783)] = 214668, + [SMALL_STATE(4784)] = 214694, + [SMALL_STATE(4785)] = 214720, + [SMALL_STATE(4786)] = 214746, + [SMALL_STATE(4787)] = 214772, + [SMALL_STATE(4788)] = 214798, + [SMALL_STATE(4789)] = 214824, + [SMALL_STATE(4790)] = 214850, + [SMALL_STATE(4791)] = 214876, + [SMALL_STATE(4792)] = 214902, + [SMALL_STATE(4793)] = 214928, + [SMALL_STATE(4794)] = 214954, + [SMALL_STATE(4795)] = 214974, + [SMALL_STATE(4796)] = 215000, + [SMALL_STATE(4797)] = 215020, + [SMALL_STATE(4798)] = 215046, + [SMALL_STATE(4799)] = 215066, + [SMALL_STATE(4800)] = 215092, + [SMALL_STATE(4801)] = 215118, + [SMALL_STATE(4802)] = 215144, + [SMALL_STATE(4803)] = 215170, + [SMALL_STATE(4804)] = 215196, + [SMALL_STATE(4805)] = 215222, + [SMALL_STATE(4806)] = 215248, + [SMALL_STATE(4807)] = 215274, + [SMALL_STATE(4808)] = 215300, + [SMALL_STATE(4809)] = 215326, + [SMALL_STATE(4810)] = 215352, + [SMALL_STATE(4811)] = 215378, + [SMALL_STATE(4812)] = 215404, + [SMALL_STATE(4813)] = 215430, + [SMALL_STATE(4814)] = 215456, + [SMALL_STATE(4815)] = 215482, + [SMALL_STATE(4816)] = 215508, + [SMALL_STATE(4817)] = 215534, + [SMALL_STATE(4818)] = 215560, + [SMALL_STATE(4819)] = 215586, + [SMALL_STATE(4820)] = 215612, + [SMALL_STATE(4821)] = 215638, + [SMALL_STATE(4822)] = 215664, + [SMALL_STATE(4823)] = 215690, + [SMALL_STATE(4824)] = 215716, + [SMALL_STATE(4825)] = 215742, + [SMALL_STATE(4826)] = 215768, + [SMALL_STATE(4827)] = 215794, + [SMALL_STATE(4828)] = 215820, + [SMALL_STATE(4829)] = 215846, + [SMALL_STATE(4830)] = 215872, + [SMALL_STATE(4831)] = 215898, + [SMALL_STATE(4832)] = 215924, + [SMALL_STATE(4833)] = 215950, + [SMALL_STATE(4834)] = 215976, + [SMALL_STATE(4835)] = 216002, + [SMALL_STATE(4836)] = 216028, + [SMALL_STATE(4837)] = 216054, + [SMALL_STATE(4838)] = 216074, + [SMALL_STATE(4839)] = 216100, + [SMALL_STATE(4840)] = 216126, + [SMALL_STATE(4841)] = 216152, + [SMALL_STATE(4842)] = 216178, + [SMALL_STATE(4843)] = 216204, + [SMALL_STATE(4844)] = 216224, + [SMALL_STATE(4845)] = 216250, + [SMALL_STATE(4846)] = 216276, + [SMALL_STATE(4847)] = 216302, + [SMALL_STATE(4848)] = 216328, + [SMALL_STATE(4849)] = 216354, + [SMALL_STATE(4850)] = 216380, + [SMALL_STATE(4851)] = 216406, + [SMALL_STATE(4852)] = 216432, + [SMALL_STATE(4853)] = 216453, + [SMALL_STATE(4854)] = 216474, + [SMALL_STATE(4855)] = 216495, + [SMALL_STATE(4856)] = 216516, + [SMALL_STATE(4857)] = 216537, + [SMALL_STATE(4858)] = 216558, + [SMALL_STATE(4859)] = 216579, + [SMALL_STATE(4860)] = 216600, + [SMALL_STATE(4861)] = 216621, + [SMALL_STATE(4862)] = 216642, + [SMALL_STATE(4863)] = 216663, + [SMALL_STATE(4864)] = 216684, + [SMALL_STATE(4865)] = 216705, + [SMALL_STATE(4866)] = 216726, + [SMALL_STATE(4867)] = 216747, + [SMALL_STATE(4868)] = 216768, + [SMALL_STATE(4869)] = 216789, + [SMALL_STATE(4870)] = 216810, + [SMALL_STATE(4871)] = 216831, + [SMALL_STATE(4872)] = 216852, + [SMALL_STATE(4873)] = 216873, + [SMALL_STATE(4874)] = 216894, + [SMALL_STATE(4875)] = 216915, + [SMALL_STATE(4876)] = 216936, + [SMALL_STATE(4877)] = 216957, + [SMALL_STATE(4878)] = 216978, + [SMALL_STATE(4879)] = 216999, + [SMALL_STATE(4880)] = 217020, + [SMALL_STATE(4881)] = 217041, + [SMALL_STATE(4882)] = 217062, + [SMALL_STATE(4883)] = 217083, + [SMALL_STATE(4884)] = 217104, + [SMALL_STATE(4885)] = 217125, + [SMALL_STATE(4886)] = 217146, + [SMALL_STATE(4887)] = 217167, + [SMALL_STATE(4888)] = 217188, + [SMALL_STATE(4889)] = 217209, + [SMALL_STATE(4890)] = 217230, + [SMALL_STATE(4891)] = 217251, + [SMALL_STATE(4892)] = 217272, + [SMALL_STATE(4893)] = 217293, + [SMALL_STATE(4894)] = 217314, + [SMALL_STATE(4895)] = 217335, + [SMALL_STATE(4896)] = 217356, + [SMALL_STATE(4897)] = 217377, + [SMALL_STATE(4898)] = 217398, + [SMALL_STATE(4899)] = 217419, + [SMALL_STATE(4900)] = 217436, + [SMALL_STATE(4901)] = 217453, + [SMALL_STATE(4902)] = 217470, + [SMALL_STATE(4903)] = 217491, + [SMALL_STATE(4904)] = 217512, + [SMALL_STATE(4905)] = 217533, + [SMALL_STATE(4906)] = 217554, + [SMALL_STATE(4907)] = 217575, + [SMALL_STATE(4908)] = 217596, + [SMALL_STATE(4909)] = 217617, + [SMALL_STATE(4910)] = 217638, + [SMALL_STATE(4911)] = 217659, + [SMALL_STATE(4912)] = 217680, + [SMALL_STATE(4913)] = 217701, + [SMALL_STATE(4914)] = 217722, + [SMALL_STATE(4915)] = 217743, + [SMALL_STATE(4916)] = 217764, + [SMALL_STATE(4917)] = 217785, + [SMALL_STATE(4918)] = 217806, + [SMALL_STATE(4919)] = 217827, + [SMALL_STATE(4920)] = 217848, + [SMALL_STATE(4921)] = 217869, + [SMALL_STATE(4922)] = 217890, + [SMALL_STATE(4923)] = 217907, + [SMALL_STATE(4924)] = 217928, + [SMALL_STATE(4925)] = 217949, + [SMALL_STATE(4926)] = 217970, + [SMALL_STATE(4927)] = 217991, + [SMALL_STATE(4928)] = 218012, + [SMALL_STATE(4929)] = 218033, + [SMALL_STATE(4930)] = 218050, + [SMALL_STATE(4931)] = 218071, + [SMALL_STATE(4932)] = 218092, + [SMALL_STATE(4933)] = 218113, + [SMALL_STATE(4934)] = 218134, + [SMALL_STATE(4935)] = 218155, + [SMALL_STATE(4936)] = 218176, + [SMALL_STATE(4937)] = 218197, + [SMALL_STATE(4938)] = 218218, + [SMALL_STATE(4939)] = 218239, + [SMALL_STATE(4940)] = 218260, + [SMALL_STATE(4941)] = 218281, + [SMALL_STATE(4942)] = 218302, + [SMALL_STATE(4943)] = 218323, + [SMALL_STATE(4944)] = 218344, + [SMALL_STATE(4945)] = 218365, + [SMALL_STATE(4946)] = 218386, + [SMALL_STATE(4947)] = 218407, + [SMALL_STATE(4948)] = 218428, + [SMALL_STATE(4949)] = 218449, + [SMALL_STATE(4950)] = 218468, + [SMALL_STATE(4951)] = 218489, + [SMALL_STATE(4952)] = 218510, + [SMALL_STATE(4953)] = 218531, + [SMALL_STATE(4954)] = 218552, + [SMALL_STATE(4955)] = 218573, + [SMALL_STATE(4956)] = 218594, + [SMALL_STATE(4957)] = 218615, + [SMALL_STATE(4958)] = 218636, + [SMALL_STATE(4959)] = 218657, + [SMALL_STATE(4960)] = 218678, + [SMALL_STATE(4961)] = 218699, + [SMALL_STATE(4962)] = 218720, + [SMALL_STATE(4963)] = 218741, + [SMALL_STATE(4964)] = 218762, + [SMALL_STATE(4965)] = 218783, + [SMALL_STATE(4966)] = 218804, + [SMALL_STATE(4967)] = 218825, + [SMALL_STATE(4968)] = 218842, + [SMALL_STATE(4969)] = 218863, + [SMALL_STATE(4970)] = 218884, + [SMALL_STATE(4971)] = 218905, + [SMALL_STATE(4972)] = 218926, + [SMALL_STATE(4973)] = 218947, + [SMALL_STATE(4974)] = 218968, + [SMALL_STATE(4975)] = 218985, + [SMALL_STATE(4976)] = 219006, + [SMALL_STATE(4977)] = 219027, + [SMALL_STATE(4978)] = 219048, + [SMALL_STATE(4979)] = 219069, + [SMALL_STATE(4980)] = 219090, + [SMALL_STATE(4981)] = 219111, + [SMALL_STATE(4982)] = 219132, + [SMALL_STATE(4983)] = 219153, + [SMALL_STATE(4984)] = 219174, + [SMALL_STATE(4985)] = 219195, + [SMALL_STATE(4986)] = 219216, + [SMALL_STATE(4987)] = 219237, + [SMALL_STATE(4988)] = 219258, + [SMALL_STATE(4989)] = 219279, + [SMALL_STATE(4990)] = 219300, + [SMALL_STATE(4991)] = 219321, + [SMALL_STATE(4992)] = 219342, + [SMALL_STATE(4993)] = 219363, + [SMALL_STATE(4994)] = 219384, + [SMALL_STATE(4995)] = 219405, + [SMALL_STATE(4996)] = 219426, + [SMALL_STATE(4997)] = 219447, + [SMALL_STATE(4998)] = 219464, + [SMALL_STATE(4999)] = 219485, + [SMALL_STATE(5000)] = 219506, + [SMALL_STATE(5001)] = 219527, + [SMALL_STATE(5002)] = 219548, + [SMALL_STATE(5003)] = 219569, + [SMALL_STATE(5004)] = 219590, + [SMALL_STATE(5005)] = 219611, + [SMALL_STATE(5006)] = 219632, + [SMALL_STATE(5007)] = 219653, + [SMALL_STATE(5008)] = 219674, + [SMALL_STATE(5009)] = 219695, + [SMALL_STATE(5010)] = 219716, + [SMALL_STATE(5011)] = 219737, + [SMALL_STATE(5012)] = 219758, + [SMALL_STATE(5013)] = 219779, + [SMALL_STATE(5014)] = 219800, + [SMALL_STATE(5015)] = 219821, + [SMALL_STATE(5016)] = 219842, + [SMALL_STATE(5017)] = 219863, + [SMALL_STATE(5018)] = 219884, + [SMALL_STATE(5019)] = 219905, + [SMALL_STATE(5020)] = 219926, + [SMALL_STATE(5021)] = 219947, + [SMALL_STATE(5022)] = 219968, + [SMALL_STATE(5023)] = 219989, + [SMALL_STATE(5024)] = 220010, + [SMALL_STATE(5025)] = 220031, + [SMALL_STATE(5026)] = 220052, + [SMALL_STATE(5027)] = 220073, + [SMALL_STATE(5028)] = 220094, + [SMALL_STATE(5029)] = 220115, + [SMALL_STATE(5030)] = 220136, + [SMALL_STATE(5031)] = 220157, + [SMALL_STATE(5032)] = 220178, + [SMALL_STATE(5033)] = 220199, + [SMALL_STATE(5034)] = 220220, + [SMALL_STATE(5035)] = 220241, + [SMALL_STATE(5036)] = 220262, + [SMALL_STATE(5037)] = 220283, + [SMALL_STATE(5038)] = 220304, + [SMALL_STATE(5039)] = 220325, + [SMALL_STATE(5040)] = 220346, + [SMALL_STATE(5041)] = 220367, + [SMALL_STATE(5042)] = 220388, + [SMALL_STATE(5043)] = 220409, + [SMALL_STATE(5044)] = 220430, + [SMALL_STATE(5045)] = 220451, + [SMALL_STATE(5046)] = 220472, + [SMALL_STATE(5047)] = 220493, + [SMALL_STATE(5048)] = 220514, + [SMALL_STATE(5049)] = 220535, + [SMALL_STATE(5050)] = 220556, + [SMALL_STATE(5051)] = 220577, + [SMALL_STATE(5052)] = 220598, + [SMALL_STATE(5053)] = 220619, + [SMALL_STATE(5054)] = 220640, + [SMALL_STATE(5055)] = 220661, + [SMALL_STATE(5056)] = 220682, + [SMALL_STATE(5057)] = 220703, + [SMALL_STATE(5058)] = 220724, + [SMALL_STATE(5059)] = 220745, + [SMALL_STATE(5060)] = 220766, + [SMALL_STATE(5061)] = 220787, + [SMALL_STATE(5062)] = 220808, + [SMALL_STATE(5063)] = 220829, + [SMALL_STATE(5064)] = 220850, + [SMALL_STATE(5065)] = 220871, + [SMALL_STATE(5066)] = 220892, + [SMALL_STATE(5067)] = 220913, + [SMALL_STATE(5068)] = 220934, + [SMALL_STATE(5069)] = 220955, + [SMALL_STATE(5070)] = 220976, + [SMALL_STATE(5071)] = 220997, + [SMALL_STATE(5072)] = 221018, + [SMALL_STATE(5073)] = 221039, + [SMALL_STATE(5074)] = 221056, + [SMALL_STATE(5075)] = 221077, + [SMALL_STATE(5076)] = 221098, + [SMALL_STATE(5077)] = 221119, + [SMALL_STATE(5078)] = 221140, + [SMALL_STATE(5079)] = 221161, + [SMALL_STATE(5080)] = 221182, + [SMALL_STATE(5081)] = 221203, + [SMALL_STATE(5082)] = 221224, + [SMALL_STATE(5083)] = 221245, + [SMALL_STATE(5084)] = 221266, + [SMALL_STATE(5085)] = 221287, + [SMALL_STATE(5086)] = 221308, + [SMALL_STATE(5087)] = 221329, + [SMALL_STATE(5088)] = 221350, + [SMALL_STATE(5089)] = 221371, + [SMALL_STATE(5090)] = 221392, + [SMALL_STATE(5091)] = 221413, + [SMALL_STATE(5092)] = 221434, + [SMALL_STATE(5093)] = 221455, + [SMALL_STATE(5094)] = 221476, + [SMALL_STATE(5095)] = 221497, + [SMALL_STATE(5096)] = 221518, + [SMALL_STATE(5097)] = 221539, + [SMALL_STATE(5098)] = 221560, + [SMALL_STATE(5099)] = 221581, + [SMALL_STATE(5100)] = 221602, + [SMALL_STATE(5101)] = 221623, + [SMALL_STATE(5102)] = 221644, + [SMALL_STATE(5103)] = 221665, + [SMALL_STATE(5104)] = 221686, + [SMALL_STATE(5105)] = 221707, + [SMALL_STATE(5106)] = 221728, + [SMALL_STATE(5107)] = 221749, + [SMALL_STATE(5108)] = 221770, + [SMALL_STATE(5109)] = 221791, + [SMALL_STATE(5110)] = 221812, + [SMALL_STATE(5111)] = 221833, + [SMALL_STATE(5112)] = 221854, + [SMALL_STATE(5113)] = 221875, + [SMALL_STATE(5114)] = 221896, + [SMALL_STATE(5115)] = 221917, + [SMALL_STATE(5116)] = 221938, + [SMALL_STATE(5117)] = 221959, + [SMALL_STATE(5118)] = 221980, + [SMALL_STATE(5119)] = 222001, + [SMALL_STATE(5120)] = 222022, + [SMALL_STATE(5121)] = 222043, + [SMALL_STATE(5122)] = 222064, + [SMALL_STATE(5123)] = 222085, + [SMALL_STATE(5124)] = 222106, + [SMALL_STATE(5125)] = 222127, + [SMALL_STATE(5126)] = 222148, + [SMALL_STATE(5127)] = 222169, + [SMALL_STATE(5128)] = 222190, + [SMALL_STATE(5129)] = 222211, + [SMALL_STATE(5130)] = 222228, + [SMALL_STATE(5131)] = 222249, + [SMALL_STATE(5132)] = 222270, + [SMALL_STATE(5133)] = 222291, + [SMALL_STATE(5134)] = 222312, + [SMALL_STATE(5135)] = 222333, + [SMALL_STATE(5136)] = 222354, + [SMALL_STATE(5137)] = 222375, + [SMALL_STATE(5138)] = 222396, + [SMALL_STATE(5139)] = 222417, + [SMALL_STATE(5140)] = 222438, + [SMALL_STATE(5141)] = 222459, + [SMALL_STATE(5142)] = 222480, + [SMALL_STATE(5143)] = 222501, + [SMALL_STATE(5144)] = 222522, + [SMALL_STATE(5145)] = 222543, + [SMALL_STATE(5146)] = 222564, + [SMALL_STATE(5147)] = 222585, + [SMALL_STATE(5148)] = 222606, + [SMALL_STATE(5149)] = 222627, + [SMALL_STATE(5150)] = 222648, + [SMALL_STATE(5151)] = 222669, + [SMALL_STATE(5152)] = 222690, + [SMALL_STATE(5153)] = 222711, + [SMALL_STATE(5154)] = 222732, + [SMALL_STATE(5155)] = 222753, + [SMALL_STATE(5156)] = 222774, + [SMALL_STATE(5157)] = 222795, + [SMALL_STATE(5158)] = 222816, + [SMALL_STATE(5159)] = 222837, + [SMALL_STATE(5160)] = 222858, + [SMALL_STATE(5161)] = 222879, + [SMALL_STATE(5162)] = 222900, + [SMALL_STATE(5163)] = 222917, + [SMALL_STATE(5164)] = 222938, + [SMALL_STATE(5165)] = 222955, + [SMALL_STATE(5166)] = 222976, + [SMALL_STATE(5167)] = 222997, + [SMALL_STATE(5168)] = 223018, + [SMALL_STATE(5169)] = 223039, + [SMALL_STATE(5170)] = 223060, + [SMALL_STATE(5171)] = 223081, + [SMALL_STATE(5172)] = 223102, + [SMALL_STATE(5173)] = 223123, + [SMALL_STATE(5174)] = 223138, + [SMALL_STATE(5175)] = 223159, + [SMALL_STATE(5176)] = 223180, + [SMALL_STATE(5177)] = 223201, + [SMALL_STATE(5178)] = 223222, + [SMALL_STATE(5179)] = 223243, + [SMALL_STATE(5180)] = 223264, + [SMALL_STATE(5181)] = 223285, + [SMALL_STATE(5182)] = 223306, + [SMALL_STATE(5183)] = 223327, + [SMALL_STATE(5184)] = 223348, + [SMALL_STATE(5185)] = 223369, + [SMALL_STATE(5186)] = 223390, + [SMALL_STATE(5187)] = 223411, + [SMALL_STATE(5188)] = 223432, + [SMALL_STATE(5189)] = 223453, + [SMALL_STATE(5190)] = 223474, + [SMALL_STATE(5191)] = 223495, + [SMALL_STATE(5192)] = 223516, + [SMALL_STATE(5193)] = 223537, + [SMALL_STATE(5194)] = 223558, + [SMALL_STATE(5195)] = 223579, + [SMALL_STATE(5196)] = 223600, + [SMALL_STATE(5197)] = 223621, + [SMALL_STATE(5198)] = 223642, + [SMALL_STATE(5199)] = 223663, + [SMALL_STATE(5200)] = 223684, + [SMALL_STATE(5201)] = 223705, + [SMALL_STATE(5202)] = 223726, + [SMALL_STATE(5203)] = 223747, + [SMALL_STATE(5204)] = 223768, + [SMALL_STATE(5205)] = 223789, + [SMALL_STATE(5206)] = 223810, + [SMALL_STATE(5207)] = 223831, + [SMALL_STATE(5208)] = 223852, + [SMALL_STATE(5209)] = 223873, + [SMALL_STATE(5210)] = 223894, + [SMALL_STATE(5211)] = 223915, + [SMALL_STATE(5212)] = 223936, + [SMALL_STATE(5213)] = 223957, + [SMALL_STATE(5214)] = 223978, + [SMALL_STATE(5215)] = 223999, + [SMALL_STATE(5216)] = 224020, + [SMALL_STATE(5217)] = 224041, + [SMALL_STATE(5218)] = 224062, + [SMALL_STATE(5219)] = 224083, + [SMALL_STATE(5220)] = 224104, + [SMALL_STATE(5221)] = 224121, + [SMALL_STATE(5222)] = 224142, + [SMALL_STATE(5223)] = 224163, + [SMALL_STATE(5224)] = 224184, + [SMALL_STATE(5225)] = 224205, + [SMALL_STATE(5226)] = 224226, + [SMALL_STATE(5227)] = 224247, + [SMALL_STATE(5228)] = 224268, + [SMALL_STATE(5229)] = 224289, + [SMALL_STATE(5230)] = 224310, + [SMALL_STATE(5231)] = 224331, + [SMALL_STATE(5232)] = 224352, + [SMALL_STATE(5233)] = 224373, + [SMALL_STATE(5234)] = 224394, + [SMALL_STATE(5235)] = 224415, + [SMALL_STATE(5236)] = 224436, + [SMALL_STATE(5237)] = 224457, + [SMALL_STATE(5238)] = 224471, + [SMALL_STATE(5239)] = 224485, + [SMALL_STATE(5240)] = 224503, + [SMALL_STATE(5241)] = 224521, + [SMALL_STATE(5242)] = 224539, + [SMALL_STATE(5243)] = 224557, + [SMALL_STATE(5244)] = 224575, + [SMALL_STATE(5245)] = 224593, + [SMALL_STATE(5246)] = 224607, + [SMALL_STATE(5247)] = 224621, + [SMALL_STATE(5248)] = 224639, + [SMALL_STATE(5249)] = 224653, + [SMALL_STATE(5250)] = 224667, + [SMALL_STATE(5251)] = 224682, + [SMALL_STATE(5252)] = 224697, + [SMALL_STATE(5253)] = 224712, + [SMALL_STATE(5254)] = 224727, + [SMALL_STATE(5255)] = 224742, + [SMALL_STATE(5256)] = 224757, + [SMALL_STATE(5257)] = 224772, + [SMALL_STATE(5258)] = 224787, + [SMALL_STATE(5259)] = 224802, + [SMALL_STATE(5260)] = 224817, + [SMALL_STATE(5261)] = 224832, + [SMALL_STATE(5262)] = 224847, + [SMALL_STATE(5263)] = 224862, + [SMALL_STATE(5264)] = 224877, + [SMALL_STATE(5265)] = 224892, + [SMALL_STATE(5266)] = 224907, + [SMALL_STATE(5267)] = 224922, + [SMALL_STATE(5268)] = 224937, + [SMALL_STATE(5269)] = 224952, + [SMALL_STATE(5270)] = 224967, + [SMALL_STATE(5271)] = 224982, + [SMALL_STATE(5272)] = 224997, + [SMALL_STATE(5273)] = 225012, + [SMALL_STATE(5274)] = 225027, + [SMALL_STATE(5275)] = 225042, + [SMALL_STATE(5276)] = 225057, + [SMALL_STATE(5277)] = 225072, + [SMALL_STATE(5278)] = 225087, + [SMALL_STATE(5279)] = 225102, + [SMALL_STATE(5280)] = 225117, + [SMALL_STATE(5281)] = 225132, + [SMALL_STATE(5282)] = 225147, + [SMALL_STATE(5283)] = 225162, + [SMALL_STATE(5284)] = 225177, + [SMALL_STATE(5285)] = 225192, + [SMALL_STATE(5286)] = 225207, + [SMALL_STATE(5287)] = 225222, + [SMALL_STATE(5288)] = 225237, + [SMALL_STATE(5289)] = 225252, + [SMALL_STATE(5290)] = 225267, + [SMALL_STATE(5291)] = 225280, + [SMALL_STATE(5292)] = 225295, + [SMALL_STATE(5293)] = 225310, + [SMALL_STATE(5294)] = 225325, + [SMALL_STATE(5295)] = 225340, + [SMALL_STATE(5296)] = 225355, + [SMALL_STATE(5297)] = 225370, + [SMALL_STATE(5298)] = 225385, + [SMALL_STATE(5299)] = 225400, + [SMALL_STATE(5300)] = 225415, + [SMALL_STATE(5301)] = 225430, + [SMALL_STATE(5302)] = 225445, + [SMALL_STATE(5303)] = 225460, + [SMALL_STATE(5304)] = 225475, + [SMALL_STATE(5305)] = 225490, + [SMALL_STATE(5306)] = 225505, + [SMALL_STATE(5307)] = 225520, + [SMALL_STATE(5308)] = 225535, + [SMALL_STATE(5309)] = 225550, + [SMALL_STATE(5310)] = 225565, + [SMALL_STATE(5311)] = 225580, + [SMALL_STATE(5312)] = 225595, + [SMALL_STATE(5313)] = 225610, + [SMALL_STATE(5314)] = 225625, + [SMALL_STATE(5315)] = 225640, + [SMALL_STATE(5316)] = 225655, + [SMALL_STATE(5317)] = 225670, + [SMALL_STATE(5318)] = 225685, + [SMALL_STATE(5319)] = 225700, + [SMALL_STATE(5320)] = 225715, + [SMALL_STATE(5321)] = 225730, + [SMALL_STATE(5322)] = 225745, + [SMALL_STATE(5323)] = 225760, + [SMALL_STATE(5324)] = 225775, + [SMALL_STATE(5325)] = 225790, + [SMALL_STATE(5326)] = 225805, + [SMALL_STATE(5327)] = 225817, + [SMALL_STATE(5328)] = 225829, + [SMALL_STATE(5329)] = 225841, + [SMALL_STATE(5330)] = 225853, + [SMALL_STATE(5331)] = 225865, + [SMALL_STATE(5332)] = 225877, + [SMALL_STATE(5333)] = 225889, + [SMALL_STATE(5334)] = 225901, + [SMALL_STATE(5335)] = 225913, + [SMALL_STATE(5336)] = 225925, + [SMALL_STATE(5337)] = 225937, + [SMALL_STATE(5338)] = 225949, + [SMALL_STATE(5339)] = 225961, + [SMALL_STATE(5340)] = 225973, + [SMALL_STATE(5341)] = 225985, + [SMALL_STATE(5342)] = 225997, + [SMALL_STATE(5343)] = 226009, + [SMALL_STATE(5344)] = 226021, + [SMALL_STATE(5345)] = 226033, + [SMALL_STATE(5346)] = 226045, + [SMALL_STATE(5347)] = 226057, + [SMALL_STATE(5348)] = 226069, + [SMALL_STATE(5349)] = 226081, + [SMALL_STATE(5350)] = 226093, + [SMALL_STATE(5351)] = 226105, + [SMALL_STATE(5352)] = 226117, + [SMALL_STATE(5353)] = 226129, + [SMALL_STATE(5354)] = 226141, + [SMALL_STATE(5355)] = 226153, + [SMALL_STATE(5356)] = 226165, + [SMALL_STATE(5357)] = 226177, + [SMALL_STATE(5358)] = 226189, + [SMALL_STATE(5359)] = 226201, + [SMALL_STATE(5360)] = 226213, + [SMALL_STATE(5361)] = 226225, + [SMALL_STATE(5362)] = 226237, + [SMALL_STATE(5363)] = 226249, + [SMALL_STATE(5364)] = 226261, + [SMALL_STATE(5365)] = 226273, + [SMALL_STATE(5366)] = 226285, + [SMALL_STATE(5367)] = 226297, + [SMALL_STATE(5368)] = 226309, + [SMALL_STATE(5369)] = 226321, + [SMALL_STATE(5370)] = 226333, + [SMALL_STATE(5371)] = 226345, + [SMALL_STATE(5372)] = 226357, + [SMALL_STATE(5373)] = 226369, + [SMALL_STATE(5374)] = 226381, + [SMALL_STATE(5375)] = 226393, + [SMALL_STATE(5376)] = 226405, + [SMALL_STATE(5377)] = 226417, + [SMALL_STATE(5378)] = 226429, + [SMALL_STATE(5379)] = 226441, + [SMALL_STATE(5380)] = 226453, + [SMALL_STATE(5381)] = 226465, + [SMALL_STATE(5382)] = 226477, + [SMALL_STATE(5383)] = 226489, + [SMALL_STATE(5384)] = 226501, + [SMALL_STATE(5385)] = 226513, + [SMALL_STATE(5386)] = 226525, + [SMALL_STATE(5387)] = 226537, + [SMALL_STATE(5388)] = 226549, + [SMALL_STATE(5389)] = 226561, + [SMALL_STATE(5390)] = 226573, + [SMALL_STATE(5391)] = 226585, + [SMALL_STATE(5392)] = 226597, + [SMALL_STATE(5393)] = 226609, + [SMALL_STATE(5394)] = 226621, + [SMALL_STATE(5395)] = 226633, + [SMALL_STATE(5396)] = 226645, + [SMALL_STATE(5397)] = 226657, + [SMALL_STATE(5398)] = 226669, + [SMALL_STATE(5399)] = 226681, + [SMALL_STATE(5400)] = 226693, + [SMALL_STATE(5401)] = 226705, + [SMALL_STATE(5402)] = 226717, + [SMALL_STATE(5403)] = 226729, + [SMALL_STATE(5404)] = 226741, + [SMALL_STATE(5405)] = 226753, + [SMALL_STATE(5406)] = 226765, + [SMALL_STATE(5407)] = 226777, + [SMALL_STATE(5408)] = 226789, + [SMALL_STATE(5409)] = 226801, + [SMALL_STATE(5410)] = 226813, + [SMALL_STATE(5411)] = 226825, + [SMALL_STATE(5412)] = 226837, + [SMALL_STATE(5413)] = 226849, + [SMALL_STATE(5414)] = 226861, + [SMALL_STATE(5415)] = 226873, + [SMALL_STATE(5416)] = 226885, + [SMALL_STATE(5417)] = 226897, + [SMALL_STATE(5418)] = 226909, + [SMALL_STATE(5419)] = 226921, + [SMALL_STATE(5420)] = 226933, + [SMALL_STATE(5421)] = 226945, + [SMALL_STATE(5422)] = 226957, + [SMALL_STATE(5423)] = 226969, + [SMALL_STATE(5424)] = 226981, + [SMALL_STATE(5425)] = 226993, + [SMALL_STATE(5426)] = 227005, + [SMALL_STATE(5427)] = 227017, + [SMALL_STATE(5428)] = 227029, + [SMALL_STATE(5429)] = 227041, + [SMALL_STATE(5430)] = 227053, + [SMALL_STATE(5431)] = 227065, + [SMALL_STATE(5432)] = 227077, + [SMALL_STATE(5433)] = 227089, + [SMALL_STATE(5434)] = 227101, + [SMALL_STATE(5435)] = 227113, + [SMALL_STATE(5436)] = 227125, + [SMALL_STATE(5437)] = 227137, + [SMALL_STATE(5438)] = 227149, + [SMALL_STATE(5439)] = 227161, + [SMALL_STATE(5440)] = 227173, + [SMALL_STATE(5441)] = 227185, + [SMALL_STATE(5442)] = 227197, + [SMALL_STATE(5443)] = 227209, + [SMALL_STATE(5444)] = 227221, + [SMALL_STATE(5445)] = 227233, + [SMALL_STATE(5446)] = 227245, + [SMALL_STATE(5447)] = 227257, + [SMALL_STATE(5448)] = 227269, + [SMALL_STATE(5449)] = 227281, + [SMALL_STATE(5450)] = 227293, + [SMALL_STATE(5451)] = 227305, + [SMALL_STATE(5452)] = 227317, + [SMALL_STATE(5453)] = 227329, + [SMALL_STATE(5454)] = 227341, + [SMALL_STATE(5455)] = 227353, + [SMALL_STATE(5456)] = 227365, + [SMALL_STATE(5457)] = 227377, + [SMALL_STATE(5458)] = 227389, + [SMALL_STATE(5459)] = 227401, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), - [7] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [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(1317), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_block, 1), SHIFT(5425), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_block, 1), SHIFT(5425), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_after_block, 1), SHIFT(5425), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rescue_block, 1), SHIFT(5425), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call, 1), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call, 1), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5299), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5455), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(605), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5297), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(3), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5459), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(579), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(12), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(514), + [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(564), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(9), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(549), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5425), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(508), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(13), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(528), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(10), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(488), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(479), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(603), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(255), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_after_block, 2), SHIFT(5425), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_block, 2), SHIFT(5425), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_else_block, 2), SHIFT(5425), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_rescue_block, 2), SHIFT(5425), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 3), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 2), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1), SHIFT(5459), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atom_operator_literal, 1), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(4176), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(4195), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_identifier, 1), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_identifier, 1), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__identifier, 1), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__identifier, 1), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 2), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 2), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 8), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 8), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 10), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 10), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 9), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 9), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1307), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 2), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 2), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1311), + [3394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1314), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_dot, 2), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1322), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1323), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 2), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 2), + [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 2, .production_id = 6), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 2, .production_id = 6), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_expression, 1), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_expression, 1), SHIFT(344), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_local_call_with_arguments, 2), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_local_call_with_arguments, 2), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_remote_call, 2), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_remote_call, 2), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_remote_call, 4), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_remote_call, 4), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_arguments, 2, .production_id = 3), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_arguments, 2, .production_id = 3), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_on_call, 2, .production_id = 4), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_on_call, 2, .production_id = 4), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call, 2, .production_id = 3), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call, 2, .production_id = 3), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_local_call_with_arguments, 3), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_local_call_with_arguments, 3), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_remote_call, 3), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_remote_call, 3), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_local_call_with_arguments, 4), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_local_call_with_arguments, 4), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_arguments, 2), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_arguments, 2), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_call_arguments, 3), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_call_arguments, 3), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 1), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias, 1), + [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesised_call_arguments, 2), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_call_arguments, 2), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_arguments, 3), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_arguments, 3), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 2), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 2), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments, 2), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments, 2), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1348), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2), + [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1348), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(624), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1348), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments, 1), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments, 1), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), + [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2), + [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3), + [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments, 3), + [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments, 3), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3), + [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3), + [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3), + [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3), + [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3), + [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3), + [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3), + [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atom_operator_literal, 1), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments, 4), + [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments, 4), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call, 4, .production_id = 3), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call, 4, .production_id = 3), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_on_call, 4, .production_id = 4), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_on_call, 4, .production_id = 4), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_arguments, 4, .production_id = 3), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_arguments, 4, .production_id = 3), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments, 5), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments, 5), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call, 3, .production_id = 3), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call, 3, .production_id = 3), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call, 3), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call, 3), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_on_call, 3, .production_id = 4), + [4170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_on_call, 3, .production_id = 4), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 7), + [4174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 7), + [4176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_arguments, 3, .production_id = 3), + [4178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_arguments, 3, .production_id = 3), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3), + [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3), + [4184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), + [4186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [4198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3), + [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_tuple, 2), REDUCE(sym_map, 3), + [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple, 2), REDUCE(sym_map, 3), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 5), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 5), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call, 2), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call, 2), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_arguments, 2, .dynamic_precedence = -1), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_arguments, 2, .dynamic_precedence = -1), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atom, 2), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atom, 2), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atom_special_literal, 1), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atom_special_literal, 1), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(791), + [4327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1344), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1344), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1344), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1310), + [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(404), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym__stab_clause_parentheses_arguments, 2, .dynamic_precedence = 1), + [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1337), + [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1337), + [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1337), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1310), + [4411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(403), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [4430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1356), + [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1356), + [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1356), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [4477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_expression, 1), SHIFT(298), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_expression, 1), SHIFT(3713), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1354), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [4552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1354), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(974), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1354), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1338), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1338), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(1027), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1338), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_expression, 1), SHIFT(1889), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat2, 2), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat2, 2), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1341), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1357), + [4794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1341), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1357), + [4804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(896), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1357), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(1174), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1341), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(802), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), + [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1355), + [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1355), + [4883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1343), + [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1355), + [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(679), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1343), + [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1343), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1342), + [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1342), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1340), + [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(740), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1340), + [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1340), + [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1342), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1358), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1319), + [5065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(460), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [5112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1358), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1336), + [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1336), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1358), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1327), + [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(432), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1327), + [5273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(436), + [5276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1336), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1319), + [5282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(438), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(853), + [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1345), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1345), + [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1345), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1353), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1347), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1347), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1350), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1353), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1353), + [5377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1347), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1350), + [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1350), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1352), + [5513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1352), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [5602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1352), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesised_call, 1), + [5609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_expression, 1), SHIFT(331), + [5612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1346), + [5615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1346), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1346), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_parentheses_arguments_with_guard, 3), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_guard, 3, .dynamic_precedence = 1, .production_id = 1), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5025), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat3, 2), SHIFT_REPEAT(89), + [6574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat3, 2), SHIFT_REPEAT(93), + [6577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat3, 2), SHIFT_REPEAT(94), + [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat3, 2), + [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat3, 2), SHIFT_REPEAT(102), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1332), + [6610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1148), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(1306), + [6618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(183), + [6621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), + [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat2, 2), SHIFT_REPEAT(1332), + [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat2, 2), SHIFT_REPEAT(830), + [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1310), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(405), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(4173), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [6810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2), + [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3), + [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [7092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), + [7094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(767), + [7097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(4254), + [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(4254), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), + [7107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(861), + [7110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(4256), + [7113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(4256), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [7118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), + [7120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(923), + [7123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(4258), + [7126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(4258), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [7131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), + [7133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(972), + [7136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(4260), + [7139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(4260), + [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), + [7514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(976), + [7517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4350), + [7520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4350), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), + [7551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(980), + [7554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4360), + [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4360), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [7590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), + [7592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(986), + [7595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(4368), + [7598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(4368), + [7601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), + [7603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(992), + [7606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4369), + [7609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4369), + [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), + [7614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(994), + [7617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4370), + [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4370), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), + [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(998), + [7634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4372), + [7637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4372), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [8838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [8946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [8954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [8998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [9010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [9056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [9066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [9072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [9080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [9092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments, 1), + [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [9108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1339), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1327), + [9116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(441), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [9121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments, 2), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [9147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(940), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [9152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1306), + [9157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(191), + [9160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1349), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [9165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_repeat1, 2), + [9167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_repeat1, 2), SHIFT_REPEAT(482), + [9170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(898), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [9181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1306), + [9184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(193), + [9187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [9195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1319), + [9198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(458), + [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [9209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(959), + [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [9222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(662), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [9229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1339), + [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [9238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1339), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [9317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [9357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), + [9359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(4870), + [9362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(4870), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [9409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [9485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [9487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [9597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [9727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [9729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), + [9731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(4966), + [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(4966), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [9793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [9881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), + [9883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(5008), + [9886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(5008), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [9895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), + [9897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(5012), + [9900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(5012), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [9909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), + [9911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(5014), + [9914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(5014), + [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), + [9931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(5017), + [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(5017), + [9937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [9949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), + [9951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(5020), + [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(5020), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [9985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), + [9987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(5027), + [9990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(5027), + [9993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [10011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), + [10013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(5031), + [10016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(5031), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [10039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [10053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [10059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [10067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [10127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [10169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [10173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), + [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [10177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [10179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [10227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [10235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [10237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [10243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [10255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [10267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [10279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [10281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [10293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [10505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), + [10507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(5154), + [10510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(5154), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [10823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments, 3), + [10825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments, 4), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [10829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 2), SHIFT(1335), + [10832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_keywords, 1), SHIFT(1335), + [10835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(889), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [10840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1, .production_id = 1), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [10844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(1335), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [10849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 5), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [10921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_parentheses_arguments, 3, .dynamic_precedence = 1), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [10949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_map_content, 1), SHIFT(2982), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [11030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_content, 1), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [11142] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), }; #ifdef __cplusplus extern "C" { #endif +void *tree_sitter_elixir_external_scanner_create(void); +void tree_sitter_elixir_external_scanner_destroy(void *); +bool tree_sitter_elixir_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_elixir_external_scanner_serialize(void *, char *); +void tree_sitter_elixir_external_scanner_deserialize(void *, const char *, unsigned); + #ifdef _WIN32 #define extern __declspec(dllexport) #endif @@ -152,12 +403301,24 @@ extern const TSLanguage *tree_sitter_elixir(void) { .small_parse_table_map = ts_small_parse_table_map, .parse_actions = ts_parse_actions, .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], .lex_modes = ts_lex_modes, .lex_fn = ts_lex, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_elixir_external_scanner_create, + tree_sitter_elixir_external_scanner_destroy, + tree_sitter_elixir_external_scanner_scan, + tree_sitter_elixir_external_scanner_serialize, + tree_sitter_elixir_external_scanner_deserialize, + }, }; return &language; } diff --git a/src/scanner.cc b/src/scanner.cc new file mode 100644 index 0000000..ca52659 --- /dev/null +++ b/src/scanner.cc @@ -0,0 +1,844 @@ +#include + +namespace { + +enum TokenType { + // TODO add a note that all QUOTE_* tokens are mutually exclusive + // i.e. the valid_symbols array contains at most one truthy of these + QUOTED_CONTENT_I_SINGLE, + QUOTED_CONTENT_I_DOUBLE, + QUOTED_CONTENT_I_HEREDOC_SINGLE, + QUOTED_CONTENT_I_HEREDOC_DOUBLE, + QUOTED_CONTENT_I_PARENTHESIS, + QUOTED_CONTENT_I_CURLY, + QUOTED_CONTENT_I_SQUARE, + QUOTED_CONTENT_I_ANGLE, + QUOTED_CONTENT_I_BAR, + QUOTED_CONTENT_I_SLASH, + + QUOTED_CONTENT_SINGLE, + QUOTED_CONTENT_DOUBLE, + QUOTED_CONTENT_HEREDOC_SINGLE, + QUOTED_CONTENT_HEREDOC_DOUBLE, + QUOTED_CONTENT_PARENTHESIS, + QUOTED_CONTENT_CURLY, + QUOTED_CONTENT_SQUARE, + QUOTED_CONTENT_ANGLE, + QUOTED_CONTENT_BAR, + QUOTED_CONTENT_SLASH, + + KEYWORD_SPECIAL_LITERAL, + ATOM_START, + KEYWORD_END, + + NEWLINE_BEFORE_DO, + NEWLINE_BEFORE_BINARY_OP, + NEWLINE_BEFORE_COMMENT, + + BEFORE_UNARY_OP, + + NOT_IN +}; + +bool quoted_token_type(const bool* valid_symbols, TokenType& token_type) { + // Quoted symbols are mutually exclusive and only one should + // be valid at a time. If multiple are valid it means we parse + // an arbitrary code outside quotes, in which case we don't + // want to tokenize it as quoted content. + if (valid_symbols[QUOTED_CONTENT_I_SINGLE] && valid_symbols[QUOTED_CONTENT_I_DOUBLE]) { + return false; + } + + if (valid_symbols[QUOTED_CONTENT_I_SINGLE]) { + token_type = QUOTED_CONTENT_I_SINGLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_DOUBLE]) { + token_type = QUOTED_CONTENT_I_DOUBLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_HEREDOC_SINGLE]) { + token_type = QUOTED_CONTENT_I_HEREDOC_SINGLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_HEREDOC_DOUBLE]) { + token_type = QUOTED_CONTENT_I_HEREDOC_DOUBLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_PARENTHESIS]) { + token_type = QUOTED_CONTENT_I_PARENTHESIS; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_CURLY]) { + token_type = QUOTED_CONTENT_I_CURLY; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_SQUARE]) { + token_type = QUOTED_CONTENT_I_SQUARE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_ANGLE]) { + token_type = QUOTED_CONTENT_I_ANGLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_BAR]) { + token_type = QUOTED_CONTENT_I_BAR; + return true; + } + if (valid_symbols[QUOTED_CONTENT_I_SLASH]) { + token_type = QUOTED_CONTENT_I_SLASH; + return true; + } + if (valid_symbols[QUOTED_CONTENT_SINGLE]) { + token_type = QUOTED_CONTENT_SINGLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_DOUBLE]) { + token_type = QUOTED_CONTENT_DOUBLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_HEREDOC_SINGLE]) { + token_type = QUOTED_CONTENT_HEREDOC_SINGLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_HEREDOC_DOUBLE]) { + token_type = QUOTED_CONTENT_HEREDOC_DOUBLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_PARENTHESIS]) { + token_type = QUOTED_CONTENT_PARENTHESIS; + return true; + } + if (valid_symbols[QUOTED_CONTENT_CURLY]) { + token_type = QUOTED_CONTENT_CURLY; + return true; + } + if (valid_symbols[QUOTED_CONTENT_SQUARE]) { + token_type = QUOTED_CONTENT_SQUARE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_ANGLE]) { + token_type = QUOTED_CONTENT_ANGLE; + return true; + } + if (valid_symbols[QUOTED_CONTENT_BAR]) { + token_type = QUOTED_CONTENT_BAR; + return true; + } + if (valid_symbols[QUOTED_CONTENT_SLASH]) { + token_type = QUOTED_CONTENT_SLASH; + return true; + } + + return false; +} + +int32_t quoted_end_delimiter(TokenType token_type) { + switch (token_type) { + case QUOTED_CONTENT_I_SINGLE: + case QUOTED_CONTENT_SINGLE: + case QUOTED_CONTENT_I_HEREDOC_SINGLE: + case QUOTED_CONTENT_HEREDOC_SINGLE: + return '\''; + + case QUOTED_CONTENT_I_DOUBLE: + case QUOTED_CONTENT_DOUBLE: + case QUOTED_CONTENT_I_HEREDOC_DOUBLE: + case QUOTED_CONTENT_HEREDOC_DOUBLE: + return '\"'; + + case QUOTED_CONTENT_I_PARENTHESIS: + case QUOTED_CONTENT_PARENTHESIS: + return ')'; + + case QUOTED_CONTENT_I_CURLY: + case QUOTED_CONTENT_CURLY: + return '}'; + + case QUOTED_CONTENT_I_SQUARE: + case QUOTED_CONTENT_SQUARE: + return ']'; + + case QUOTED_CONTENT_I_ANGLE: + case QUOTED_CONTENT_ANGLE: + return '>'; + + case QUOTED_CONTENT_I_BAR: + case QUOTED_CONTENT_BAR: + return '|'; + + case QUOTED_CONTENT_I_SLASH: + case QUOTED_CONTENT_SLASH: + return '/'; + } + + __builtin_unreachable(); +} + +uint8_t quoted_delimiter_length(TokenType token_type) { + switch (token_type) { + case QUOTED_CONTENT_I_HEREDOC_SINGLE: + case QUOTED_CONTENT_I_HEREDOC_DOUBLE: + case QUOTED_CONTENT_HEREDOC_SINGLE: + case QUOTED_CONTENT_HEREDOC_DOUBLE: + return 3; + + default: + return 1; + } +} + +bool quoted_is_interpol(TokenType token_type) { + switch (token_type) { + case QUOTED_CONTENT_I_SINGLE: + case QUOTED_CONTENT_I_DOUBLE: + case QUOTED_CONTENT_I_HEREDOC_SINGLE: + case QUOTED_CONTENT_I_HEREDOC_DOUBLE: + case QUOTED_CONTENT_I_PARENTHESIS: + case QUOTED_CONTENT_I_CURLY: + case QUOTED_CONTENT_I_SQUARE: + case QUOTED_CONTENT_I_ANGLE: + case QUOTED_CONTENT_I_BAR: + case QUOTED_CONTENT_I_SLASH: + return true; + + default: + return false; + } +} + +bool is_whitespace(int32_t c) { + return c == ' ' || c == '\t' || c == '\v' || + c == '\n' || c == '\f' || c == '\r'; +} + +bool is_inline_whitespace(int32_t c) { + return c == ' ' || c == '\t' || c == '\v'; +} + +// TODO what about these weird \f \r +bool is_newline(int32_t c) { + return c == '\n'; +} + +void advance(TSLexer* lexer) { + lexer->advance(lexer, false); +} + +void skip(TSLexer *lexer) { + lexer->advance(lexer, true); +} + +bool finish_atom_start(TSLexer* lexer) { + // The first ':' is already scanned and parser advanced + lexer->mark_end(lexer); + lexer->result_symbol = ATOM_START; + + if (lexer->lookahead == ':') { + advance(lexer); + if (lexer->lookahead == ':') { + // ::: + return true; + } else { + return false; + } + } else { + return !is_whitespace(lexer->lookahead); + } +} + +bool is_keyword_end(TSLexer* lexer) { + if (lexer->lookahead == ':') { + advance(lexer); + return is_whitespace(lexer->lookahead); + } + return false; +} + +bool finish_keyword(TSLexer* lexer) { + lexer->mark_end(lexer); + lexer->result_symbol = KEYWORD_SPECIAL_LITERAL; + return is_keyword_end(lexer); +} + +bool is_digit(int32_t c) { + return '0' <= c && c <= '9'; +} + +bool is_operator_end(TSLexer* lexer) { + // Keyword + if (lexer->lookahead == ':') { + return !is_keyword_end(lexer); + } + while (is_inline_whitespace(lexer->lookahead)) { + advance(lexer); + } + // Operator identifier with arity + if (lexer->lookahead == '/') { + advance(lexer); + while (is_whitespace(lexer->lookahead)) { + advance(lexer); + } + if (is_digit(lexer->lookahead)) { + return false; + } + } + + return true; +} + +const char TOKEN_TERMINATORS[] = { + // Operator starts + '@', '.', '+', '-', '^', '-', '*', '/', '<', '>', '|', '~', '=', '&', '\\', '%', + // Delimiters + '{', '}', '[', ']', '(', ')', '"', '\'', + // Separators + ',', ';', + // Comment + '#' +}; + +// Note: this is a heuristic as we only use this to distinguish word +// operators and we don't want to include complex Unicode ranges. +bool is_token_end(int32_t c) { + for (unsigned int i = 0; i < sizeof(TOKEN_TERMINATORS); i++) { + if (c == TOKEN_TERMINATORS[i]) { + return true; + } + } + + return is_whitespace(c); +} + +bool scan(TSLexer* lexer, const bool* valid_symbols) { + TokenType token_type; + bool is_quoted_symbol = quoted_token_type(valid_symbols, token_type); + + // Quoted content, which matches any character except for close + // delimiters, escapes and interpolations + if (is_quoted_symbol) { + // TODO naming + // TODO move all of this into a separate function like scan_quoted_content + int32_t end_delimiter = quoted_end_delimiter(token_type); + bool supports_interpol = quoted_is_interpol(token_type); + uint8_t delimiter_length = quoted_delimiter_length(token_type); + + lexer->result_symbol = token_type; + + for (bool has_content = false; true; has_content = true) { + lexer->mark_end(lexer); + + if (lexer->lookahead == end_delimiter) { + uint8_t length = 1; + + while (length < delimiter_length) { + advance(lexer); + if (lexer->lookahead == end_delimiter) { + length++; + } else { + break; + } + } + + if (length == delimiter_length) { + return has_content; + } + } else { + switch (lexer->lookahead) { + case '#': + advance(lexer); + + if (supports_interpol && lexer->lookahead == '{') { + return has_content; + } + + break; + + case '\\': + if (supports_interpol) { + return has_content; + } else { + advance(lexer); + + if (lexer->lookahead == end_delimiter) { + return has_content; + } + } + + break; + + case '\0': + return false; + + default: + advance(lexer); + } + } + } + + return false; + } + + if (lexer->lookahead == ':') { + if (valid_symbols[ATOM_START] || valid_symbols[KEYWORD_END]) { + advance(lexer); + + if (is_whitespace(lexer->lookahead)) { + if (valid_symbols[KEYWORD_END]) { + lexer->result_symbol = KEYWORD_END; + return true; + } + } else { + if (valid_symbols[ATOM_START]) { + return finish_atom_start(lexer); + } + } + + return false; + } + } + + bool skipped_whitespace = false; + + while (is_inline_whitespace(lexer->lookahead)) { + skipped_whitespace = true; + skip(lexer); + } + + // TODO moves this below together with other functions on this level + if (lexer->lookahead == '+') { + if (skipped_whitespace && valid_symbols[BEFORE_UNARY_OP]) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '+' || lexer->lookahead == ':' || lexer->lookahead == '/') { + return false; + } + if (is_whitespace(lexer->lookahead)) { + return false; + } + lexer->result_symbol = BEFORE_UNARY_OP; + return true; + } + } + + if (lexer->lookahead == '-') { + if (skipped_whitespace && valid_symbols[BEFORE_UNARY_OP]) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '-' || lexer->lookahead == '>' || lexer->lookahead == ':' || lexer->lookahead == '/') { + return false; + } + if (is_whitespace(lexer->lookahead)) { + return false; + } + lexer->result_symbol = BEFORE_UNARY_OP; + return true; + } + } + + if (lexer->lookahead == 'n') { + lexer->result_symbol = NOT_IN; + advance(lexer); + if (lexer->lookahead == 'o') { + advance(lexer); + if (lexer->lookahead == 't') { + advance(lexer); + while (is_inline_whitespace(lexer->lookahead)) { + advance(lexer); + } + if (lexer->lookahead == 'i') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + return is_token_end(lexer->lookahead); + } + } + } + } + return false; + } + + // TODO can be a separate function + + if (is_newline(lexer->lookahead) && ( + valid_symbols[NEWLINE_BEFORE_DO] || + valid_symbols[NEWLINE_BEFORE_BINARY_OP] || + valid_symbols[NEWLINE_BEFORE_COMMENT])) { + advance(lexer); + + while (is_whitespace(lexer->lookahead)) { + advance(lexer); + } + + // Note we include all the whitespace after newline, so that the + // parser doesn't have to go through it again + lexer->mark_end(lexer); + + if (lexer->lookahead == '#') { + lexer->result_symbol = NEWLINE_BEFORE_COMMENT; + return true; + } + + if (valid_symbols[NEWLINE_BEFORE_DO] && lexer->lookahead == 'd') { + lexer->result_symbol = NEWLINE_BEFORE_DO; + advance(lexer); + if (lexer->lookahead == 'o') { + advance(lexer); + return is_token_end(lexer->lookahead); + } + return false; + } + + if (valid_symbols[NEWLINE_BEFORE_BINARY_OP] ) { + lexer->result_symbol = NEWLINE_BEFORE_BINARY_OP; + + // &&, &&& + if (lexer->lookahead == '&') { + advance(lexer); + if (lexer->lookahead == '&') { + advance(lexer); + if (lexer->lookahead == '&') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } + // =, ==, ===, =~, => + } else if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } else if (lexer->lookahead == '~') { + advance(lexer); + return is_operator_end(lexer); + } else if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + // :: + } else if (lexer->lookahead == ':') { + advance(lexer); + if (lexer->lookahead == ':') { + advance(lexer); + // Ignore ::: atom + if (lexer->lookahead == ':') return false; + return is_operator_end(lexer); + } + // ++, +++ + } else if (lexer->lookahead == '+') { + advance(lexer); + if (lexer->lookahead == '+') { + advance(lexer); + if (lexer->lookahead == '+') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } + // --, ---, -> + } else if (lexer->lookahead == '-') { + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } else if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } + // <, <=, <-, <>, <~, <~>, <|>, <<<, <<~ + } else if (lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '=' || + lexer->lookahead == '-' || + lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } else if (lexer->lookahead == '~') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } else if (lexer->lookahead == '|') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } + } else if (lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '<' || + lexer->lookahead == '~') { + advance(lexer); + return is_operator_end(lexer); + } + } else { + return is_operator_end(lexer); + } + // >, >=, >>> + } else if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + return is_operator_end(lexer); + } else if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } + } else { + return is_operator_end(lexer); + } + // ^^^ + } else if (lexer->lookahead == '^') { + advance(lexer); + if (lexer->lookahead == '^') { + advance(lexer); + if (lexer->lookahead == '^') { + advance(lexer); + return is_operator_end(lexer); + } + } + // !=, !== + } else if (lexer->lookahead == '!') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } + // ~>, ~>> + } else if (lexer->lookahead == '~') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } + // |, ||, |||, |> + } else if (lexer->lookahead == '|') { + advance(lexer); + if (lexer->lookahead == '|') { + advance(lexer); + if (lexer->lookahead == '|') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + } else if (lexer->lookahead == '>') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + // *, ** + } else if (lexer->lookahead == '*') { + advance(lexer); + if (lexer->lookahead == '*') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + // / // + } else if (lexer->lookahead == '/') { + advance(lexer); + if (lexer->lookahead == '/') { + advance(lexer); + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + // ., .. + } else if (lexer->lookahead == '.') { + advance(lexer); + if (lexer->lookahead == '.') { + advance(lexer); + // Ignore ... identifier + if (lexer->lookahead == '.') return false; + return is_operator_end(lexer); + } else { + return is_operator_end(lexer); + } + // double slash + } else if (lexer->lookahead == '\\') { + advance(lexer); + if (lexer->lookahead == '\\') { + advance(lexer); + return is_operator_end(lexer); + } + } else if (lexer->lookahead == 'w') { + advance(lexer); + if (lexer->lookahead == 'h') { + advance(lexer); + if (lexer->lookahead == 'e') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + return is_token_end(lexer->lookahead) && is_operator_end(lexer); + } + } + } + } else if (lexer->lookahead == 'a') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + if (lexer->lookahead == 'd') { + advance(lexer); + return is_token_end(lexer->lookahead) && is_operator_end(lexer); + } + } + // or + } else if (lexer->lookahead == 'o') { + advance(lexer); + if (lexer->lookahead == 'r') { + advance(lexer); + return is_token_end(lexer->lookahead) && is_operator_end(lexer); + } + // in + } else if (lexer->lookahead == 'i') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + return is_token_end(lexer->lookahead) && is_operator_end(lexer); + } + // not in + } else if (lexer->lookahead == 'n') { + advance(lexer); + if (lexer->lookahead == 'o') { + advance(lexer); + if (lexer->lookahead == 't') { + advance(lexer); + while (is_inline_whitespace(lexer->lookahead)) { + advance(lexer); + } + if (lexer->lookahead == 'i') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + return is_token_end(lexer->lookahead) && is_operator_end(lexer); + } + } + } + } + } + } + + return false; + } + + // ... ..// + if (lexer->lookahead == '.') { + if (valid_symbols[KEYWORD_SPECIAL_LITERAL]) { + advance(lexer); + if (lexer->lookahead == '.') { + advance(lexer); + if (lexer->lookahead == '.') { + advance(lexer); + return finish_keyword(lexer); + } else if (lexer->lookahead == '/') { + advance(lexer); + if (lexer->lookahead == '/') { + advance(lexer); + return finish_keyword(lexer); + } + } + } + } + // % %{} + } else if (lexer->lookahead == '%') { + if (valid_symbols[KEYWORD_SPECIAL_LITERAL]) { + advance(lexer); + if (lexer->lookahead == '{') { + advance(lexer); + if (lexer->lookahead == '}') { + advance(lexer); + return finish_keyword(lexer); + } + } else { + return finish_keyword(lexer); + } + } + // {} + } else if (lexer->lookahead == '{') { + if (valid_symbols[KEYWORD_SPECIAL_LITERAL]) { + advance(lexer); + if (lexer->lookahead == '}') { + advance(lexer); + return finish_keyword(lexer); + } + } + // <<>> + } else if (lexer->lookahead == '<') { + if (valid_symbols[KEYWORD_SPECIAL_LITERAL]) { + advance(lexer); + if (lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return finish_keyword(lexer); + } + } + } + } + // atom start + } else if (lexer->lookahead == ':') { + if (valid_symbols[ATOM_START]) { + advance(lexer); + return finish_atom_start(lexer); + } + } + + return false; +} + +// Expose the API expected by tree-sitter + +extern "C" { + void* tree_sitter_elixir_external_scanner_create() { + return nullptr; + } + + bool tree_sitter_elixir_external_scanner_scan(void* payload, TSLexer* lexer, const bool* valid_symbols) { + return scan(lexer, valid_symbols); + } + + unsigned tree_sitter_elixir_external_scanner_serialize(void* payload, char* buffer) { + return 0; + } + + void tree_sitter_elixir_external_scanner_deserialize(void* payload, const char* buffer, unsigned length) {} + + void tree_sitter_elixir_external_scanner_destroy(void* payload) {} +} + +} diff --git a/test/corpus/comment.txt b/test/corpus/comment.txt index 122aaf2..db7b183 100644 --- a/test/corpus/comment.txt +++ b/test/corpus/comment.txt @@ -91,11 +91,7 @@ does not match inside a string (source (string - (string_start) - (string_content) - (string_end)) + (string_content)) (string - (string_start) (string_content) - (interpolation (identifier)) - (string_end))) + (interpolation (identifier)))) diff --git a/test/corpus/do_end.txt b/test/corpus/do_end.txt index daf7d9e..d36f0ec 100644 --- a/test/corpus/do_end.txt +++ b/test/corpus/do_end.txt @@ -87,7 +87,7 @@ end (call (identifier) (arguments - (identifier))) + (identifier)))) (do_block (identifier)))) @@ -100,11 +100,47 @@ do x end +fun x +# comment +do + x +end + +fun() +do + x +end + +Mod.fun x +do + x +end + --- (source (call (identifier) + (arguments + (identifier)) + (do_block + (identifier))) + (call + (identifier) + (arguments + (identifier)) + (comment) + (do_block + (identifier))) + (call + (identifier) + (arguments) + (do_block + (identifier))) + (call + (dot + (alias) + (identifier)) (arguments (identifier)) (do_block @@ -265,7 +301,7 @@ end (do_block (stab_clause (arguments - (integer)) + (identifier)) (body (identifier) (identifier)))))) @@ -318,8 +354,7 @@ end (identifier) (list))) (body - (atom - (atom_literal))))))) + (identifier)))))) ===================================== stab clause / with guard / multiple arguments @@ -344,8 +379,7 @@ end (identifier) (list))) (body - (atom - (atom_literal))))))) + (identifier)))))) ===================================== stab clause / with guard / arguments in parentheses @@ -370,8 +404,7 @@ end (identifier) (list))) (body - (atom - (atom_literal))))))) + (identifier)))))) ===================================== stab clause / with guard / multiple guards @@ -392,16 +425,152 @@ end (arguments (identifier)) (binary_operator + (binary_operator + (identifier) + (integer)) + (binary_operator + (identifier) + (integer)))) + (body + (identifier)))))) + +===================================== +stab clause / edge cases / no stab +===================================== + +foo do + a when a +end + +foo do + ([]) +end + +--- + +(source + (call + (identifier) + (do_block + (binary_operator + (identifier) + (identifier)))) + (call + (identifier) + (do_block + (block + (list))))) + +===================================== +stab clause / edge cases / "when" in arguments +===================================== + +foo do + a when b, c when d == e -> 1 +end + +--- + +(source + (call + (identifier) + (do_block + (stab_clause + (binary_operator + (arguments (binary_operator (identifier) (identifier)) + (identifier)) + (binary_operator + (identifier) + (identifier))) + (body + (integer)))))) + +===================================== +stab clause / edge cases / block argument +===================================== + +foo do + (x; y) -> 1 + ((x; y)) -> 1 +end + +--- + +(source + (call + (identifier) + (do_block + (stab_clause + (arguments + (block + (identifier) + (identifier))) + (body + (integer))) + (stab_clause + (arguments + (block + (identifier) + (identifier))) + (body + (integer)))))) + +===================================== +stab clause / edge cases / operator with lower precedence than "when" +===================================== + +foo do + x <- y when x -> y +end + +foo do + (x <- y) when x -> y +end + +--- + +(source + (call + (identifier) + (do_block + (stab_clause + (arguments + (binary_operator + (identifier) (binary_operator (identifier) (identifier)))) (body - (atom - (atom_literal))))))) + (identifier))))) + (call + (identifier) + (do_block + (stab_clause + (binary_operator + (arguments + (binary_operator + (identifier) + (identifier))) + (identifier)) + (body + (identifier)))))) +===================================== +stab clause / edge cases / empty +===================================== + +fun do->end + +--- + +(source + (call + (identifier) + (do_block + (stab_clause)))) ===================================== pattern matching @@ -424,8 +593,9 @@ end (identifier) (identifier)))) (body - (atom - (atom_literal))))))) + (tuple + (identifier) + (identifier))))))) ===================================== child blocks / after @@ -578,3 +748,33 @@ end (identifier)) (body (identifier))))))) + +===================================== +child blocks / keyword pattern with child block start token +===================================== + +fun do + x +after +after + after: 1 -> y +end + +--- + +(source + (call + (identifier) + (do_block + (identifier) + (after_block) + (after_block + (stab_clause + (arguments + (keywords + (pair + (keyword + (atom_literal)) + (integer)))) + (body + (identifier))))))) diff --git a/test/corpus/edge_syntax.txt b/test/corpus/edge_syntax.txt index 10e4ae6..4ccd52b 100644 --- a/test/corpus/edge_syntax.txt +++ b/test/corpus/edge_syntax.txt @@ -5,13 +5,76 @@ operator with arity (valid and supported by IEx.Helpers.h) ::/2 @ / 1 & / 1 +not / 1 +not in / 2 +* / 2 +h +/2 --- (source (binary_operator (operator_identifier) - (integer))) + (integer)) + (binary_operator + (operator_identifier) + (integer)) + (binary_operator + (operator_identifier) + (integer)) + (binary_operator + (operator_identifier) + (integer)) + (binary_operator + (operator_identifier) + (integer)) + (binary_operator + (operator_identifier) + (integer)) + (call + (identifier) + (arguments + (binary_operator + (operator_identifier) + (integer))))) + +===================================== +stab and slash ambiguity +===================================== + +(-> / 2) +(-> / / 2) + +--- + +(source + (block + (binary_operator + (operator_identifier) + (integer))) + (block + (stab_clause + (body + (binary_operator + (operator_identifier) + (integer)))))) + +===================================== +unary operator and slash ambiguity +===================================== + +& / 2 +& / / 2 +--- + +(source + (binary_operator + (operator_identifier) + (integer)) + (unary_operator + (binary_operator + (operator_identifier) + (integer)))) ===================================== map with identifiers @@ -54,16 +117,3 @@ def Mod.fun(x), do: 1 (keyword (atom_literal)) (integer)))))) - -===================================== -[error] arrow outside of map -===================================== - -a => b - ---- - -(source - (identifier) - (ERROR - (identifier))) diff --git a/test/corpus/expression/anonymous_function.txt b/test/corpus/expression/anonymous_function.txt index 656f34e..b81c342 100644 --- a/test/corpus/expression/anonymous_function.txt +++ b/test/corpus/expression/anonymous_function.txt @@ -15,6 +15,7 @@ fn () -> 1 end (integer)))) (anonymous_function (stab_clause + (arguments) (body (integer))))) @@ -178,8 +179,7 @@ end (atom (atom_literal)))) (body - (atom - (atom_literal)))))) + (boolean))))) ===================================== with guard / one argument @@ -201,8 +201,7 @@ end (identifier) (list))) (body - (atom - (atom_literal)))))) + (identifier))))) ===================================== with guard / multiple arguments @@ -225,8 +224,7 @@ end (identifier) (list))) (body - (atom - (atom_literal)))))) + (identifier))))) ===================================== with guard / arguments in parentheses @@ -249,8 +247,7 @@ end (identifier) (list))) (body - (atom - (atom_literal)))))) + (identifier))))) ===================================== with guard / multiple guards @@ -271,13 +268,12 @@ end (binary_operator (binary_operator (identifier) - (identifier)) + (integer)) (binary_operator (identifier) - (identifier)))) + (integer)))) (body - (atom - (atom_literal)))))) + (identifier))))) ===================================== pattern matching @@ -299,8 +295,9 @@ end (identifier) (identifier)))) (body - (atom - (atom_literal)))) + (tuple + (identifier) + (identifier)))) (stab_clause (binary_operator (arguments @@ -312,12 +309,7 @@ end (atom_literal)) (identifier)))))) (binary_operator - (binary_operator - (identifier) - (identifier)) - (binary_operator - (identifier) - (identifier)))) + (identifier) + (integer))) (body - (atom - (atom_literal)))))) + (integer))))) diff --git a/test/corpus/expression/block.txt b/test/corpus/expression/block.txt index 5673142..f116633 100644 --- a/test/corpus/expression/block.txt +++ b/test/corpus/expression/block.txt @@ -94,3 +94,30 @@ trailing semicolon (block (integer) (integer))) + +===================================== +stab clauses +===================================== + +(x -> x; y -> y + z -> z) + +--- + +(source + (block + (stab_clause + (arguments + (identifier)) + (body + (identifier))) + (stab_clause + (arguments + (identifier)) + (body + (identifier))) + (stab_clause + (arguments + (identifier)) + (body + (identifier))))) diff --git a/test/corpus/expression/call.txt b/test/corpus/expression/call.txt index ecd91c9..f2ffb15 100644 --- a/test/corpus/expression/call.txt +++ b/test/corpus/expression/call.txt @@ -46,7 +46,9 @@ local call / arguments without parentheses ===================================== fun a +fun {} fun [1, 2], option: true, other: 5 +fun +: 1 --- @@ -55,6 +57,45 @@ fun [1, 2], option: true, other: 5 (identifier) (arguments (identifier))) + (call + (identifier) + (arguments + (tuple))) + (call + (identifier) + (arguments + (list + (integer) + (integer)) + (keywords + (pair + (keyword + (atom_literal)) + (boolean)) + (pair + (keyword + (atom_literal)) + (integer))))) + (call + (identifier) + (arguments + (keywords + (pair + (keyword + (atom_literal)) + (integer)))))) + +===================================== +local call / arguments without parentheses / multiline +===================================== + +fun [1, 2], + option: true, + other: 5 + +--- + +(source (call (identifier) (arguments @@ -92,7 +133,8 @@ outer_fun(inner_fun(a)) local call / nested without parentheses (right associativity) ===================================== -outer_fun inner_fun a +outer_fun inner_fun a, b +outer_fun inner_fun do: 1 --- @@ -103,13 +145,24 @@ outer_fun inner_fun a (call (identifier) (arguments - (identifier)))))) + (identifier) + (identifier))))) + (call + (identifier) + (arguments + (call + (identifier) + (arguments + (keywords + (pair + (keyword + (atom_literal)) + (integer)))))))) ===================================== local call / precedence with operator ===================================== -fun +1 outer_fun 1 + 1 1 + inner_fun 1 outer_fun 1 + inner_fun 1 @@ -118,11 +171,6 @@ fun 1, 2 |> other_fun --- (source - (call - (identifier) - (arguments - (unary_operator - (integer)))) (call (identifier) (arguments @@ -337,15 +385,15 @@ Mod.outer_fun 1 + Mod.inner_fun 1 (dot (alias) (identifier)) - (arguments - (binary_operator - (integer) - (call - (dot - (alias) - (identifier)) - (arguments - (integer))))))) + (arguments + (binary_operator + (integer) + (call + (dot + (alias) + (identifier)) + (arguments + (integer))))))) ===================================== remote call / treats nonimmediate parentheses as a block argument @@ -410,7 +458,15 @@ Mod.'fun'(a) (call (dot (alias) - (identifier)) + (string + (string_content))) + (arguments + (identifier))) + (call + (dot + (alias) + (charlist + (string_content))) (arguments (identifier)))) @@ -520,11 +576,12 @@ Mod.outer_fun mid_fun inner_fun.(a) (arguments (call (identifier) - (call - (dot - (identifier)) - (arguments - (identifier))))))) + (arguments + (call + (dot + (identifier)) + (arguments + (identifier)))))))) ===================================== identifier call @@ -599,8 +656,8 @@ range call (binary_operator (integer) (integer)) - (integer)))) - (identifier))) + (integer))) + (identifier)))) ===================================== multi-expression block call @@ -774,14 +831,22 @@ map [key] (identifier))))) ===================================== -access syntax / precedence over dot call +access syntax / precedence with dot call ===================================== +map.map[:key] map[:mod].fun --- (source + (access_call + (call + (dot + (identifier) + (identifier))) + (atom + (atom_literal))) (call (dot (access_call @@ -790,6 +855,91 @@ map[:mod].fun (atom_literal))) (identifier)))) +===================================== +access syntax / precedence with operators +===================================== + +-x[:key] +@x[:key] +&x[:key] +&1[:key] + +--- + +(source + (unary_operator + (access_call + (identifier) + (atom + (atom_literal)))) + (access_call + (unary_operator + (identifier)) + (atom + (atom_literal))) + (unary_operator + (access_call + (identifier) + (atom + (atom_literal)))) + (access_call + (unary_operator + (integer)) + (atom + (atom_literal)))) + +===================================== +double parenthesised call +===================================== + +fun()() +fun() () +fun(1)(1) +Mod.fun()() +fun.()() + +unquote(name)() + +--- + +(source + (call + (call + (identifier) + (arguments)) + (arguments)) + (call + (call + (identifier) + (arguments)) + (arguments)) + (call + (call + (identifier) + (arguments + (integer))) + (arguments + (integer))) + (call + (call + (dot + (alias) + (identifier)) + (arguments)) + (arguments)) + (call + (call + (dot + (identifier)) + (arguments)) + (arguments)) + (call + (call + (identifier) + (arguments + (identifier))) + (arguments))) + ===================================== [error] leading argument separator ===================================== @@ -804,3 +954,18 @@ fun(, a) (arguments (ERROR) (identifier)))) + +===================================== +[error] trailing argument separator +===================================== + +fun(a,) + +--- + +(source + (call + (identifier) + (arguments + (identifier) + (ERROR)))) diff --git a/test/corpus/expression/capture.txt b/test/corpus/expression/capture.txt index ef56f9c..e762f75 100644 --- a/test/corpus/expression/capture.txt +++ b/test/corpus/expression/capture.txt @@ -23,6 +23,7 @@ anonymous function (integer)))) (unary_operator (call + (identifier) (arguments (unary_operator (integer)) @@ -45,22 +46,22 @@ argument call (call (dot (unary_operator - (integer) - (identifier))))) + (integer)) + (identifier)))) (unary_operator (call (dot (unary_operator - (integer) - (identifier))))) + (integer)) + (identifier)))) (unary_operator (call (dot (unary_operator - (integer) - (arguments - (unary_operator - (integer)))))))) + (integer))) + (arguments + (unary_operator + (integer)))))) ===================================== remote MFA diff --git a/test/corpus/expression/operator.txt b/test/corpus/expression/operator.txt index 205902e..80ac535 100644 --- a/test/corpus/expression/operator.txt +++ b/test/corpus/expression/operator.txt @@ -16,27 +16,21 @@ not arg --- (source - (unary_operator - (identifier)) - (unary_operator - (identifier)) - (unary_operator - (identifier)) - (unary_operator - (identifier)) - (unary_operator - (identifier)) - (unary_operator - (identifier)) - (unary_operator - (identifier)) - (unary_operator - (identifier))) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier))) ===================================== binary left associative ===================================== +a ** b ** c + a * b * c a / b / c @@ -115,6 +109,7 @@ a \\ b \\ c (binary_operator (binary_operator (identifier) (identifier)) (identifier)) (binary_operator (binary_operator (identifier) (identifier)) (identifier)) (binary_operator (binary_operator (identifier) (identifier)) (identifier)) + (binary_operator (binary_operator (identifier) (identifier)) (identifier)) (binary_operator (binary_operator (identifier) (identifier)) (identifier))) ===================================== @@ -190,6 +185,7 @@ a - b ++ c a = b <<< c a + b * c - d +a ** b + c ** d --- @@ -220,7 +216,14 @@ a + b * c - d (binary_operator (identifier) (identifier))) - (identifier))) + (identifier)) + (binary_operator + (binary_operator + (identifier) + (identifier)) + (binary_operator + (identifier) + (identifier)))) ===================================== precedence determined by parentheses @@ -234,8 +237,9 @@ precedence determined by parentheses (source (binary_operator - (unary_operator - (identifier)) + (block + (unary_operator + (identifier))) (identifier)) (binary_operator (block @@ -248,25 +252,413 @@ precedence determined by parentheses (identifier))))) ===================================== -multiline +"not in" spacing ===================================== +a not in b + +--- + +(source + (binary_operator + (identifier) + (identifier))) + +===================================== +"not in" boundary +===================================== + +fun not inARG + +--- + +(source + (call + (identifier) + (arguments + (unary_operator + (identifier))))) + +===================================== +multiline / unary +===================================== + +@ +arg + ++ +arg + - -x +arg + +! +arg + +^ +arg + +not +arg + +~~~ +arg + +& +arg + +--- + +(source + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier)) + (unary_operator (identifier))) + +===================================== +multiline / binary +===================================== + +a +** +b + +a +* +b + +a +/ +b + +a +++ +b + +a +-- +b + +a ++++ +b + +a +--- +b + +a +.. +b + +a +<> +b + + +a +^^^ +b + +a +in +b + +a +not in +b + +a +|> +b + +a +<<< +b + +a +>>> +b + +a +<<~ +b + +a +~>> +b + +a +<~ +b + +a +~> +b + +a +<~> +b + +a +<|> +b + +a +< +b + +a +> +b + +a +<= +b + +a +>= +b + +a +== +b + +a +!= +b + +a +=~ +b + +a +=== +b + +a +!== +b + +a +&& +b + +a +&&& +b + +a +and +b + +a +|| +b + +a +||| +b + +a +or +b + +a += +b + +a +| +b + +a +:: +b + +a +when +b + +a +<- +b + +a +\\ +b + +--- + +(source + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier)) + (binary_operator (identifier) (identifier))) + +===================================== +multiline / unary over binary +===================================== + +a ++ +b + +a +- +b + +--- + +(source + (identifier) + (unary_operator + (identifier)) + (identifier) + (unary_operator + (identifier))) + +===================================== +multiline / right operands +===================================== x not in [y] +x +not in[y] + +:a +++:b + +:a++ +:b + --- (source - (unary_operator - (identifier)) (binary_operator (identifier) (list - (identifier)))) + (identifier))) + (binary_operator + (identifier) + (list + (identifier))) + (binary_operator + (atom + (atom_literal)) + (atom + (atom_literal))) + (binary_operator + (atom + (atom_literal)) + (atom + (atom_literal)))) + +===================================== +multiline / unary over binary (precedence) +===================================== + +x +- +y + +x ++ +y + +--- + +(source + (identifier) + (unary_operator + (identifier)) + (identifier) + (unary_operator + (identifier))) + +===================================== +plus minus +===================================== + +x+y +x + y +x+ y + +x +y +x +y +z + + +--- + +(source + (binary_operator + (identifier) + (identifier)) + (binary_operator + (identifier) + (identifier)) + (binary_operator + (identifier) + (identifier)) + (call + (identifier) + (arguments + (unary_operator + (identifier)))) + (call + (identifier) + (arguments + (unary_operator + (call + (identifier) + (arguments + (unary_operator + (identifier)))))))) ===================================== stepped range diff --git a/test/corpus/expression/sigil.txt b/test/corpus/expression/sigil.txt index db211ff..8e8536a 100644 --- a/test/corpus/expression/sigil.txt +++ b/test/corpus/expression/sigil.txt @@ -87,7 +87,7 @@ nested interpolation (sigil_name) (string_content) (interpolation - (identifier)))) + (integer)))) (string_content))) ===================================== @@ -126,7 +126,7 @@ escape sequence escaped interpolation ===================================== -~s{\#{1}} +~s/\#{1}/ --- @@ -229,6 +229,7 @@ modifiers (sigil_modifiers)) (sigil (sigil_name) + (string_content) (sigil_modifiers))) ===================================== @@ -240,7 +241,7 @@ modifiers --- (source - (ERROR) - (call - (string - (string_content)))) + (sigil + (sigil_name) + (ERROR) + (string_content))) diff --git a/test/corpus/integration/function_definition.txt b/test/corpus/integration/function_definition.txt index 7afb42c..4e59571 100644 --- a/test/corpus/integration/function_definition.txt +++ b/test/corpus/integration/function_definition.txt @@ -29,8 +29,7 @@ end (call (identifier) (arguments - (call - (identifier))) + (identifier)) (do_block))) ===================================== @@ -48,9 +47,9 @@ end (identifier) (arguments (call - (identifier - (arguments - (identifier))))) + (identifier) + (arguments + (identifier)))) (do_block (identifier)))) @@ -69,9 +68,9 @@ end (identifier) (arguments (call - (identifier - (arguments - (identifier))))) + (identifier) + (arguments + (identifier)))) (do_block (identifier)))) @@ -90,10 +89,10 @@ end (identifier) (arguments (call - (identifier - (arguments - (identifier) - (identifier))))) + (identifier) + (arguments + (identifier) + (identifier)))) (do_block (binary_operator (identifier) @@ -114,10 +113,10 @@ end (identifier) (arguments (call - (identifier - (arguments - (identifier) - (identifier))))) + (identifier) + (arguments + (identifier) + (identifier)))) (do_block (binary_operator (identifier) @@ -142,12 +141,12 @@ end (identifier) (arguments (call - (identifier - (arguments + (identifier) + (arguments + (identifier) + (binary_operator (identifier) - (binary_operator - (identifier) - (integer)))))) + (integer))))) (do_block (binary_operator (identifier) @@ -156,12 +155,12 @@ end (identifier) (arguments (call - (identifier - (arguments + (identifier) + (arguments + (identifier) + (binary_operator (identifier) - (binary_operator - (identifier) - (integer)))))) + (integer))))) (do_block (binary_operator (identifier) @@ -181,24 +180,25 @@ def fun(x), do: x (identifier) (arguments (call - (identifier))) - (keywords - (pair - (keyword - (atom_literal)) - (integer)))) + (identifier) + (arguments)) + (keywords + (pair + (keyword + (atom_literal)) + (integer))))) (call (identifier) (arguments (call - (identifier - (arguments - (identifier))))) - (keywords - (pair - (keyword - (atom_literal)) - (identifier))))) + (identifier) + (arguments + (identifier))) + (keywords + (pair + (keyword + (atom_literal)) + (identifier)))))) ===================================== def / pattern matching @@ -244,9 +244,9 @@ end (arguments (binary_operator (call - (identifier - (arguments - (identifier)))) + (identifier) + (arguments + (identifier))) (binary_operator (identifier) (integer)))) @@ -269,9 +269,9 @@ end (arguments (binary_operator (call - (identifier - (arguments - (identifier)))) + (identifier) + (arguments + (identifier))) (binary_operator (binary_operator (identifier) @@ -297,9 +297,9 @@ end (identifier) (arguments (call - (identifier - (arguments - (identifier))))) + (identifier) + (arguments + (identifier)))) (do_block (identifier)))) @@ -320,9 +320,9 @@ end (identifier) (arguments (call - (identifier - (arguments - (identifier))))) + (identifier) + (arguments + (identifier)))) (do_block (call (identifier) @@ -347,9 +347,9 @@ defguard is_even(term) when is_integer(term) and rem(term, 2) == 0 (arguments (binary_operator (call - (identifier - (arguments - (identifier)))) + (identifier) + (arguments + (identifier))) (binary_operator (call (identifier) @@ -362,3 +362,33 @@ defguard is_even(term) when is_integer(term) and rem(term, 2) == 0 (identifier) (integer))) (integer))))))) + +===================================== +def in macro +===================================== + +def unquote(name)(unquote_splicing(args)) do + unquote(compiled) +end + +--- + +(source + (call + (identifier) + (arguments + (call + (call + (identifier) + (arguments + (identifier))) + (arguments + (call + (identifier) + (arguments + (identifier)))))) + (do_block + (call + (identifier) + (arguments + (identifier)))))) diff --git a/test/corpus/integration/kernel.txt b/test/corpus/integration/kernel.txt index a78b713..f3130ed 100644 --- a/test/corpus/integration/kernel.txt +++ b/test/corpus/integration/kernel.txt @@ -14,14 +14,14 @@ for n <- [1, 2], do: n * 2 (identifier) (list (integer) - (integer)))) + (integer))) (keywords (pair (keyword (atom_literal)) (binary_operator (identifier) - (integer)))))) + (integer))))))) ===================================== for / enumerable / with options and block @@ -42,7 +42,8 @@ end (call (dot (alias) - (identifier)))) + (identifier)) + (arguments))) (keywords (pair (keyword @@ -50,7 +51,8 @@ end (call (dot (alias) - (identifier)))))) + (identifier)) + (arguments))))) (do_block (call (dot @@ -71,7 +73,7 @@ for <>, c != ?\s, into: "", do: <> (call (identifier) (arguments - (binary + (bitstring (binary_operator (identifier) (string @@ -83,12 +85,11 @@ for <>, c != ?\s, into: "", do: <> (pair (keyword (atom_literal)) - (string - (string_content))) + (string)) (pair (keyword (atom_literal)) - (binary + (bitstring (identifier))))))) ===================================== diff --git a/test/corpus/integration/spec.txt b/test/corpus/integration/spec.txt index cf75253..9278533 100644 --- a/test/corpus/integration/spec.txt +++ b/test/corpus/integration/spec.txt @@ -38,13 +38,17 @@ with type parentheses (identifier) (arguments (call - (identifier)) + (identifier) + (arguments)) (call - (identifier)) + (identifier) + (arguments)) (call - (identifier)))) + (identifier) + (arguments)))) (call - (identifier))))))) + (identifier) + (arguments))))))) ===================================== with literals @@ -68,8 +72,8 @@ with literals (keywords (pair (keyword - (atom_literal) - (identifier)))))))) + (atom_literal)) + (identifier))))))) (binary_operator (tuple (atom @@ -97,14 +101,16 @@ with function reference (call (identifier) (arguments - (stab_clause - (body - (identifier))) - (stab_clause - (arguments - (identifier)) - (body - (identifier))))) + (block + (stab_clause + (body + (identifier)))) + (block + (stab_clause + (arguments + (identifier)) + (body + (identifier)))))) (identifier)))))) ===================================== @@ -127,11 +133,13 @@ with remote type (call (dot (alias) - (identifier))))) + (identifier)) + (arguments)))) (call (dot (alias) - (identifier)))))))) + (identifier)) + (arguments))))))) ===================================== with type guard @@ -208,10 +216,11 @@ nonempty list (identifier) (arguments (binary_operator - (identifier) + (call + (identifier) + (arguments)) (list - (call - (identifier)) + (identifier) (identifier))))))) ===================================== diff --git a/test/corpus/term/alias.txt b/test/corpus/term/alias.txt index de9d83a..b7dddbc 100644 --- a/test/corpus/term/alias.txt +++ b/test/corpus/term/alias.txt @@ -8,7 +8,6 @@ AZ_az_19_ --- (source - (alias) (alias) (alias)) @@ -21,6 +20,22 @@ Mod.Child.Child --- +(source + (alias) + (alias)) + +===================================== +spacing +===================================== + +Mod . Child + +Mod +. +Child + +--- + (source (alias) (alias)) @@ -72,17 +87,12 @@ __MODULE__.Child [error] does not support characters outside ASCII ===================================== -Modこ Ólá Olá --- (source - (alias) (ERROR - (identifier)) - (ERROR - (identifier)) - (ERROR - (identifier))) + (atom_literal) + (atom_literal))) diff --git a/test/corpus/term/atom.txt b/test/corpus/term/atom.txt index 3c43f3b..b155a85 100644 --- a/test/corpus/term/atom.txt +++ b/test/corpus/term/atom.txt @@ -26,12 +26,12 @@ simple literal operators ===================================== -[:~~~, :~>>, :~>, :|||, :||, :|>, :|, :>>>, :>=, :>, :=~, :===, :==, :=, :<~>, :<~, :<|>, :<>, :<=, :<<~, :<<<, :<-, :<, :+++, :++, :+, :^^^, :^, :&&&, :&&, :&, :\\, :/, :*, :@, :.., :., :!==, :!=, :!, :::, :->, :---, :--, :-] +[:~~~, :~>>, :~>, :|||, :||, :|>, :|, :>>>, :>=, :>, :=~, :===, :==, :=, :<~>, :<~, :<|>, :<>, :<=, :<<~, :<<<, :<-, :<, :+++, :++, :+, :^^^, :^, :&&&, :&&, :&, :\\, :/, :**, :*, :@, :.., :., :!==, :!=, :!, :::, :->, :---, :--, :-] --- (source - (list (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)))) + (list (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)) (atom (atom_literal)))) ===================================== special operator-like atoms diff --git a/test/corpus/term/bitstring.txt b/test/corpus/term/bitstring.txt index 127d432..771b14a 100644 --- a/test/corpus/term/bitstring.txt +++ b/test/corpus/term/bitstring.txt @@ -80,33 +80,38 @@ multiple modifiers (string_content)) (binary_operator (identifier) - (identifier))) + (identifier)))) + (bitstring (binary_operator (string (string_content)) (binary_operator (identifier) - (identifier))) + (identifier)))) + (bitstring (binary_operator (string (string_content)) (binary_operator (identifier) - (identifier))) + (identifier)))) + (bitstring (binary_operator (integer) (binary_operator (binary_operator (integer) (identifier)) - (identifier))) + (identifier)))) + (bitstring (binary_operator (integer) (binary_operator (binary_operator (identifier) (identifier)) - (identifier))) + (identifier)))) + (bitstring (binary_operator (float) (binary_operator @@ -143,6 +148,7 @@ multiple components with modifiers (binary_operator (identifier) (call + (identifier) (arguments (identifier))))))) @@ -169,6 +175,7 @@ spacing (binary_operator (identifier) (call + (identifier) (arguments (identifier))))))) diff --git a/test/corpus/term/charlist.txt b/test/corpus/term/charlist.txt index 5e19aee..0658bc1 100644 --- a/test/corpus/term/charlist.txt +++ b/test/corpus/term/charlist.txt @@ -67,7 +67,7 @@ nested interpolation (charlist (string_content) (interpolation - (identifier)))) + (integer)))) (string_content))) ===================================== @@ -167,7 +167,8 @@ this is #{ (charlist (string_content) (interpolation - (identifier)))) + (integer)) + (string_content))) (string_content))) ===================================== @@ -186,9 +187,13 @@ heredoc / escaped delimiter (source (charlist - (escape_sequence) (string_content) + (escape_sequence) + (string_content)) (charlist + (string_content) + (escape_sequence) + (escape_sequence) (escape_sequence) (string_content))) @@ -204,5 +209,6 @@ heredoc / escaped interpolation (source (charlist + (string_content) (escape_sequence) (string_content))) diff --git a/test/corpus/term/integer.txt b/test/corpus/term/integer.txt index 278287f..22bb038 100644 --- a/test/corpus/term/integer.txt +++ b/test/corpus/term/integer.txt @@ -14,7 +14,6 @@ decimal (unary_operator (integer)) (integer) - (integer) (integer)) ===================================== diff --git a/test/corpus/term/keyword_list.txt b/test/corpus/term/keyword_list.txt index 7255196..e4f4d85 100644 --- a/test/corpus/term/keyword_list.txt +++ b/test/corpus/term/keyword_list.txt @@ -2,13 +2,25 @@ simple literal ===================================== -[a_b@12?: 1, A_B@12!: 2] +[a: 1, a_b@12?: 2, A_B@12!: 3, Mod: 4, __struct__: 5] --- (source (list (keywords + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)) (pair (keyword (atom_literal)) @@ -83,6 +95,73 @@ operator key (atom_literal)) (integer))))) +===================================== +special atom key +===================================== + +[...: 1, %{}: 2, {}: 3, %: 4, <<>>: 5, ..//: 6] + +--- + +(source + (list + (keywords + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer))))) + +===================================== +reserved token key +===================================== + +[not: 1, and: 2] +[nil: 1, true: 2] + +--- + +(source + (list + (keywords + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)))) + (list + (keywords + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer))))) + ===================================== quoted key ===================================== @@ -141,18 +220,21 @@ key interpolation [error] with trailing items ===================================== -[a: 1, b: 2, 1] +[a: 1, b: 2, 1 => 1] --- (source (list + (keywords + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer))) (ERROR - (keywords - (pair - (keyword - (atom_literal))) - (pair - (keyword - (atom_literal))))) - (integer))) + (integer) + (integer)))) diff --git a/test/corpus/term/list.txt b/test/corpus/term/list.txt index 8ef3a58..cb40ab5 100644 --- a/test/corpus/term/list.txt +++ b/test/corpus/term/list.txt @@ -3,6 +3,8 @@ simple literal ===================================== [] +[a] +[A] [1] [1, 2] [1,2] @@ -12,6 +14,10 @@ simple literal (source (list) + (list + (identifier)) + (list + (alias)) (list (integer)) (list @@ -64,8 +70,8 @@ trailing separator (source (list - (ERROR - (integer)))) + (ERROR) + (integer))) ===================================== [error] missing separator diff --git a/test/corpus/term/map.txt b/test/corpus/term/map.txt index eea6508..0914b22 100644 --- a/test/corpus/term/map.txt +++ b/test/corpus/term/map.txt @@ -126,31 +126,32 @@ update syntax (binary_operator (string (string_content)) - (integer)))))) + (string + (string_content))))))) ===================================== [error] ordering ===================================== -%{b: 2, c: 3, "a" => 1} +%{b: 2, c: 3, 1 => 1} --- (source (map - (map_content) - (ERROR - (keywords - (pair - (keyword - (atom_literal))) - (pair - (keyword - (atom_literal))))) - (binary_operator - (string - (string_content)) - (integer)))) + (map_content + (keywords + (pair + (keyword + (atom_literal)) + (integer)) + (pair + (keyword + (atom_literal)) + (integer)))) + (ERROR + (integer) + (integer)))) ===================================== [error] missing separator @@ -162,40 +163,12 @@ update syntax (source (map - (map_content) - (ERROR - (binary_operator - (string - (string_content)) - (integer))) + (map_content (binary_operator (string (string_content)) - (integer)))) - -===================================== -[error] invalid content -===================================== - -%{1} -%{1, 1} -%{a, [], {}} - ---- - -(source - (map - (map_content - (ERROR - (integer)))) - (map - (map_content - (ERROR - (integer) - (integer)))) - (map - (map_content - (ERROR - (identifier) - (list) - (tuple))))) + (ERROR (integer)) + (binary_operator + (string + (string_content)) + (integer)))))) diff --git a/test/corpus/term/string.txt b/test/corpus/term/string.txt index 06e1bd4..18ec410 100644 --- a/test/corpus/term/string.txt +++ b/test/corpus/term/string.txt @@ -67,7 +67,7 @@ nested interpolation (string (string_content) (interpolation - (identifier)))) + (integer)))) (string_content))) ===================================== @@ -167,7 +167,8 @@ this is #{ (string (string_content) (interpolation - (identifier)))) + (integer)) + (string_content))) (string_content))) ===================================== @@ -186,9 +187,13 @@ heredoc / escaped delimiter (source (string - (escape_sequence) (string_content) + (escape_sequence) + (string_content)) (string + (string_content) + (escape_sequence) + (escape_sequence) (escape_sequence) (string_content))) @@ -204,6 +209,7 @@ heredoc / escaped interpolation (source (string + (string_content) (escape_sequence) (string_content))) diff --git a/test/corpus/term/struct.txt b/test/corpus/term/struct.txt index 8c9cd7e..a32d819 100644 --- a/test/corpus/term/struct.txt +++ b/test/corpus/term/struct.txt @@ -139,7 +139,8 @@ update syntax (binary_operator (string (string_content)) - (integer)))))) + (string + (string_content))))))) ===================================== unused struct identifier @@ -199,3 +200,47 @@ with special identifier (dot (special_identifier) (alias))))) + +===================================== +with atom +===================================== + +%:"Elixir.Mod"{} + +--- + +(source + (map + (struct + (atom + (string_content))))) + +===================================== +with call +===================================== + +%fun(){} +%Mod.fun(){} +%fun.(){} + +--- + +(source + (map + (struct + (call + (identifier) + (arguments)))) + (map + (struct + (call + (dot + (alias) + (identifier)) + (arguments)))) + (map + (struct + (call + (dot + (identifier)) + (arguments))))) diff --git a/test/corpus/term/tuple.txt b/test/corpus/term/tuple.txt index c333fb7..a854354 100644 --- a/test/corpus/term/tuple.txt +++ b/test/corpus/term/tuple.txt @@ -64,8 +64,8 @@ trailing separator (source (tuple - (ERROR - (integer)))) + (ERROR) + (integer))) ===================================== [error] missing separator diff --git a/test/corpus/variable.txt b/test/corpus/variable.txt index 30b2a69..c660999 100644 --- a/test/corpus/variable.txt +++ b/test/corpus/variable.txt @@ -7,7 +7,6 @@ camelCase az_AZ_19 bang! question? -__TEST__ doctest not1 notfalse @@ -22,7 +21,6 @@ notfalse (identifier) (identifier) (identifier) - (identifier) (identifier)) ===================================== @@ -31,10 +29,12 @@ unused _ _number +__TEST__ --- (source + (unused_identifier) (unused_identifier) (unused_identifier))